dean-kg / datamanim_comment

0 stars 0 forks source link

dataset/practice/ex7 #31

Open utterances-bot opened 5 months ago

utterances-bot commented 5 months ago

7회 기출 변형 — DataManim

https://www.datamanim.com/dataset/practice/ex7.html

cmetal77 commented 5 months ago

7회 기출 올려 주셔서 감사합니다. 한가지 질문이 있습니다. 작업2유형이 price를 구하는 것인데 분류(RandomForestClassifier)로 구하는 게 맞는건가요? RandomForestRegressor로 했더니 price 값이 엄청 크게 나오긴 합니다.

dean-kg commented 5 months ago

@cmetal77 아뇨 reg가 맞습니다. 제가 실수했네요. 코드 수정했습니다

lavigne11 commented 5 months ago

국어과목 zscore로 변환하면 최대값 1.646619나오는데 뭐가 잘못된걸까요?

lavigne11 commented 5 months ago

자유도 문제였네요 문제 감사합니다

kimyunseo123 commented 5 months ago

안녕하세요. 3-4에 대한 질문이 있습니다!

제가 로지스틱 회귀 문제를

from statsmodels.formula.api import logit formula = "target ~ age + sex + cp + trestbps + chol + fbs + restecg + thalach + exang + oldpeak + slope + ca + thal" model = logit(formula, data=train).fit() print(np.exp(model.params["age"]))

이렇게 풀었는데 0.9944 로 결과가 나왔습니다.

로지스틱회귀 관련 다른 문제들을 풀어봤을때, 저 방식으로 해도 오류가 없었는데 혹시 제 풀이에서 뭔가 잘못된게 있는지 알 수 있을까요?

yyboom commented 5 months ago

3-4에서 로지스틱 회귀에 add_constant를 해줘야 하는것 아닌가요?? 저도 0.9944로 나옵니다!