我试图弄清楚如何在 python 中做到这一点,因为我对它比 R 有点新。
import plotnine as p9
import pandas as pd
import numpy as np
###load the data here...
dataset=pd.read_csv('https://gist.githubusercontent.com/curran/a08a1080b88344b0c8a7/raw/d546eaee765268bf2f487608c537c05e22e4b221/iris.csv')
什么不起作用的例子......不知道我做错了什么......
p9.ggplot(dataset, p9.aes(x='sepal_width'))+p9.geom_density()+p9.geom_vline( p9.aes(xintercept='sepal_length.mean()', color='species'))
为什么颜色不起作用?我想要一个具有适当颜色的垂直线
如果我可以覆盖直方图也很棒。