RPostgreSQL version 0.1.0
We are pround to announce the availability of the RPostgreSQL package on CRAN
and its mirrors. This package provides an a DBI-compliant interface between
PostgreSQL and R.
RPostgreSQL was developed as part of the Google Summer of Code 2008 program
by Sameer Kuma
__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
Max wrote:
Hi everyone,
This is not so much of an R question as a statistics question. I
currently work for the largest pre employment screening company in
Canada. Upper management has noticed that noticed that usually a month
or so before any big kind of economic shock happens, that our inco
Tim Smith yahoo.com> writes:
>
> Thanks Charlie - I just tried it, but still get the same error:
>
> ---
> > install.packages("gWidgets",dependencies=TRUE)
...
> > library(gWidgets)
> Error in fun(...) :
>
> *** gWidgets requires a toolkit implementation to be
>
actually meant to say:
max(sapply(foo, function(x) max(x[,1])))
On Tue, Oct 14, 2008 at 5:49 PM, Carl Witthoft <[EMAIL PROTECTED]> wrote:
> Hi,
> Sorry to bother with something that should be simple, but I can't find it.
>
> Suppose I have a list, each element of which is a 2xN dataframe, where N
try:
max(sapply(foo, max))
On Tue, Oct 14, 2008 at 5:49 PM, Carl Witthoft <[EMAIL PROTECTED]> wrote:
> Hi,
> Sorry to bother with something that should be simple, but I can't find it.
>
> Suppose I have a list, each element of which is a 2xN dataframe, where N
> could be different for each eleme
eval(substitute(getAnywhere(x), list(x=name)))
It's a standard (if advanced) code snippet from the ideas of 'computing on
the language'.
getAnywhere is written the way it is because it is intended for
interactive use, especially for frustrated users who can't find an object
that appears in e
Hi R users,
I'm trying to have the symbols for sigma[1] in my legend. the code is given
below, please have a look.
Thanks,
lavan
legend("bottom",legend=paste("Sigma1=", c(0.01,0.1,0.2,0.5,1,1.5,2,4,6,9.5),
sep=""),
fill=c("red","green","blue","black","pink","brown","purple","yellow","lightblu
Thanks Charlie - I just tried it, but still get the same error:
---
> install.packages("gWidgets",dependencies=TRUE)
trying URL
'http://www.ibiblio.org/pub/languages/R/CRAN/bin/windows/contrib/2.7/gWidgets_0.0-30.zip'
Content type 'application/zip' length 1354268 bytes
Hi, you should look at hmftest in mlogit package. However, be cautious
when you use IIA test, it is not very reliable as Long and Freese
(2006:243) have shown.
* J. Scott Long and Jeremy Freese. 2006. Regression Models for
Categorical Outcomes Using Stata. 2nd.
On Wed, Oct 15, 2008 at 3:37 AM, Er
Duncan: My bad: I did install Rtools from the installer, not Rtools.zip.
John: Thanks very much for the suggestion! Will give that a try.
Best,
Andy
From: Duncan Murdoch [mailto:[EMAIL PROTECTED]
Sent: Tue 10/14/2008 3:42 PM
To: Liaw, Andy
Cc: r-help@r-pro
Why not use a scatterplot? That will be far far better for your
purpose than a heatmap.
Hadley
On Tue, Oct 14, 2008 at 4:45 PM, feishi <[EMAIL PROTECTED]> wrote:
>
> Hi, I have a question about heatmap. I have a data with row as microRNA and
> two columns are two cell expression values for these
Hello All,
I¢m kinda new to R language and any help that I can get is greatly appreciated.
Basically, I want to find the values of the two parameters that will maximize
the function and I¢m currently using the optim function to find these values.
My R code works fine but not all the time.
Hi, I have a question about heatmap. I have a data with row as microRNA and
two columns are two cell expression values for these microRNA. So, like:
cell1cell2
miRNA11.5 3.4
miRNA21.3 2.4
...
miRNA505 2.1
miRNA517.3 0.5
I want to
Has there been an answer to the following question from a couple of years ago
about doing amova with factorial data?
[R] question about amova (ade4)
Alicia Amadoz Alicia.Amadoz at uv.es
Tue Nov 14 14:39:21 CET 2006
* Previous message: [R] dividing vectors into bins with equal widths
* Ne
Was there ever an answer to this question about how to do amova with factorial
data?
t hundley
[[alternative HTML version deleted]]
__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting gui
Its been pointed out to me that there is a bug in gsubfn that
occurs when a variable named x is used so the example below
will not work correctly. It seems it clashes with an internal
variable also called x. In the meantime use a different variable
name such as X.
library(gsubfn)
X <- 3
fn$dbGet
Try this:
do.call(getAnywhere, list(name))
On Tue, Oct 14, 2008 at 6:02 PM, Bastian A. <[EMAIL PROTECTED]> wrote:
> Hi List,
>
> I am trying to look up an object using getAnywhere, where the object I
> am looking for is given by the _value_ of the variable I am looking
> for. Since getAnywhere c
That is neat Gabor. Thanks, Ted
Gabor Grothendieck wrote:
>
> The gsubfn package can do quasi perl-style interpolation by
> prefacing any function call with fn$.
>
> library(gsubfn)
> x <- 3
> fn$dbGetQuery(con, "select * from myTable where myColumnA = $x and
> MyColumnB = `2*x` ")
>
> See ht
Thanks Jeffrey and Barry,
I like the humour. I didn't know about xkcd.com, but the humour on it is
familiar. I saw little Bobby Tables what seems like eons ago, when I first
started cgi programming.
Anyway, I recognized the risk of an injection attack with this use of
sprint, but in this case,
Hi List,
I am trying to look up an object using getAnywhere, where the object I
am looking for is given by the _value_ of the variable I am looking
for. Since getAnywhere calls substitue on its argument it is looking
for an object with the name of the argument not its value. Is there a
way to work
Tim Smith-5 wrote:
>
> Hi,
>
> I wanted to install the gWidgets package and ran the following code:
>
> --
>> install.packages("gWidgets")
>
>
The package you installed might be dependent on other packages that weren't
installed, it's good practice
The gsubfn package can do quasi perl-style interpolation by
prefacing any function call with fn$.
library(gsubfn)
x <- 3
fn$dbGetQuery(con, "select * from myTable where myColumnA = $x and
MyColumnB = `2*x` ")
See http://gsubfn.googlecode.com
On Tue, Oct 14, 2008 at 5:32 PM, Jeffrey Horner
<[EMA
Hi,
Sorry to bother with something that should be simple, but I can't find it.
Suppose I have a list, each element of which is a 2xN dataframe, where N
could be different for each element.
Is there some simple structure to let me examine all the elements of
each element's first column? For exa
Assuming the first observation associated with each year is Jan 1,
the second is Jan 2 and so on we have the following. as.yearmon
converts the year into a year/month object and as.Date turns that
into Jan 1 of that year. Then the ave calculation adds 0, 1, ...
to that so we get sequential dates
Barry Rowlingson wrote on 10/14/2008 04:40 PM:
2008/10/14 Jeffrey Horner <[EMAIL PROTECTED]>:
I've found the best way to parameterize is using R's sprintf function. For
instance, the following query not only parameterizes the variable position,
but also the table name:
fields <- dbGetQuery(co
2008/10/14 Jeffrey Horner <[EMAIL PROTECTED]>:
> I've found the best way to parameterize is using R's sprintf function. For
> instance, the following query not only parameterizes the variable position,
> but also the table name:
>
> fields <- dbGetQuery(con,sprintf("select field,elem_label from %
Ted Byers wrote on 10/14/2008 02:33 PM:
Getting the basic stuff to work is trivially simple. I can connect, and, for
example, get everything in any given table.
What I have yet to find is how to deal with parameterized queries or how to
do a simple insert (but not of a value known at the time t
thanks. learning r by myself and did not know of this function.
On 10/14/08, Bert Gunter <[EMAIL PROTECTED]> wrote:
> Please use R's search tools before posting:
>
> ?RsiteSearch
>
> RSiteSearch("mcfadden",restr="func")
> RSiteSearch("discrete choice model",restr="func")
>
> -- Bert Gunter
>
> -
Please use R's search tools before posting:
?RsiteSearch
RSiteSearch("mcfadden",restr="func")
RSiteSearch("discrete choice model",restr="func")
-- Bert Gunter
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Richard Palmer
Sent: Tuesday, October 14, 2008
Hi,
I wanted to install the gWidgets package and ran the following code:
--
> install.packages("gWidgets")
trying URL
'http://www.ibiblio.org/pub/languages/R/CRAN/bin/windows/contrib/2.7/gWidgets_0.0-30.zip'
Content type 'application/zip' length 1354268 by
My reading of the manual and my use of str(test1) on the simple
example suggests that you try using the na.action component of the
model object. That should return the index of elements that were
excluded.
On Oct 14, 2008, at 7:29 AM, Kåre Edvardsen wrote:
Is there a function providing mo
... and does any r package work with experimental design for these models.
--
Richard Palmer
Home 508 877-3862
Cell 508 982-7266
Business: 508 283 3592
__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PL
Dear Andy,
In April, I reported a similar problem to the r-devel list. In my case, I
was using Windows Vista. I've just checked, and I observe the same problem
as you do with randomForest, but can get around it by installing directly
from the .tar.gz archive for the package, that is executing
I am using nlm to maximize a likelihood function. When I call the likelihood
function (garchLLH) via nlm however, nlm returns the wrong value of the
function.
When I test the likelihood function manually I get the correct answer. I'm
probably doing something really stupid, maybe someone can p
Dr Kimpel,
Please remind me where we promised to deliver all these services to
you -- for free, no less -- leading you have such claims on perceived
'service guarantees', at whichever imagined timeliness or whichever
imagines set pf packages.
Had you bothered to check at e.g.
http://changel
On 10/14/2008 3:04 PM, Liaw, Andy wrote:
Dear All,
I recently got a laptop upgrade, and had to re-install the tools I used
for building R packages on Windows (XP SP2). I'm running into a strange
problem that I can't resolve. Can anyone shed on light? This is with
R-2.7.2 patched 2008-09-20 r4
> - Original Message -
> From: "Erika Known" <[EMAIL PROTECTED]>
> To:
> Sent: Tuesday, October 14, 2008 11:43 AM
> Subject: [R] IAA test on my multinomial logit
>
> > Hi all
> >
> > I'm trying to immigrate from Stata and I want to preform a IIA test
> > (Independence of Irrelevant Alter
On 10/14/2008 2:39 PM, Michael Just wrote:
Erik, Roger, others:
Why I use excel: the ability to concatenate and 'drag' formulas. I use it
because it is what I know. Apparently, excel is frowned upon, what should I
be using? I don't know how else to create many very similar lines of R code.
I t
Getting the basic stuff to work is trivially simple. I can connect, and, for
example, get everything in any given table.
What I have yet to find is how to deal with parameterized queries or how to
do a simple insert (but not of a value known at the time the script is
written - I ultimately want
Dirk,
Please let me know when you will support nightly builds of R-devel with all
R and BioConductor packages. I would also need your help syncing my home
setup with the one that I use on a remote Linux cluster using RHEL 5. For my
needs, the packages on these two setups need to be exactly the sam
Thanks hadley I tried just shape=NULL, but did not wrap it in the aes
argument which makes sense.
thanks
On Tue, Oct 14, 2008 at 8:11 AM, hadley wickham <[EMAIL PROTECTED]> wrote:
> On Tue, Oct 14, 2008 at 6:46 AM, stephen sefick <[EMAIL PROTECTED]> wrote:
>> r <-(structure(list(TSS = c(2.8, 8.4,
Dear All,
I recently got a laptop upgrade, and had to re-install the tools I used
for building R packages on Windows (XP SP2). I'm running into a strange
problem that I can't resolve. Can anyone shed on light? This is with
R-2.7.2 patched 2008-09-20 r46576, Rtools.zip downloaded a couple of
wee
On Tue, Oct 14, 2008 at 02:34:57PM -0400, Mark Kimpel wrote:
> Subject pretty much says it all. Wonder if there is there is some code in
> XML that the new gcc doesn't like? See output below:
You are wondering wronly.
> * Installing *source* package 'XML' ...
> checking for gcc... gcc
> checking
Michael
Not sure if it's cool to flog other software here ... But I use Ultra-edit
http://www.ultraedit.com/
Cheap ... Easy to use ... And has text editing functions that save A LOT of
time.
Just my two cents.
Darin
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Erik, Roger, others:
Why I use excel: the ability to concatenate and 'drag' formulas. I use it
because it is what I know. Apparently, excel is frowned upon, what should I
be using? I don't know how else to create many very similar lines of R code.
Thanks again,
Michael
On Tue, Oct 14, 2008 at 1:
"Michael Just" <[EMAIL PROTECTED]> wrote:
> I write most of my R code in excel and then paste it into R. I am wondering
> if there is a limit to how much I can paste? I want to paste about 19,000
> lines of code should this work? I am doing this because when I did it chunks
> it took about an hour
Subject pretty much says it all. Wonder if there is there is some code in
XML that the new gcc doesn't like? See output below:
* Installing *source* package 'XML' ...
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
chec
Michael Just wrote:
Hello,
I write most of my R code in excel and then paste it into R.
Do you actually use Excel as a text editor? Is this common? What
benefits do you get by writing code in Excel?
__
R-help@r-project.org mailing list
https://stat
Hi everyone,
This is not so much of an R question as a statistics question. I
currently work for the largest pre employment screening company in
Canada. Upper management has noticed that noticed that usually a month
or so before any big kind of economic shock happens, that our incoming
files
Hi, my data consists of 2 columns: one with the 'year' when daily observation
was recorded, the other one consists these observations 'obs', like the
following:
year obs
[3014,] 86 26.01
[3015,] 86 25.66
[3016,] 86 23.92
[3017,] 86 23.84
.
.
[3018,] 96 22.65
[3019,] 96 23.22
[3020,
Nothing except: Nothing exceeds like excel.
url:www.econ.uiuc.edu/~rogerRoger Koenker
email[EMAIL PROTECTED]Department of Economics
vox: 217-333-4558University of Illinois
fax: 217-244-6678Champaign, IL 61820
On Oct 14,
Hello,
I write most of my R code in excel and then paste it into R. I am wondering
if there is a limit to how much I can paste? I want to paste about 19,000
lines of code should this work? I am doing this because when I did it chunks
it took about an hour and half. I thought if I could insert it al
http://www.r-project.org/
go to mailing list
go to the web interface link
and follow the directions
2008/10/14 Αργυρώ Ανταράκη <[EMAIL PROTECTED]>:
> I would like to post to this list.
>
> Thank you
>
> Agryro
>
>
>
>
>
> ___
> ×ñçóéìïðïéåßôå
Αργυρώ Ανταράκη yahoo.gr> writes:
>
> imp<-mice(mydata, im=c("","pmm","logreg","logreg"),m=5)
> for a variable with no missing data, a numeric one and two variables with
> binary data.
>
> I got the following message:
>
> There were 37 warnings (use warnings() to see them) warnings()
>
> War
Its fixed.
Thank you.:D
--- On Tue, 10/14/08, John Kane <[EMAIL PROTECTED]> wrote:
From: John Kane <[EMAIL PROTECTED]>
Subject: Re: [R] problem using R
To: "'shradha mukherjee'" <[EMAIL PROTECTED]>, r-help@r-project.org, "Daniel
Malter" <[EMAIL PROTECTED]>
Date: Tuesday, October 14, 2008, 6:47
I would like to post to this list.
Thank you
Agryro
___
×ñçóéìïðïéåßôå Yahoo!;
ÂáñåèÞêáôå ôá åíï÷ëçôéêÜ ìçíýìáôá (spam); Ôï Yahoo! Mail
äéáèÝôåé ôçí êáëýôåñç äõíáôÞ ðñïóôáóßá êáôÜ ôùí åíï÷ëçôéêþí
ìçíõìÜôùí http://login.yahoo.c
Hello.
I have run the command
imp<-mice(mydata, im=c("","pmm","logreg","logreg"),m=5)
for a variable with no missing data, a numeric one and two variables with
binary data.
I got the following message:
There were 37 warnings (use warnings() to see them)
> warnings()
Warning messages:
1: In
I would like to post to this list.
___
×ñçóéìïðïéåßôå Yahoo!;
ÂáñåèÞêáôå ôá åíï÷ëçôéêÜ ìçíýìáôá (spam); Ôï Yahoo! Mail
äéáèÝôåé ôçí êáëýôåñç äõíáôÞ ðñïóôáóßá êáôÜ ôùí åíï÷ëçôéêþí
ìçíõìÜôùí http://login.yahoo.com/config/mail?.intl=
If I'm not wrong, the test for IIA is the Hausman test.
Look for hausman.systemfit in the systemfit package.
Gilbert
- Original Message -
From: "Erika Known" <[EMAIL PROTECTED]>
To:
Sent: Tuesday, October 14, 2008 11:43 AM
Subject: [R] IAA test on my multinomial logit
Hi all
On 10/13/08, Ferry <[EMAIL PROTECTED]> wrote:
> Dear R users,
>
> How to change lattice panel label/text from the automatically generated
> label (based on the conditioning) to our own set of label?
>
> for example:
>
> someStuff <- data.frame(area = rep(c("SOUTH", "NORTH", "EAST", "WEST"), eac
On Tue, 14 Oct 2008, Arnau Mir Torres wrote:
El 14/10/2008, a las 18:05, Martin Maechler escribió:
"AMT" == Arnau Mir Torres <[EMAIL PROTECTED]>
on Tue, 14 Oct 2008 17:13:01 +0200 writes:
"AMT" == Arnau Mir Torres <[EMAIL PROTECTED]>
on Tue, 14 Oct 2008 17:13:01 +0200 writes:
AMT> Hel
or perhaps...
data1$NinYear <- with(data1, ave(ID, Year, FUN = length))
> unique(data1)
ID Year NinYear
1 209 1971 2
3 213 1951 2
5 213 1953 20
20 213 1954 11
31 213 1955 2
33 234 1953 20
38 234 1958 2
40 234 1965 3
43 249 1952 2
A
Hi all
I'm trying to immigrate from Stata and I want to preform a IIA test
(Independence of Irrelevant Alternatives) on my multinomial logit model
in R, but I can't seem to find a package that dos the trick. I've been
looking at
http://bm2.genes.nig.ac.jp/RGM2/R_current/library/systemfit/man/hausm
El 14/10/2008, a las 18:05, Martin Maechler escribió:
"AMT" == Arnau Mir Torres <[EMAIL PROTECTED]>
on Tue, 14 Oct 2008 17:13:01 +0200 writes:
"AMT" == Arnau Mir Torres <[EMAIL PROTECTED]>
on Tue, 14 Oct 2008 17:13:01 +0200 writes:
AMT> Hello.
AMT> I need to know how can R comput
Hello
I'm running into a variety of limitations with my computer complaining that
it doesn't have sufficient memory. It is a Dell Latitude D630 Duo Core
CPU T7700 @ 2.40 GHz, with 3.50 GB RAM.
I'm working with relatively large dataframes
> dim(AllYears)
returns 4071840 records with 13var
Is this what you want?
data1$NinYear <- with(data1, ave(ID, Year, FUN = length))
On Tue, Oct 14, 2008 at 12:22 PM, Tom La Bone <[EMAIL PROTECTED]>wrote:
>
> The table function, which I was unaware of, works great. However, I still
> don't see how to assign the values calculated with table to dat
> "AMT" == Arnau Mir Torres <[EMAIL PROTECTED]>
> on Tue, 14 Oct 2008 17:13:01 +0200 writes:
> "AMT" == Arnau Mir Torres <[EMAIL PROTECTED]>
> on Tue, 14 Oct 2008 17:13:01 +0200 writes:
AMT> Hello.
AMT> I need to know how can R compute AIC when I study a regression
The table function, which I was unaware of, works great. However, I still
don't see how to assign the values calculated with table to data1$NinYear
without using a loop.
Tom
Henrique Dallazuanna wrote:
>
> Try this:
>
> with(data1, table(ID, Year))
>
> On Tue, Oct 14, 2008 at 10:58 AM, To
charter.net> writes:
>
> The problem is that I am interested in all the warnings but after they have
been reported using the
> 'warnings()' command I am no longer interested in those warnings but similar
warnings (of the same type)
> may occur with subsequent invocations and I am interested i
Hello.
I need to know how can R compute AIC when I study a regression model?
For example, if I use these data:
growth tannin
1 12 0
2 10 1
3 8 2
4 11 3
5 6 4
6 7 5
7 2 6
8 3 7
9 3 8
and I do
model <- lm (grow
> This seems to work but is horribly slow (some files I am working with have
> over 500,000 lines). Can anyone suggest a faster way of doing this, perhaps
> a way that does not use a for loop? Thanks.
If the table solutions don't work or take forever with your real data, have a
look into the wiki:
The problem is that I am interested in all the warnings but after they have
been reported using the 'warnings()' command I am no longer interested in those
warnings but similar warnings (of the same type) may occur with subsequent
invocations and I am interested in these "new" warnings not the o
Hi everyone,
I have a question about sampling. I have a data set which includes 25
different variables named; symptom1, symptom2,.,symptom25(25
columns).Each variable(symptom) has 9 patients (9 columns).
I need to use random sampling to make, 5 different samples from my data.
i.e. using all
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> project.org] On Behalf Of saggak
> Sent: Tuesday, October 14, 2008 4:20 AM
> To: justin bem
> Cc: r-help@r-project.org
> Subject: Re: [R] Re : (a) Credit Scoring models and (b) aceesing
> earlier emails
>
> Thanks Mr
On Tue, 14 Oct 2008, Mizanur Khondoker wrote:
Dear list,
Most high performance computing clusters/grid engines have some
restrictions on how long a job can be run in batch mode.
The cluster I am using has maximum of 48 hours limit, but my job would take
far more than that.
I know that it is p
Why don't you just suppress the warning messages you are not interested in?
?suppressWarnings
Hadley
On Tue, Oct 14, 2008 at 7:59 AM, <[EMAIL PROTECTED]> wrote:
> I have a function that could possibly generate warnings in a loop. What I
> want is to report the warnings (warnings()) then clear
Dear list,
Most high performance computing clusters/grid engines have some
restrictions on how long a job can be run in batch mode.
The cluster I am using has maximum of 48 hours limit, but my job would take
far more than that.
I know that it is possible to checkpoint jobs without modifying the
try the following:
out <- tapply(data1$ID, list(data1$ID, data1$Year), length)
out[is.na(out)] <- 0
out
I hope it helps.
Best,
Dimitris
Tom La Bone wrote:
Assume that I have the dataframe "data1", which is listed at the end of this
message. I want count the number of lines that each person
Try this:
with(data1, table(ID, Year))
On Tue, Oct 14, 2008 at 10:58 AM, Tom La Bone <[EMAIL PROTECTED]>wrote:
>
> Assume that I have the dataframe "data1", which is listed at the end of
> this
> message. I want count the number of lines that each person has for each
> year. For example, the per
table(data1$ID, data1$Year)
See ?table and other functions referenced in ?table.
Tom La Bone wrote:
Assume that I have the dataframe "data1", which is listed at the end of this
message. I want count the number of lines that each person has for each
year. For example, the person with ID=213 ha
Assume that I have the dataframe "data1", which is listed at the end of this
message. I want count the number of lines that each person has for each
year. For example, the person with ID=213 has 15 entries (NinYear) for 1953.
The following bit of code calculates NinYear:
for (i in 1:length(data1$
--- On Mon, 10/13/08, David Scott <[EMAIL PROTECTED]> wrote:
> From: David Scott <[EMAIL PROTECTED]>
> Subject: Re: [R] Variable shortlisting for the logistic regression
> To: "Frank E Harrell Jr" <[EMAIL PROTECTED]>
> Cc: r-help@r-project.org
> Received: Monday, October 13, 2008, 6:32 PM
> On Mo
Choosing the model with minimum AIC is just one consideration that
might be used. If you look at books such as McQuarrie and Tsai
(1998), Regression and Time Series Model Selection, World Scientific,
you will find about 450 pages dealing mainly with the use of this and
similar criteria to select a
John,
Thank you for those references.
Cheers,
Michael
On Tue, Oct 14, 2008 at 8:27 AM, John C Frain <[EMAIL PROTECTED]> wrote:
> Choosing the model with minimum AIC is just one consideration that
> might be used. If you look at books such as McQuarrie and Tsai
> (1998), Regression and Time Seri
You might try the fgarch package
Best Regards
John frain
2008/10/14 Vasileios Ismyrlis <[EMAIL PROTECTED]>:
> I want to fit a model of Ar(1) mean equation and Arch(1) variance
> equation(the equations are to the attached file) to 1000 observations.
> How can I do that?
> Vasileios Ismyrlis
>
> _
I would point out that the OP does not say that R is a part of the course, only
that they are using it to do some work. R may be a tool of choice not a
requirement and it is quite possible that the instructor does not know anything
about R.
--- On Tue, 10/14/08, Daniel Malter <[EMAIL PROTE
--- On Tue, 10/14/08, shradha mukherjee <[EMAIL PROTECTED]> wrote:
> From: shradha mukherjee <[EMAIL PROTECTED]>
> Subject: [R] problem using R
> To: r-help@r-project.org
> Received: Tuesday, October 14, 2008, 4:37 AM
> Hi ,
> I am having serious trouble doing this homework. I am using
> R for
Hi, get any of the manuals that are an introduction to R, e.g. from CRAN,
which describe the steps of how to start in R. You can google-search them
too. You will find what it takes to do that in there.
Hints:
1. R is object oriented. That is, your read.table command creates an object
Wdbc. It do
I have a function that could possibly generate warnings in a loop. What I want
is to report the warnings (warnings()) then clear out the last.warning object
so that if there is a call without warnings I will not see the previous warning.
Some example code:
generatewarning <- function(s)
{
I want to fit a model of Ar(1) mean equation and Arch(1) variance
equation(the equations are to the attached file) to 1000 observations.
How can I do that?
Vasileios Ismyrlis
__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-hel
On 10/14/2008 4:37 AM, shradha mukherjee wrote:
Hi ,
I am having serious trouble doing this homework. I am using R for doing the homework.
If this is homework, you should ask your instructor or teaching
assistant for help. There are at least two reasons for this:
- They're the only ones w
Hello
please note that the code at
https://stat.ethz.ch/pipermail/r-help/2006-August/110892.html
to compute indices of skewness and kurtosis for the skew-t
distribution is not correct.
It has been kindly pointed out that i made some error in this code,
which was a bit too quickly copied from t
Hi ,
I am having serious trouble doing this homework. I am using R for doing the
homework. I am having the following specific problem:
a) when I input the data using the command > Wbdc <-read.table("wdbc.txt") I
do not see the data.
b) When I want to run histogram using command > hist(area) I ge
Hi,
I have a huge table, approximatly 16,000 x 12,000, full of various integers.
Its a tab delimited file approx 400mb in size. R takes ages to read it in
(read.delim), and store it as a variable. My aim is to transpose the table,
however I am hesistate to do it incase it crashes my local server,
Dear Jorge
Thanks a lot.
- Original Message
From: Jorge Ivan Velez <[EMAIL PROTECTED]>
To: Muhammad Azam <[EMAIL PROTECTED]>
Cc: R mailing list
Sent: Tuesday, October 14, 2008 1:52:15 PM
Subject: Re: [R] request: How to ignore columns having zero sums
Dear Muhammad,
Try also
x <-
On Tue, Oct 14, 2008 at 6:46 AM, stephen sefick <[EMAIL PROTECTED]> wrote:
> r <-(structure(list(TSS = c(2.8, 8.4, 11, 1.3, 4.2, 2, 3.4, 14, 8.2,
> 3.1, 1.4, 0.9, 0.5, 6.1, 9.2, 0.6, 1, 11, 2.4, 1.2, 1.3, 1.3,
> 0, 1.8, 8, 11, 11, 8.5, 8.5, 1.8, 13, 4.4, 1.4, 2.1, 0.5, 25,
> 25, 9.3, 6.1, 1.6, 1.5,
Gabor Grothendieck wrote:
On Mon, Oct 13, 2008 at 11:47 PM, Frank E Harrell Jr
<[EMAIL PROTECTED]> wrote:
Gabor Grothendieck wrote:
On Mon, Oct 13, 2008 at 11:21 PM, Frank E Harrell Jr
<[EMAIL PROTECTED]> wrote:
[EMAIL PROTECTED] wrote:
I recall a concept of Snout: sensitivity that is high e
Dear Muhammad,
Try also
x <- c(1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,0,0,0,0,0,0,0,0);
x1 <- array(x, dim=c(4,6))
x1[,apply(x1,2,function(x) !all(x==0))]
HTH,
Jorge
On Tue, Oct 14, 2008 at 4:02 AM, Muhammad Azam <[EMAIL PROTECTED]> wrote:
> Dear friends
> I have an array consist of r-rows and c-col
r <-(structure(list(TSS = c(2.8, 8.4, 11, 1.3, 4.2, 2, 3.4, 14, 8.2,
3.1, 1.4, 0.9, 0.5, 6.1, 9.2, 0.6, 1, 11, 2.4, 1.2, 1.3, 1.3,
0, 1.8, 8, 11, 11, 8.5, 8.5, 1.8, 13, 4.4, 1.4, 2.1, 0.5, 25,
25, 9.3, 6.1, 1.6, 1.5, 19, 19, 24, 9.6, 1.8, 1.4, 1), GPP = c(1.213695235,
3.817313822, 1.267930498, 10.4
1 - 100 of 115 matches
Mail list logo