"Pyplot 산점도"의 두 판 사이의 차이

24번째 줄: 24번째 줄:
x = df['Sepal.Length']
x = df['Sepal.Length']
y = df['Sepal.Width']
y = df['Sepal.Width']
colors = df['species'].astype("category").cat.codes
colors = df['Species'].astype("category").cat.codes


import matplotlib.pyplot as plt
import matplotlib.pyplot as plt

2021년 10월 1일 (금) 17:10 판

1 개요

파이썬 산점도
pyplot 산점도

2 예시 1: iris

import pandas as pd
df = pd.read_csv('https://raw.githubusercontent.com/jmnote/zdata/master/R/iris.csv')
print( df )

import matplotlib.pyplot as plt
plt.scatter(df['sepal_length'], df['sepal_width'])
plt.xlabel('Sepal length')
plt.ylabel('Sepal width')
plt.show()

3 예시 2: iris 색상

import pandas as pd
df = pd.read_csv('https://raw.githubusercontent.com/jmnote/zdata/master/R/iris.csv')

x = df['Sepal.Length']
y = df['Sepal.Width']
colors = df['Species'].astype("category").cat.codes

import matplotlib.pyplot as plt
plt.scatter(x, y, c=colors)
plt.xlabel('Sepal length')
plt.ylabel('Sepal width')
plt.show()

4 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}