Displaying 7 results from an estimated 7 matches for "q99".
Did you mean:
99
2010 Nov 17
3
Fatal Error R
....
First, I'm thankful about your wonderful project.
However, I have serious worries about the reliability of R. I found
the next bug which I consider important because in my job everytime We
work with datanames like next. Please see below:
b=data.frame(matrix(1:9,ncol=3))
names(b)=c("q99","r88","s77")
>b
q99 r88 s77
1 1 4 7
2 2 5 8
3 3 6 9
> b$q9
[1] 1 2 3
Please note that the variable q9 does not exist in the dataframe, but
you can see that R
show q9 (as q99).
Thank in advanced
Cordially
Jos? Fernando Zea Castro
Statistici...
2010 Aug 01
3
remove extreme values or winsorize – loop - dataframe
...lit my sample by
industry and year, for each industry and year I calculate
the 10% and 90% quantiles, then I create a X2 variable
like this:
industry1<-subset(data,data$industry==1)
ind1year1999<-subset(industry1,industry1$year==1999)
q1<-quantile(ind1year1999$X1,probs=0.1,na.rm=TRUE)
q99<-quantile(ind1year1999$X1,probs=0.90,na.rm=TRUE)
ind1year1999winsorized<-transform(ind1year1999,X2=ifelse(X1<q1,q1,ifelse(X1>q99,q99,X1)))
ind1year2000<-subset(industry1,industry1$year==2000)
q1<-quantile(ind1year2000$X1,probs=0.1,na.rm=TRUE)
q99<-quantile(ind1year2000$X1,prob...
2011 Feb 25
2
Variable names AS variable names?
How can I dynamically use a variable as the name for another variable?
I realize this sounds cryptic, so an example is best:
#Start with an array of "codes"
codes <- c("a1", "b24", "q99")
#Each code has a corresponding matrix (could be vector)
a1 <- matrix(rnorm(100), nrow=10)
b24 <- matrix(rnorm(100), nrow=10)
q99 <- matrix(rnorm(100), nrow=10)
#Now, I want to loop through all the codes and do something with each matrix
for(code in codes){
#here is where I'...
2013 Apr 03
5
Can package plyr also calculate the mode?
...stats I needed for a by grouping in a data frame using:
all1 <- ddply(all,"ACT_NAME", summarise, mean=mean(COUNTS), sd=sd(COUNTS),
q25=quantile(COUNTS,.25),median=quantile(COUNTS,.50),
q75=quantile(COUNTS,.75),
q90=quantile(COUNTS,.90), q95=quantile(COUNTS,.95),
q99=quantile(COUNTS,.99) )
So I got the mean, median std dev, quantiles etc.
IS there any way I can add the mode to the mixt. Thanks ahead for any
suggestions.
--
View this message in context: http://r.789695.n4.nabble.com/Can-package-plyr-also-calculate-the-mode-tp4663235.html
Sent from the R he...
2013 Sep 10
1
Error: BUG: Worker sent reply with id 393, expected 394
...ult): Error: BUG: Worker sent reply with id 31, expected 32
Sep 10 09:05:22 auth(default): Error: worker-server(q95 at t.com,10.12.80.3): Aborted: Worker is buggy
Sep 10 09:05:22 auth(default): Error: BUG: Worker sent reply with id 32, expected 33
Sep 10 09:05:22 auth(default): Error: worker-server(q99 at t.com,10.12.80.3): Aborted: Worker is buggy
Sep 10 09:05:22 auth(default): Error: BUG: Worker sent reply with id 29, expected 30
Sep 10 09:05:22 auth(default): Error: worker-server(q22 at t.com,10.12.80.3): Aborted: Worker is buggy
Sep 10 09:05:22 imap-login: Info: Internal login failure (auth f...
2001 Jun 21
0
Problem with Wine and Quicken 2000
That seems to stabilze a number of things in Quicken. I'm using Q99 and
it works MUCH better with a fixed desktop geometery smaller than the
screen resolution.
gerard patel wrote:
>
> For this problem (show owned popup infinite loop) try to use
> --desktop option.
>
> Gerard
2001 Jun 21
1
Quicken 99 internet options
Has anyone had any success in getting Quicken's internet stuff to run?
Q99 is installed in a W98SE partition accessed from RH7.1 using the wine
build supplied with the distribution.
The internet configuration will not work from inside Linux. I can set
it up as direct connect from W98 but it won't hook up from inside Linux.
Is this even possible to do or is it one o...