0

我正在对 Bigquery 中的 GAP 数据进行查询,我想从中生成一个图表。

%%sql --module mobileGraph02
SELECT STRFTIME_UTC_USEC(UTC_USEC_TO_DAY((visitStartTime+36000)*1000000),'%Y/%m/%d') AS dateDate,
EXACT_COUNT_DISTINCT(fullVisitorId) AS sessions
FROM TABLE_DATE_RANGE([99949271.ga_sessions_],
TIMESTAMP('2016-02-21'), 
TIMESTAMP('2016-02-25')) 
GROUP BY dateDate
ORDER BY dateDate

我试图根据“带有 Google Charting API 的交互式图表”文件中的一个示例从中创建一个图表。

%%chart line --fields dateDate,sessions --data mobileGraph02

而这个版本:

%%chart line -f dateDate,sessions -d mobileGraph02

UI 中的帮助文档返回以下内容:

%%chart line -h
usage: %%chart line [-h] [-f FIELDS] -d DATA

optional arguments:
-h, --help            show this help message and exit
-f FIELDS, --fields FIELDS
                      The field(s) to include in the chart
-d DATA, --data DATA  The name of the variable referencing the Table or
                    Query to chart

我发现图表本身没有呈现,并且根据这篇文章没有错误消息: 使用 %%chart 命令绘制的图表不呈现

4

1 回答 1

0

在将数据传递给图表库之前,Datalab 不会对数据进行太多验证(如果https://github.com/GoogleCloudPlatform/datalab/pull/676被合并,这可能会改变一天)。因此,由于图表库是 Javascript 代码,因此可能在浏览器控制台中报告了错误。

于 2016-03-01T00:22:36.553 回答