R 다중선형회귀분석

Jmnote (토론 | 기여)님의 2020년 4월 3일 (금) 01:16 판 (새 문서: ==개요== ;R multiple regression ;R 다중회귀분석 ==예시: 빵집 매출== <source lang='r'> df <- read.csv('https://raw.githubusercontent.com/jmnote/z-dataset/master/multiple...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

R multiple regression
R 다중회귀분석

2 예시: 빵집 매출

df <- read.csv('https://raw.githubusercontent.com/jmnote/z-dataset/master/multiple-regression/bakery-sales.csv')
df
lm1 <- lm(sales ~ floor_space + distance_to_station, data=df)
summary(lm1)

3 같이 보기

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