Tagged Questions
3
votes
2answers
21 views
geom_smooth on a subset of data
Here is some data and a plot:
set.seed(18)
data = data.frame(y=c(rep(0:1,3),rnorm(18,mean=0.5,sd=0.1)),colour=rep(1:2,12),x=rep(1:4,each=6))
...
-2
votes
0answers
25 views
Interaction terms in logistic regressions [closed]
Is there any easy way (e.g. package) to implement the approach suggested by Norton and Ai (2003) to properly determine the standard error and p-values of the marginal effects of interaction terms of ...
1
vote
0answers
26 views
print(lm) changed output from plot to console
one quick question:
I'm using RStudio and until a few moments ago print(lm) would show me the plot of the regression in the right hand window.
So if I did
lm1 <- lm(infant.mortality~gdp,data=UN)
...
0
votes
1answer
61 views
Removing Rows in R Has Distorted the Data Set
I have removed certain rows from my database using the following code:
df2 <- df1[!(df1$variable==1), ]
This was a dummy variable, and the rows that had the value of 1 for that particular dummy ...
0
votes
1answer
25 views
Time series forecasting of price of financial instrument [closed]
I am working with a financial instrument's intraday time series data. I have to predict the price of a financial instrument on the basis of some statistical parameters(Var1, Var2, Var3) and of time ...
3
votes
1answer
52 views
Finding Minimum Effect with Quadratic terms in regression models
Quadratic terms are quite common in regression. Here is an example from John Fox (http://www.jstatsoft.org/v08/i15/paper)
library(car) # For data
library(splines) # For bs()
library(effects) # For ...
-1
votes
0answers
25 views
what's the coefficients telling me if I do lm on xts objects? [closed]
If I do the following
linear<-lm(data.xts~index(data.xts))
linear
oefficients:
(Intercept) indexdata
4.094e+01 -2.981e-08
What's the coefficient telling me? The decline(increase) rate per ...
0
votes
0answers
28 views
Rolling Dummy Regression in R
I´ve a question concerning the a regression analysis in r.
#Datei einlesen
residual <- read.csv2("E:***Input-R_Renditen.csv",header=TRUE,sep=";")
#Firmen
alist <- list()
for (a in 2:11){
...
4
votes
1answer
69 views
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 -1 ...
-2
votes
0answers
42 views
Transforming variables for multiple regression in R [closed]
I am trying to perform a multiple regression in R. However, my dependent variable has the following plot:
I know that I need to perform a transformation on this variable (and possibly the ...
0
votes
0answers
41 views
Error in lm.fit used in regression for GWAS
I've been struggling with this problem for a while now. If I run the script below (for a Gene Wide Association Study, GWAS), I keep getting the following error:
Error in lm.fit(x, y, offset = offset, ...
-1
votes
0answers
50 views
R: finding regression of straight line after and before inflection point
I have made a scatterplot of a curve line on the following data.
df<-data.frame(Time = c('12:55','12:56','12:57','12:58','12:59', ...
0
votes
0answers
29 views
R: algorithm used by leaps-function for subset-regression
I am not sure does the leaps-function for subset regressions in R give me the right output. I therefore tried to find the algorithm used by the function from the help of the leaps-package, but cannot ...
1
vote
0answers
23 views
How to solve NLR using constraints in R for e.g. t=0,1,2,3 y=10*exp(-A* t) A>=0.001 is the constraint (Need to minimize WSS)
I want to solve NLR using Constraint optimization(by minimizing WSS) in R followed by all summary of iteration
t=c(0,1,2,3,4,5)
f(t) is given below
y=10*Exp(-A*t)
need to fit above function by ...
-1
votes
0answers
43 views
Logistic Regression Model in R, trying to resolve an error
Good day,
I am trying to write a (very simple) script for a logistic regression model in R, but I am running into some errors.
Now, the question was
To study the effect of a new teaching method ...
0
votes
0answers
56 views
Why does `logistf` give error in R, while `glm` works smoothly
I have run glm (for a logistic regression) and as result I got that the algorithm diverges.
I want to try the function logistf to check whether Firth's approach can improve my data analysis.
Let dat ...
0
votes
1answer
61 views
Regression coefficients by group in dataframe R
I have data of various companies' financial information organized by company ticker. I'd like to regress one of the columns' values against the others while keeping the company constant. Is there an ...
2
votes
2answers
95 views
Memory efficient classifiers in R for extremely wide and not too long training set
Training data set is is extremely wide (about 200K features) and very short (in hundreds). Obviously the data set occupies a lot of memory but R reads it without problems.
Then I trained Random ...
2
votes
2answers
40 views
getting predictor names in R regression
I have an R code that is running about 100 regression models, grabbing R^2 values and printing them to a csv file as follows:
filename<-"Reg_Results.csv";
cat("Setting,Origin Region,Destination ...
0
votes
0answers
32 views
Remove terms with NA coefficients from lm model with interactions
I'm training a model using lm with interactions by
fit <- lm(Y ~ .^2, data)
Some of the interaction terms have "NA" as their coefficient, indicating I suppose that not all terms are independent. ...
-1
votes
1answer
36 views
Interpreting regression coefficients in R [closed]
I'm trying to fit a x*log(x) model to the data. The fitting is performed successfully but I have difficulties in interpreting the resulting coefficients. Here a snapshot of my code.
x <- c(6, 11, ...
0
votes
1answer
41 views
How to get measures of model fit (AIC, F-statistics) in zelig for multiply imputed data?
Following up on an earlier post, I am interested in learning how to get the usual measures of the relative quality of a statistical model in zelig for regression using multiply imputed data (created ...
1
vote
0answers
58 views
Displaying factors and levels with logistic regression in R
I have a dataframe model.vars containing discretized data on which to perform logistical regression, as follows:
for(i in varnames)
{
modelformula = paste("dep_var~ ", as.factor(i))
...
0
votes
1answer
36 views
Plotting multiple logistic curves using mapply
I have a set of 20 intercepts and coefficients for a logistic regression model. I'd like to plot them all on one graph (ideally, with base and not ggplot). I plot a single curve like this:
x = ...
3
votes
1answer
68 views
order of coefficients in lm, R
When running a regression in R, what is the order for the returned coefficients? For example:
coef(lm(y ~ x + z, data=data.frame(x=1:10, y=10:1, z=1:5)))
Is it guaranteed that the coefficient ...
4
votes
1answer
86 views
Missing object error when using step() within a user-defined function
5 days and still no answer
As can be seen by Simon's comment, this is a reproducible and very strange issue. It seems that the issue only arises when a stepwise regression with very high predictive ...
0
votes
1answer
58 views
How can I output the processes within a function to a textfile in R (sink doesn't work when operations are run invisibly)?
I am trying to write a function that performs several stepwise regressions and outputs the 'steps' of each one to a text file. The problem I am having is that sink() doesn't actually output anything ...
1
vote
1answer
103 views
Multi-level regression model on multiply imputed data set in R (Amelia, zelig, lme4)
I am trying to run a multi-level model on multiply imputed data (created with Amelia); the sample is based on a clustered sample with group = 24, N= 150.
library("ZeligMultilevel")
ML.model.0 <- ...
0
votes
0answers
107 views
Strategy for building best fit multiple regression model with time lagged variables
I am building a multiple regression model - wrapped in a function - with one dependent variable and a dozen independent variables. The reason why I am building a function is that I need to do this ...
2
votes
1answer
191 views
Logistic regression with robust clustered standard errors in R
A newbie question: does anyone know how to run a logistic regression with clustered standard errors in R? In Stata it's just "logit Y X1 X2 X3, vce(cluster X)", but unfortunately I haven't figured out ...
1
vote
2answers
60 views
Adding regression to scatter plot in R
I want to add regression to my scatter plot in R and to make elevation independent while snowfall dependent. I know how to construct a simple scatter plot - but using regression and making elevation ...
0
votes
1answer
29 views
Setting indicator variables to equal 1 or 0
I have to set HIGPA to equal 1 if the gpa is greater than 3, and if it is less, then HIGPA must equal 0. I am using R.
gpa is already a variable in the data. HIGPA is not.
So far I have made HIGPA a ...
-1
votes
1answer
50 views
Meaning of NA values in regressions in R
I've searched around on this forum but couldn't find any suitable answer.
I'm trying to fit data using the lm() function in R.
I'm return some NAs values for some coefficients as I increase the ...
0
votes
1answer
27 views
How to get all points for a fitted spline in R?
I am trying to find the MSE of a fitted smooth.spline in R (and compare it with other methods) using a default data set (cars). But using predict function decreases the number of my data points. In ...
1
vote
1answer
99 views
OLS in Python with Dummy Variables - Best Solution?
I have a problem I am trying to solve in Python, and I have found multiple solutions (I think) but I am trying to figure out which one is the best. I am hoping to choose libraries that will be ...
0
votes
0answers
33 views
Plotting quantile regression with two parameters
I'm trying to plot a fitted curve to 1: https://www.dropbox.com/s/0euuap3dsz84byg/image_forum.png "curve"
For that I'm thinking to use the following code (based on the documentation provided by ...
1
vote
0answers
97 views
plot multiple fit and predictions for logistic regression
I am running multiple times a logistic regression over more than 1000 samples taken from a dataset. My question is what is the best way to show my results ? how can I plot my outputs for both the fit ...
0
votes
0answers
61 views
Regressing a quantitative variable from several compatible qualitative variables
This is my first question on stackoverflow and I hope I'll do things properly.
I am studying the impact of movie genres on box-office.
My endogenous variable is boxoffice, continuous and ...
0
votes
0answers
94 views
ggplot2 confidence intervals interpretation and calculation in R? [closed]
One can plot confidence intervals with stat_smooth for linear model (lm) fits like this in ggplot2:
p <- ggplot(cars) + geom_point(aes(x=speed, y=dist)) + stat_smooth(aes(x=speed, y=dist), ...
0
votes
2answers
14 views
Mlogit crashes when testing CSV File
I am new to this forum and to R so please bear with me. I will try to make my post as detailed as possible!
The R I am using is version 2.9.2 on mac 10.6.8.
I am currently running a mlogit model on ...
1
vote
1answer
56 views
Doing several panel data efficiently in R
I am trying to do several pooling OLS regressions on a "changing" panel data set. The Gasoline data in the plm package will suit well as an example
library(plm)
data("Gasoline", package = "plm")
...
1
vote
2answers
64 views
Convert all column headers into regressors in R
I'm completely new to R and would like to turn each column label (header?) in my data set into a regressor without having to define each regressor one at a time, i.e. date -> data$Date
Is there a way ...
1
vote
2answers
147 views
R Query: Creating Dummy Variables from a Categorical Variable
Hello Stack Overflow people, I have spent a while searching for a solution to my problem, but not found anything, so thought I would post.
Basically I have a dataset of 196 countries listed in ...
0
votes
0answers
42 views
R - Locpoly: Equivalent Degrees of Freedom
I'm using the locpoly function inside the KernSmooth package to perform local polynomial regression. I'm using the dpill() function to estimate the smoothing parameter / bandwidth.
Is there a way I ...
0
votes
0answers
61 views
Does anyone know of multivariate forecasting packages for are
I have been looking in the R-package libraries for a package that is capable of forecasting multivariate regression models. I have found that this can be done with ARIMA, but auto regressive models ...
2
votes
1answer
100 views
Extract only coefficients whose p values are significant from a logistic model
I have run a logistic regression, the summary of which I name. "score" Accordingly, summary(score) gives me the following
Deviance Residuals:
Min 1Q Median 3Q Max
-1.3616 ...
0
votes
0answers
70 views
Interval regression with R
I need to perform a multiple regression analysis of response data that is expressed as an interval (a lower bound and an upper bound), that I assume is log-normally distributed, on a number of ...
1
vote
1answer
63 views
Regression for a Rate variable in R
I was tasked with developing a regression model looking at student enrollment in different programs. This is a very nice, clean data set where the enrollment counts follow a Poisson distribution ...
0
votes
1answer
105 views
How to change the output after running multinom() in R
Dear Stackoverflow community,
The default output R produces after running multinom() from the nnet package only includes the coefficients of the dependent variables, the residual deviance and the ...
2
votes
2answers
160 views
R: plm — year fixed effects — year and quarter data
I am having a problem setting up a panel data model.
Here is some sample data:
library(plm)
id <- c(1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2)
year <- ...


