Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
168 views

using predict with a list of lm() objects

I have data which I regularly run regressions on. Each "chunk" of data gets fit a different regression. Each state, for example, might have a different function that explains the dependent value. This ...
5
votes
3answers
430 views

.NET Neural Network or AI for Future Predictions

I am looking for some kind of intelligent (I was thinking AI or Neural network) library that I can feed a list of historical data and this will predict the next sequence of outputs. As an example I ...
4
votes
4answers
2k views

2d game : fire at a moving target by predicting intersection of projectile and unit

Okay, this all takes place in a nice and simple 2D world... :) Suppose I have a static object A at position Apos, and a linearly moving object B at Bpos with bVelocity, and an ammo round with ...
3
votes
1answer
182 views

Predicting/imputing the missing values of a Poisson GLM Regression in R?

I'm trying to explore ways of imputing missing values in a data set. My dataset contains the number of counts of an occurance (Unnatural, Natural and the sum Total) for Year(2001-2009), Month(1-12), ...
3
votes
2answers
756 views

R: predict.svm does not predict new data

unfortunately I have problems using predict() in the following simple example: library(e1071) x <- c(1:10) y <- c(0,0,0,0,1,0,1,1,1,1) test <- c(11:15) mod <- svm(y ~ x, kernel = ...
2
votes
9answers
547 views

Is there a way to predict unknown function value based on its previous values

I have values returned by unknown function like for example # this is an easy case - parabolic function # but in my case function is realy unknown as it is connected to process execution time [0, 1, ...
1
vote
1answer
52 views

R: numeric 'envir' arg not of length one in predict()

I'm trying to predict a value in R using the predict() function, by passing along variables into the model. I am getting the following error: Error in eval(predvars, data, env) : numeric ...
1
vote
1answer
86 views

Doing linear prediction with R: How to access the predicted parameter(s)?

I am new to R and I am trying to do linear prediction. Here is some simple data: test.frame<-data.frame(year=8:11, value= c(12050,15292,23907,33991)) Say if I want to predict the value for ...
1
vote
5answers
161 views

Predictional Logic in Programming?

I was thinking about how in the probably distant future many people think that we wont rely on physical input (i.e. keyboard) as much because the technology that reads brain waves (which already ...
0
votes
1answer
73 views

Predict() - Maybe I'm not understanding it

I posted earlier today about an error I was getting with using the predict function. I was able to get that corrected, and thought I was on the right path. I have a number of observations ...
0
votes
1answer
37 views

Core Data - Predict to filter relationship subclass

I have an entity User entity which is a parent entity to a Friend entity. The User entity has a to-many relationship with an entity named Article. The idea is there are users saved and also friends ...
0
votes
0answers
48 views

arima prediction for an as.Date series

I have two variables in my data frame. Date and index price. I had to us as.Date as they are daily index date. You do not have 365 values. ind$Date.Time<-as.Date(ind$Date.Time, format="%m/%d/%Y") ...
-2
votes
1answer
84 views

machine learning predict classification

I have the following problem. I have a training dataset comprising of a range of numbers. Each number belongs to a certain class. There are five classes. Range: 1...10 Training Dataset: ...