일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 딥러닝
- JavaScript
- 클론코딩
- 강화학습 기초
- 머신러닝
- clone coding
- Instagrame clone
- React
- redux
- App
- python
- 강화학습
- expo
- 리액트네이티브
- pandas
- 전국국밥
- 정치인
- ReactNative
- FirebaseV9
- 카트폴
- Ros
- 데이터분석
- 조코딩
- selenium
- 크롤링
- coding
- 사이드프로젝트
- kaggle
- TeachagleMachine
- 앱개발
- Today
- Total
목록doit시리즈 (2)
qcoding
# #mpg 데이터를 분석하여 데이터 분석실습하기 https://github.com/youngwoos/Doit_Python/tree/main/Data GitHub - youngwoos/Doit_Python: 저장소 저장소. Contribute to youngwoos/Doit_Python development by creating an account on GitHub. github.com 1) 데이터 가져오기 import pandas as pd import numpy as np #pandas 출력 제한설정하기 pd.set_option('display.max_rows',30) pd.set_option('display.max_columns',30) df=pd.read_csv('./mpg.csv') df 2) ..
## 미국 동북중부 데이터를 가지고 데이터 분석 실습 진행하기 https://github.com/youngwoos/Doit_Python GitHub - youngwoos/Doit_Python: 저장소 저장소. Contribute to youngwoos/Doit_Python development by creating an account on GitHub. github.com 1) 데이터의 특징 파악 ( Data는 위에 자료 활용) import pandas as pd import numpy as np df=pd.read_csv('./midwest.csv') df 데이터는 총 437개의 행과 28개의 열을 가지고 있으므로, 28개의 변수가 포함되어 있는 것을 확인할 수 있다. 변수의 속성을 확인하기 위해서 i..