import seaborn as sns import matplotlib.pyplot as plt df = sns.load_dataset('iris') df.head() sns.boxplot( y=df["sepal_length"] ); plt.show() ...
確定! 回上一頁