Displaying 20 results from an estimated 1000 matches similar to: "assuming AR(1) residuals in OLS"
2005 Dec 25
1
Different ARCH results in R and Eviews using garch from tseries
Dear Sir,
First of all Happy Holidays!,...
I am writing to you because I am a bit confused about ARCH estimation.
Is there a way to find what garch() exactly does, without the need of
reading the source code (because I cannot understand it)?
In Eviews (the results at the end) I am getting different results than
in R (for those that have the program I do: Quick -> Estimage Equation
->
2005 Nov 11
3
Inputing data from multiple files as time series objects
Hello to everyone,...
I am a new R ambitious user. I would like to be the first at my
department using R, but I have encountered a difficulty during the
last days that I cannot overcome reading help() and searching over the
net.
Problem:
I have multiple files with financial data like the following (header included):
E.g.:
filename: AOL.txt
aol.txt
4
3
5
3...
filename: IBM.txt
ibm.txt
6
2
5
2...
2006 Jan 30
4
Loops that last for ever...
Hello, good morning or evening!...
After studying some of the examples at S-poetry Document, I tried to
implement some of the concepts in my R script, that intensively uses
looping constructs. However I did not manage any improvement.
My main problem is that I have a list of a lot of data e.g.:
> xs
[[1]]
[1]........................[1000]
[[2]]
[1]........................[840]
...
[[50]]
2006 Jan 03
1
how to work on multiple R objects?...
Hello, Happy New Year!...
I am encountering a problem trying to work on the data that I load in R.
I have loaded to R a series of stock data using
(csv files are named e.g. IBM.R)
length.R <- length(list.files(".", pattern=".R")) # the number of
files with one #column in the directory "./" ending to
".R"
for (i in 1:length.R) {
2009 Jan 28
0
Sweave problem with greek text
Dear Sweave and R aficionados,
I am using R and Latex for many years, writing texts in greek. I tried
to combine them with Sweave, but without any success.
Could you provide me with any help?
Usually my LaTeX files are like this iso-8859-7 encoded .tex file:
http://costis.name/0various/lists/R/sweave/successful.greek.tex ,
which happily produces
2010 Nov 18
1
how do I build panel data/longitudinal data models with AR terms using the plm package or any other package
Hi All,
I am doing econometric modeling of panel data (fixed effects). We currently use Eviews to do this, but I have discovered a bug in Eviews 7 and am exploring the use of R to build panel data models / longitudinal data models. I looked at the plm package but do not see how I can incorporate AR terms in the model using the plm package. I have an Eviews model with two AR terms, AR(1) and
2023 Jan 05
1
R 'arima' discrepancies
Rob J Hyndman gives great explanation here
(https://robjhyndman.com/hyndsight/estimation/) for reasons why results
from R's arima may differ from other softwares.
@iacobus, to cite one, 'Major discrepancies between R and Stata for
ARIMA'
(https://stackoverflow.com/questions/22443395/major-discrepancies-between-r-and-stata-for-arima),
assign the, sometimes, big diferences from R
2008 Jul 23
1
Time series reliability questions
Hello all,
I have been using R's time series capabilities to perform analysis for quite
some time now and I am having some questions regarding its reliability. In
several cases I have had substantial disagreement between R and other packages
(such as gretl and the commercial EViews package).
I have just encountered another problem and thought I'd post it to the list. In
this case,
2004 Sep 23
1
R vs EViews - serial correlation
Dear all,
I met with some problems when dealing with a time series with serial correlation.
FIRST, I generate a series with correlated errors
set.seed(1)
x=1:50
y=x+arima.sim(n = 50, list(ar = c(0.47)))
SECOND, I estimate three constants (a, b and rho) in the model Y=a+b*X+u, where u=rho*u(-1)+eps
library(nlme)
gls(y~x,correlation = corAR1(0.5)) # Is it the right procedure?
2005 Mar 14
1
r: eviews and r // eigen analysis
hi all
i have a question that about the eigen analysis found in R and in
eviews.
i used the same data set in the two packages and found different
answers. which is incorrect?
the data is:
aa ( a correlation matrix)
1 0.9801 0.9801 0.9801 0.9801
0.9801 1 0.9801 0.9801 0.9801
0.9801 0.9801 1 0.9801 0.9801
0.9801 0.9801 0.9801 1 0.9801
0.9801 0.9801 0.9801 0.9801 1
now
> svd(aa)
$d
[1] 4.9204
2003 Jun 06
2
R help: Correlograms
Hello,
I have time series and need to draw simple and partial correlograms with associated Q-statistics (the same as in EViews). Can I do it in R? Thanks
---------------------------------
[[alternate HTML version deleted]]
2006 Nov 17
1
Files in EViews format
Dear HelpeRs,
I wonder if anyone knows of ways to read EViews file types.
I did not find a function in the package 'foreign' and a search query
submitted to http://search.r-project.org was not successful.
Any hint is very much welcome.
Dietrich Trenkler
--
Dietrich Trenkler c/o Universitaet Osnabrueck
Rolandstr. 8; D-49069 Osnabrueck, Germany
email: Dietrich.Trenkler at
2017 Nov 27
5
Scatterplot of many variables against a single variable
Dear
I try to realize one scatter matrix which draws *one single variable to all
variables* with *regression line* . You can see my eviews version in the
annex .
How can I draw this graph with R studio?
Sincerely
Engin YILMAZ
2017 Nov 27
3
Scatterplot of many variables against a single variable
LOL. Great reply Jim.
(N.B. Jim's conclusion is "debatable" by a judicious choice of seed. e.g.
set.seed(79) suggests that making the request more readable will actually
lower the number of useful answers. :-))
On Mon, Nov 27, 2017 at 11:42 AM, Jim Lemon <drjimlemon at gmail.com> wrote:
> Hi Engin,
> Sadly, your illustration was ambushed on the way to the list. Perhaps
2012 Sep 28
0
Questions about the functions ar.ols and auto.arima when fitting an AR model
Hi,
I am trying to fit an AR model, maximum order =4, order selection
criterion is aic. I wonder why these two give different results:
m1<-ar.ols(x, aic=TRUE, method="ols", order.max=4)
m1<-auto.arima(x,d=0, D=0, max.p=4, max.P=0, max.q=0, max.Q=0, ic="aic")
Could they both use the function predict to do forecasting? Is there any
function that works better?
2010 Jun 19
3
R vs SAS and Revolution R
Hello
How do you compare R to SAS in terms of speed and management of large
datasets?
What about Revolution R?
I've seen on their site, they claim that Revolution R is much faster than R
and it's multithread...
Can you really notice the difference?. What dissadvantage does it have?
I think it's based on R 2.10. but R already issued the version 2.12
Regards
What alternative
2008 Mar 20
1
Interpretation of Variance decomposition in VAR model
Hi all,
This question is not really R related, rather on Statistics subject itself. Even I did not do those using R. however still I want to post it here, because my hope is I could get help from great statisticians who are the very active member of this group.
My problem is to interpret Variance decomposition of VAR model in layman's language.
Using EViews I got following :
Variance
2017 Nov 27
0
Scatterplot of many variables against a single variable
Dear Berger and Jim
Can you see my eviews example in the annex? (scattersample.jpg)
Sincerely
Engin
2017-11-27 13:27 GMT+03:00 Eric Berger <ericjberger at gmail.com>:
> LOL. Great reply Jim.
> (N.B. Jim's conclusion is "debatable" by a judicious choice of seed. e.g.
> set.seed(79) suggests that making the request more readable will actually
> lower the number of
2013 Oct 22
2
[Proposal] Add ability to read authorized keys from shell script instead of file
File authorized_keys is unusable for mass key storage and manipulation. I
wan to store keys in something like mysql server, but It will add big
unwanted dependency to package. What if we use auth_rsa.c but instead
search in file send key to some script and read sigle return value if key
finded and empty if not. I think it will be very customizable.
--
With Best Regards,
Constantine
2024 Feb 23
1
help - Package: stats - function ar.ols
?s 16:34 de 22/02/2024, Pedro Gavronski. escreveu:
> Hello,
>
> My name is Pedro and it is nice to meet you all. I am having trouble
> understanding a message that I receive when use function ar.ols from
> package stats, it says that "Warning message:
> In ar.ols(x = dtb[2:6966, ], demean = FALSE, intercept = TRUE,
> prewhite = TRUE) :
> model order: 2