Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/amazon-s3/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 当您运行代码时,为什么图表的底部从2003开始,然后从2013开始,然后又从1开始_Python_Pygal - Fatal编程技术网

Python 当您运行代码时,为什么图表的底部从2003开始,然后从2013开始,然后又从1开始

Python 当您运行代码时,为什么图表的底部从2003开始,然后从2013开始,然后又从1开始,python,pygal,Python,Pygal,` 因为代码看起来正确,所以出现了什么问题请帮助,因为这是一个学校项目我认为您在这一行中犯了一个错误: `import pygal the_data = [["Firefox", [None, None, 0, 16.6, 25, 31, 36.4, 45.5, 46.3, 42.8, 37.1]], ["Chrome", [None, None, None, None, None, None, 0, 3.9, 10.

`
因为代码看起来正确,所以出现了什么问题请帮助,因为这是一个学校项目

我认为您在这一行中犯了一个错误:

`import pygal


the_data = [["Firefox", [None, None, 0, 16.6,   25,   31, 36.4, 45.5, 46.3, 42.8, 37.1]],
        ["Chrome",  [None, None, None, None, None, None,    0,  3.9, 10.8, 23.8, 35.3]],
        ["IE",      [85.8, 84.6, 84.7, 74.5,   66, 58.6, 54.7, 44.8, 36.2, 26.6, 20.1]],
        ["Others",  [14.2, 15.4, 15.3,  8.9,    9, 10.4,  8.9,  5.8,  6.7,  6.8,  7.5]]]



chart = pygal.StackedLine(fill=True)
chart.title = "The browsers usage"
chart.x_labels = map(str, (2002, 2013))


for label, data_points in the_data:
    chart.add(label, data_points)


chart.render() 
基本上
map(str,(2002,2013))
创建一个只有两个值的集合
[“2002”,“2013”]
,因为您有更多的列,所以库会用其他数字(1,2,3)填充它,您想要的是所有年份的列表:

chart.x_labels = map(str, (2002, 2013))

检查范围功能,这将生成带有
['2002'、'2003'、'2004'、'2005'、'2006'、'2007'、'2008'、'2009'、'2010'、'2011'、'2012']的集合

代码输出有什么问题?
chart.x_labels = map(str, range(2002, 2013))