考虑累积频率的随机数函数

发布于 2024-12-28 07:55:02 字数 159 浏览 0 评论 0原文

姓氏和名字出现次数的人口普查数据集提供了累计频率和频率。我如何获得一个随机名称,并且有可能选择现实世界中发生的名称?

The census dataset for last name and first name occurrences provides cumulative frequency and frequency. How do I go about getting a random name with the likelyhood of it being chosen that of the occurrence in the real world?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

坏尐絯 2025-01-04 07:55:02

只需生成 0-100 范围内的随机实数,并在累积频率数据集中查找相应的条目即可。

例如,假设您的随机数为 x = 19.41。查看表(按累积频率排序)并找到第一个值大于或等于 x 的表

WALLACE        0.081 19.315    106
WOODS          0.080 19.395    107
COLE           0.080 19.476    108
WEST           0.080 19.555    109
JORDAN         0.078 19.634    110

,在此示例中,您将获得“COLE”

Just generate a random real number in the 0-100 range and look for the corresponding entry in the cumulative frequency dataset.

Example, say your random number gives x = 19.41. Look into the table (sorted by cumulative frequencies) and locate the first one that has a value greater or equal than x

WALLACE        0.081 19.315    106
WOODS          0.080 19.395    107
COLE           0.080 19.476    108
WEST           0.080 19.555    109
JORDAN         0.078 19.634    110

in this example, you obtain 'COLE'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文