Top "Regression" questions

Regression analysis is a collection of statistical techniques for modeling and predicting one or multiple variables based on other data.

Scikit-learn cross validation scoring for regression

How can one use cross_val_score for regression? The default scoring seems to be accuracy, which is not very …

python scikit-learn regression
forward stepwise regression

In R stepwise forward regression, I specify a minimal model and a set of variables to add (or not to …

r regression
Java-R integration?

I have a Java app which needs to perform partial least squares regression. It would appear there are no Java …

java r machine-learning regression
scikit-learn cross validation, negative values with mean squared error

When I use the following code with Data matrix X of size (952,144) and output vector y of size (952), mean_squared_…

python regression scikit-learn cross-validation
extracting standardized coefficients from lm in R

My apologies for the dumb question...but I can't seem to find a simple solution I want to extract the …

r regression lm beta standardized
ggplot2: Logistic Regression - plot probabilities and regression line

I have a data.frame containing a continuous predictor and a dichotomous response variable. > head(df) position response 1 0 1 2 3 1 3 -4 0 4 …

r ggplot2 regression
Working with neuralnet in R for the first time: get "requires numeric/complex matrix/vector arguments"

I'm in the process of attempting to learn to work with neural networks in R. As a learning problem, I've …

r regression prediction kaggle
Multivariate polynomial regression with numpy

I have many samples (y_i, (a_i, b_i, c_i)) where y is presumed to vary as a …

python numpy statistics regression
How to export coefficients of the regression analysis fto a spreadsheet or csv file?

I am new to RStudio and I guess my question is pretty easy to solve but a lot of searching …

r excel csv regression
How to increase the model accuracy of logistic regression in Scikit python?

I am trying to predict the admit variable with predictors such as gre,gpa and ranks.But the prediction accuracy …

python machine-learning scikit-learn regression logistic-regression