Tree_data.csv - height 정렬 후 가장 큰 나무 한그루 출력
import pandas as pd
df=pd.read_csv("./data/tree_data.csv")
df=df.sort_values(by='height', ascending=False)
print(df.head(1))
race.csv를 읽어 데이터 시각화 처리하는 법
from matplotlib import pyplot as plt
import pandas as pd
df = pd.read_csv("./data/race.csv")
df.set_index("시간", inplace=True)
x = df["토끼"]
y = df["거북이"]
fig, ax = plt.subplots()
ax.plot(x, label = "토끼")
ax.plot(y, label = "거북이")
ax.set_xlabel("시간")
ax.set_ylabel("거리")
ax.legend(loc = 'lower right')
fig.savefig("plot.png")
'IT > Computer Science' 카테고리의 다른 글
[The Physics Engine] 물리엔진의 기본 (0) | 2022.05.20 |
---|---|
[Big Data] Predicting the credit risk of financial customers (0) | 2021.08.26 |
[Big Data] Gas station market analysis - based on oil price data (0) | 2021.08.21 |
[C언어] n번째 피보나치 수 구하기 (0) | 2021.07.18 |
[C언어] 자연수 N의 자릿수 합 구하기, 문자열 내림차순 정렬 (0) | 2021.07.17 |