The predict tag has no wiki summary.
0
votes
1answer
36 views
Predict.lm for Multiple Regression; trouble with new.data
I'm running a multivariate regression on some trees data.
trees
Index DBH Height Merch.Vol.
1 1 8.3 70 10.3
2 2 8.6 65 10.3
3 3 8.8 63 10.2
4 ...
0
votes
0answers
26 views
R: How to make column of predictions for logistic regression model?
So I have a data set called x. The contents are simple enough to just write out so I'll just outline it here:
the dependent variable, Report, in the first column is binary yes/no (0 = no, 1 = yes)
...
2
votes
2answers
98 views
Java, Weka: How to predict numeric attribute?
I was trying to use NaiveBayesUpdateable classifier from Weka. My data contains both nominal and numeric attributes:
@relation cars
@attribute country {FR, UK, ...}
@attribute city {London, ...
0
votes
1answer
24 views
Predict Location coordinates from time data
I have data consisting of time (sec) in the x-axis and location (x,y,z) in the y-axis. I want to be able to predict location (x,y,z) using time (sec). What machine learning algorithm can I use? How ...
0
votes
0answers
60 views
confidence value and threshold in opencv
What is the difference between "confidence" value in Face Recognizer predict method and "threshold" in model consrtuctor?
I want to just grab the LBP histogram from the source image and compare it ...
2
votes
1answer
101 views
Understanding predict( ) in R
I am reading through predict() in R and am confused:
There is a dataset Spam from which we have created a train data and test data using random sampling. We have used the trainSpam(training data set ...
0
votes
0answers
12 views
predict multilinear regression
I'm using linear regression for prediction. f=lm(y0~x0)
y0 is of length 1251, x is a matrix of dimension (1251,2)
It works fine and gives a nice fitted model.
However when I try to test prediction ...
0
votes
0answers
85 views
Predict with survreg/tobit goes past bound
So I am using survreg, and I expect my predicted results to obey a lower bound of 0, but they indicate negative results frequently. I think it is somehow estimating a linear result instead of the ...
2
votes
1answer
59 views
fitting a loess line in R
I'm having some trouble using loess() and predict() in R. I have used the following code to simulate data:
Overall=0.6
RR=1.1
Noise=0.05
x=seq(from=0.01, to=10, by=0.01)
logRR=log(RR)
...
0
votes
1answer
101 views
python pandas OLS.predict, what is the correct signature?
I am having a pandas OLS model,
mid_lag_lead_df_model
-------------------------Summary of Regression Analysis-------------------------
Formula: Y ~ <1> + <2> + <3> +
Number ...
0
votes
2answers
60 views
R predict function: why it returns zero length prediction?
Update: I am using e1071 package for naiveBayes
I am new to R and trying to build Naive Bayes model around a toy data. Then I tried to call"predcit" on that model. The issue I saw is: the result from ...
1
vote
3answers
103 views
Using lm and predict on data in matrices
I use R only a little bit and never use data frames, which makes understanding the correct use of predict difficult. I have my data in plain matrices, not data frames, call them a and b, which are N ...
0
votes
0answers
59 views
r holtwinters predict
I am using R for sometime now and some days ago I found a very interesting function which made a prediction on a given time series. It just took the data from the known time series and applied it on a ...
0
votes
1answer
45 views
predict warning
i'm getting this warning while trying to predict values for my test data frame.
here is my code to build the tree and predict:
library(pgmm)
data(olive)
olive = olive[,-1]
tree2 <- tree(olive$Area ...
0
votes
1answer
82 views
Convert R read.csv to a readLines batch?
I have a fitted model that I'd like to apply to score a new dataset stored as a CSV. Unfortunately, the new data set is kind of large, and the predict procedure runs out of memory on it if I do it ...
0
votes
1answer
49 views
Trouble getting se.fit and confidence intervals using clmm2 from ordinal package
I'm using clmm function from ordinal package in R in order to fit cumulative mixed models to my data. It worked fine until I tried to get predicted probabilities. I can't get either SE or confidence ...
1
vote
2answers
403 views
“too many variables specified” error with predict following logit
I have a panel of data (firm-years) that span several countries. For each country I estimate a logit model using the first five years then I use this model to predict probabilities in subsequent ...
-3
votes
2answers
53 views
output is SECOND STRING can anyone explain why? [closed]
#include <stdio.h>
#include <string.h>
int* g( )
{
static int x[1024];
return x;
}
int main( )
{
char *g1= "FIRST STRING";
strcpy(g( ),g1);
g1=g( );
strcpy(g1,"SECOND STRING");
...
0
votes
0answers
59 views
failure during raster IO
I am new to Raster and posting in stackoverflow.
When I attempt to plot stacked rasters or use the predict function I get an error: failure during raster IO. I have googled the error message but have ...
0
votes
1answer
78 views
How to know which x values to use in predict method in R?
I have fitted a linear model:
f <- lm(y ~ x)
From that I used the predict method
p <- predict(f)
But the predict method does not deliver the expected result. In the following image I have ...
0
votes
0answers
103 views
loess predict in R standard error memory allocation issue
I am trying to predict some values in a loess model. The model is simple: y ~ x where y and x are 114,000 observations. If i specify se = TRUE I get the following error:
mdl2 = loess(y ~ x)
...
0
votes
2answers
125 views
Predict.lm in R fails to recognize newdata
I'm running a linear regression where the predictor is categorized by another value and am having trouble generating modeled responses for newdata.
First, I generate some random values for the ...
0
votes
1answer
59 views
How does predict deal with models that include the AsIs function?
I have the model lm(y~x+I(log(x)) and I would like to use predict to get predictions of a new data frame containing new values of x, based on my model. How does predict deal with the AsIs function I ...
3
votes
1answer
182 views
How to deal with NA in a panel data regression?
I am trying to predict fitted values over data containing NAs, and based on a model generated by plm. Here's some sample code:
require(plm)
test.data <- data.frame(id=c(1,1,2,2,3), ...
1
vote
1answer
124 views
How to reproduce predict.svm in R?
I want to train an SVM classifier in R and be able to use it in other software by exporting the relevant parameters. To do so, I first want to be able to reproduce the behavior of predict.svm() in R ...
2
votes
1answer
139 views
Error using predict with klaR package, NaiveBayes
I'm using the klaR package's predict method as mentioned in the post Naive bayes in R:
nb_testpred <- predict(mynb, newdata=testdata).
nb_testpred is my Naive Bayes model, developed on ...
3
votes
1answer
143 views
Unknown error messages in R using nls() with SSlogis() and predict()
I'm fitting a logistic model (self-starting; SSlogis) to data of multiple populations of birds using nls(). My goal is to fit an expected function to the data (using only part of each dataset) and ...
0
votes
0answers
180 views
why predict () function in R does not give prediction?
My training dataset has 40000 rows. After I fit a CART model using
fit<-rpart(y~x,method="class")
I was trying to use
predict(fit,data.frame(new_x),family="response")
The error message is:
...
1
vote
1answer
114 views
results of consecutive randomForest.predict calls in R are inconsistent
After creating a random forest, I use it to predict against a out of sample test data set. However, consecutive calls to predict produce different results:
pred<-predict(rf, test)
...
-1
votes
1answer
151 views
How to use svmpredict in matlab?
[predicted_label, accuracy, decision_values/prob_estimates] = svmpredict(testing_label_vector, testing_instance_matrix, model [, 'libsvm_options']);
1. I am using libsvm for image classification in ...
1
vote
0answers
187 views
OpenCV-KalmanFilter::predict() error
I'm trying to get an implementation of the Kalman Filter with on OpenCV, so I've followed the following example of tracking of rotating point (OpenCV 2.4.3):
...
0
votes
1answer
375 views
R - predict command error “undefined columns selected”
I’m a newbie to R, and I’m having trouble with an R predict command.
I receive this error
Error in `[.data.frame`(newdata, , as.character(object$formula[[2]])) :
undefined columns selected
when ...
1
vote
0answers
271 views
Using stepAIC to make out of sample predictions
just had a quick question on using Step AIC to make prediction. I'm a beginner in R, so please pardon if the solution is obvious. Tried searching around but couldn't really find what I was looking ...
0
votes
0answers
179 views
issue with k nearest neighbour regression and knn.pred
In the package knnflex there used to be a k nearest neighbour prediction function. Because that package is no longer available I am using the package FNN, to convert one all program from knnflex to ...
1
vote
1answer
341 views
R: predict.lm() not recognizing an object
> reg.len <- lm(chao1.ave ~ lg.std.len, b.div) # b.div is my data frame imported from a CSV file
> reg.len
Call:
lm(formula = chao1.ave ~ lg.std.len, data = b.div)
Coefficients:
(Intercept) ...
1
vote
0answers
82 views
Rescue all prediction results in Liblinear for Java
I was wondering how one can rescue all of the prediction results when using the Java API for liblinear.
As it is well documented one can rescue the accuracy of the prediction with the following code:
...
0
votes
0answers
127 views
Use rlm model for a newdata
how can I use a created rlm model (see below) for a new test data which differs from the training data through having only 1 row. When I try to predict the target value with the test data t just like ...
1
vote
1answer
204 views
Predict cannot display the standard errors of the predictions, with se.fit=TRUE
As said in the help(predict.nls), when se.fit=TRUE,the standard errors of the predictions should be calculated. However, my codes in the following do not display that, but only the predictions.
alloy ...
0
votes
2answers
447 views
Logistic Regression : not actual out put with predict function
I am new to R, when I am going to estimate a logistic model using glm() it's not predicting the response, but gives a not actual output on calling predict function like 1 for every input at my predict ...
3
votes
3answers
520 views
How to predict x values from lm
I have this data set:
x <- c(0, 40, 80, 120, 160, 200)
y <- c(6.52, 5.10, 4.43, 3.99, 3.75, 3.60)
I calculated a linear model using lm():
model <- lm(y ~ x)
I want know predicted values ...
2
votes
2answers
564 views
warning when calculating predicted values
working with a data frame
x
Date Val
1/1/2012 7
2/1/2012 9
3/1/2012 20
4/1/2012 24
5/1/2012 50
a <- seq(as.Date(tail(x, 1)$Date), by="month", length=5)
a ...
1
vote
1answer
873 views
How to predict with multinom() in R
I'm trying to calculate predicted probabilities using specific values, but R shows the following error:
Error in model.frame.default(Terms, newdata, na.action = na.omit, xlev = object$xlevels) :
...
0
votes
1answer
488 views
predict() returns nothing for type = “class” works fine with type = “raw”
Training data is read in from two files--one with the independent variables only (df.train) and one with the actual corresponding class values only (df.churn). These values are -1 and 1 only. I then ...
0
votes
1answer
206 views
Running predict() after tobit() in package AER
I am doing a tobit analysis on a dataset where the dependent variable (lets call it y) is left censored at 0. So this is what I do:
library(AER)
fit <- tobit(data=mydata,formula=y ~ a + b + c)
...
2
votes
1answer
1k views
Predicting values using Arima model for periods that are not ahead the end of the series
I'm generating an Arima model with an external regressor. Let's suppose I have n observations. The predict.Arima function from forecast package just make predictions for n + 1 observation on.
I need ...
1
vote
1answer
559 views
loess line not plotting correctly
I'm having trouble fitting a loess smooth plus confidence limits to a scatterplot of residuals.
My model is height ~ weight + chest circumference. To check linearity of chest circumference, I've ...
4
votes
1answer
2k views
lm predict won't predict
I have 2 data frames. One is training data (pubs1), the other (pubs2) test data. I can create a linear regression object but am unable to create a prediction. This is not my first time doing this ...
0
votes
1answer
273 views
In R, using binomial() and lapply to constrain predict() values between 0 and 1
I have a GLM, family=binomial(link=logit) model that I apply within a predict() function, seen below. The predict values go beyond zero and 1, but I would like to keep them as probabilities. So I use ...
2
votes
2answers
288 views
How to get y_hat using predict() when both response variable and explanatory variables are log transformed?
I have a log-log linear function as:
lom1 = lm(log(y)~log(x1)+log(x2),data=mod_dt)
I want to get y_hat using the same data set and I did
yhat = exp(predict(lom1))
Result seems off a lot (from ...
7
votes
0answers
689 views
am I using the wrong data type with predict.nnet() in R [closed]
My lack of understanding of R is causing me to grind to a halt in my work and seek your help. I'm looking to build a neural network from some time series data and then build a prediction using ...
