Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 딥러닝
- 데이터 분석
- 시각화
- Google ML Bootcamp
- SQLD
- Deep Learning Specialization
- sklearn
- 데이터 전처리
- IRIS
- ML
- matplotlib
- tableau
- scikit learn
- 이코테
- 파이썬
- pytorch
- 통계
- 데이터분석
- 태블로
- 회귀분석
- Python
- ADsP
- r
- 이것이 코딩테스트다
- 자격증
- 데이터분석준전문가
- SQL
- 머신러닝
- pandas
- 코딩테스트
Archives
- Today
- Total
목록lm (1)
함께하는 데이터 분석

오늘은 R을 이용하여 simple linear regression을 알아보겠습니다. 데이터는 wages.Rdata를 사용했습니다. 데이터 불러오기 setwd("경로") load("wages.Rdata") attach(wages) setwd를 통하여 자신의 경로를 설정한 다음 load를 통해 경로 안에 있는 파일을 불러오면 됩니다. attach를 통하여 데이터를 불러옴으로써 data.frame에서 column을 wages$logwage가 아닌 logwage라고 쓸 수 있게 됩니다. 데이터 구조 파악하기 str(wages) >>> 'data.frame':2178 obs. of 2 variables: $ education: num 16.8 15 10 12.7 15 ... $ logwage : num 2.85 ..
통계학과 수업 기록/회귀분석
2022. 4. 14. 18:59