구글 코랩에서 가져오기
import pandas as pd
import matplotlib.pyplot as plt
x = [1,2,3,4,5]
y = [4,5,6,7,8]
xydata = pd.DataFrame({"x": x,
"y" : y})
xydata.head()
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
엑스
와이
0
1
4
1
2
5
2
삼
6
삼
4
7
4
5
8
%matplotlib inline
plt.plot(x,y)
plt.scatter(x,y)
plt.title("X and Y plotted")
Text(0.5, 1.0, 'X and Y plotted')
목표
이 분석의 목표는 최상의 분류 체계를 식별하기 위한 기계 학습 경로를 개발하는 것입니다.
Reference
이 문제에 관하여(구글 코랩에서 가져오기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/arinbasu/importing-from-google-colab-468c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)