写真のデータを昇順10歳未満から90歳まで昇順にして表したいです。
以下、コード
Python
1import pandas as pd 2import matplotlib as plot 3dfs = pd.read_csv("C:/Users/detec/desktop/coronaTokyo3.csv") 4dfs.head 5dfs.dtypes 6%matplotlib inline 7import matplotlib.pyplot as plt 8plt.style.use('seaborn-whitegrid') 9import numpy as np 10 11fig = plt.figure() 12ax = plt.axes() 13plt.hist(dfs['age']);
Python
1dfs.sort_values(by="age", ascending=True).head()
昇順にしようと試みたのですが、データフレームには反映されるもののグラフには反映されずでした。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/04/08 14:57