美文网首页seaborn
seaborn add line

seaborn add line

作者: 榴莲气象 | 来源:发表于2019-07-29 00:14 被阅读3次
    g=sns.relplot(x="Ground CCN $(cm^{-3})$", y="VIIRS CCN $(cm^{-3})$", hue="Stid", size="SS",
                sizes=(40, 200), alpha=.5, palette="muted",
                height=6, data=df)
    #g.map(plt.axhline,y=400,color="k", ls=":")
    #plt.axhline(400)
    plt.xlim(0,4500)
    plt.ylim(0,4500)
    plt.plot(np.arange(4000)*0.5)
    plt.savefig("ccn_compare112.png",dpi=600)
    

    https://jakevdp.github.io/PythonDataScienceHandbook/04.14-visualization-with-seaborn.html

    https://matplotlib.org/3.1.1/gallery/text_labels_and_annotations/multiline.html#sphx-glr-gallery-text-labels-and-annotations-multiline-py

    相关文章

      网友评论

        本文标题:seaborn add line

        本文链接:https://www.haomeiwen.com/subject/qwnmrctx.html