1.dataframe函数
1.作图
DataFrame.plot([x, y, kind, ax, ….]) #DataFrame plotting accessor and method
DataFrame.plot.area([x, y]) #面积图Area plot
DataFrame.plot.bar([x, y]) #垂直条形图Vertical bar plot
DataFrame.plot.barh([x, y]) #水平条形图Horizontal bar plot
DataFrame.plot.box([by]) #箱图Boxplot
DataFrame.plot.density(**kwds) #核密度Kernel Density Estimate plot
DataFrame.plot.hexbin(x, y[, C, …]) #Hexbin plot
DataFrame.plot.hist([by, bins]) #直方图Histogram
DataFrame.plot.kde(**kwds) #核密度Kernel Density Estimate plot
DataFrame.plot.line([x, y]) #线图Line plot
DataFrame.plot.pie([y]) #饼图Pie chart
DataFrame.plot.scatter(x, y[, s, c]) #散点图Scatter plot
DataFrame.boxplot([column, by, ax, …]) #Make a box plot from DataFrame column optionally grouped by some columns or
DataFrame.hist(data[, column, by, grid, …]) #Draw histogram of the DataFrame’s series using