pythonで散布図を作成しているのですが, 対数軸を上手く設定することが出来ません.
対数軸の範囲を例えば0から10000にしたいです.
python
1コード 2import numpy as np 3import pandas as pd 4import seaborn as sns 5import matplotlib.pyplot as plt 6from matplotlib.colors import ListedColormap 7df = pd.read_csv('population.csv',index_col='CODE') 8 9plt.figure(figsize=(7, 7)) 10colors = {1:'green',2:'red',4:'yellow',3:'blue'} 11for f in df['class'].unique(): 12 plt.scatter(df.loc[df['class'] == f ,'P2020'], df.loc[df['class'] == f ,'P2065'], c=colors[f], label=f) 13 14plt.title('population', fontsize=20) # タイトル 15plt.loglog(basex=10,basey=10) 16plt.xlabel('P2020', fontsize=15) # x軸のラベル 17plt.ylabel('P2065', fontsize=15) # y軸のラベル 18plt.legend(loc='upper left') 19plt.savefig('population.png') 20plt.show() 21
回答2件
あなたの回答
tips
プレビュー