在数据实验室中,是否可以将数据从 python 传递到图表中?

In datalab, Is it possible to pass data into a chart from python?

试图弄清楚是否可以引用 python 数据作为创建图表的来源。

这是一个工作示例:

data = [
        {'date': '2016/01/01', 'count': 10}, 
        {'date': '2016/01/02', 'count': 15}, 
        {'date': '2016/01/03', 'count': 12} 
       ]
%chart pie -d data

如以下 post 所述,检查浏览器控制台以获取有关错误的更多详细信息:

%%chart line graph in Datalab based on Bigquery data not rendering