【发布时间】:2018-11-09 23:57:39
【问题描述】:
有人可以帮忙解释一下 bigquery trigrams 和 ngrams viewer 百分位值之间的差异(任何给定的 trigram 似乎都不同,但这里有一个特定的例子,得到了https://groups.google.com/forum/#!topic/bigquery-discuss/OT_W0ayVSvg 的帖子的证实)?
SELECT * FROM
(SELECT cell.value, cell.volume_fraction
FROM [bigquery-public-data:samples.trigrams]
WHERE ngram = "of these dinosaurs" AND cell.value = "1888"),
(SELECT cell.value, cell.volume_fraction
FROM [bigquery-public-data:samples.trigrams]
WHERE ngram = "of these dinosaurs" AND cell.value = "1890")
https://bigquery.cloud.google.com/savedquery/977440528149:1539bcaba54144d3bd9920c55ede72b9
1890 1.6196954972465177E-4 1888 1.6196954972465177E-4
1890 0.0000001270% 1888 0.0000001256%
【问题讨论】:
标签: google-bigquery