首页
学习
活动
专区
圈层
工具
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    数据分析入门系列教程-常用图表

    实现散点图 matplotlib.pyplot.scatter(x, y, c=None, marker=None) 几个重要的参数 x,y:数值坐标 c:点的颜色 marker:标记的符号,可以选择...折线图 matplotlib 实现折线图 matplotlib.pyplot.plot(x, y) x,y:分别是横纵坐标,x 需要是按照大小排序的数组 seaborn 实现折线图 seaborn.lineplot...直方图 matplotlib 实现直方图 matplotlib.pyplot.hist(x, bins=None) x:要输入的一维数组 bins:是直方图中区域的数量 seaborn 实现直方图 seaborn.distplot...条形图 matplotlib 实现条形图 matplotlib.pyplot.bar(x, height, width=0.8) x:x 轴的坐标值 height:y 轴的坐标值 width:条形的宽度...seaborn 实现条形图 seaborn.barplot(x=None, y=None, hue=None, data=None) x,y,hue:分别是两个坐标轴的名称和图例名称 data:传入的数据

    2K20
    领券