python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Python Statsmodel Logistic Regression iterate through Parquet file
I am trying to run a logistic regression model on a very large dataset with 2.3 billion observations in Python. I need a standard regression output. Statsmodels with parquet seemed promising:
https://...
HLRA
Votes: 0
Answers: 1
Invalid Syntax in OLS using statsmodels pythton
I want to try regression on some data.
country_scores=country_scores.rename(columns={"Median Math Score (TIMSS Scale, 4th Grade)": "Median Math Score"})
country_scores_log2 = count...
man0s
Votes: 0
Answers: 1
What is model.cov_params() in statsmodels?
I am unable to understand what the [cov_params][1] from a fitted statsmodel represents. I thought it would be the covariance matrix of the data but that does not seem to be the case. It is not even sc...
figs_and_nuts
Votes: 0
Answers: 0
How to change the reference category of the dependent variable in statsmodels when using Multi-nominal Regression?
I am trying to alter the reference category of the dependent variable (what party somebody voted for) while using statsmodels. I know that using C(socialclass, Treatment(reference=2)) allows me to cha...
Richard Nixon
Votes: 0
Answers: 0