我正在对 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 命令绘制的图表不呈现