Displaying 17 results from an estimated 17 matches for "quart".
Did you mean:
uart
2010 Apr 09
2
How to use tapply for quantile
I am trying to calculate quantiles of a data frame column split up by
two factors:
# Calculate the quantiles
quarts = tapply(gdf$tt, list(gdf$Runway, gdf$OnHour), FUN=quantile,
na.rm = TRUE)
This does not work:
> quarts
04L 04R 15R 22L 22R 27 32
33L 33R
0 NULL Numeric,5 NULL Numeric,5 NULL Numeric,5 NULL
Numeric,5 NULL
1 NULL Numeric,5 NUL...
2008 Nov 10
1
Preparing data for display
...o learn how to do it in more elegant,
more R-like code.
Consider for example the following, which graphs the 25th, 50th, and
75th percentile values per day of data$x
perc <- function(code,data)
{ # select the part of the data with factor value
slice <- data[data$factor == code,];
# calc quartiles for each day
quarts <- tapply(slice$x,
slice$day,
function(x) quantile(x,c(.25,.50,.75)));
# returns a tagged list of tagged vectors
# list("2008-10-07" = c("25%" = .05,...
2006 Apr 05
2
chan_modem_i4l delay
...risk 1.0.7-BRIstuffed-0.2.0-RC7k on a debian sarge with a kernel 2.4.27 on a P4 3Gig with 1Gig
of memory
When i use i4l on any call, the called party ( on the telco operator side ) ear me with a delay of 1 sec after 1
minutes , 2 sec after 3 minutes and so on...
After a quart hour, the delay make the conversation just impossible !!!
I use a tdm400P to connect my analogs phones and all is working very well between two zap stations.
I have tried different Passive isdn card ( no hfc so I can't use zaphfc driver)
Anybody...
2008 Nov 11
2
Manipulation in timeSeries object:how to use the function "applySeries" by daily?
...e). I know that the s-plus FinMerics has the
function aggregateSeries function that can be apply to daily data:
aggregateSeries(x, Fun, by="daily"), but the counterpart function in
R:applySeries can not be apply to daily data. This function has the argument
by=c("monthly", "quartly").
Can we find some way to mimic the aggregateSeries function in s-plus?
Thanks in advance
Ted
--
View this message in context: http://www.nabble.com/Manipulation-in-timeSeries-object%3Ahow-to-use-the-function-%22applySeries%22-by-daily--tp20432658p20432658.html
Sent from the R help mail...
2011 May 19
1
Converting Variable Name into String
Hello,
I would like to create lagged and delta variables from a set of variables
and then add them to a dataframe
Suppose that GDPPcSa is a variable. I would like to be able to do this
QuarterlyData$D1GdpPcSa = diff(GDPPcSa , 1)
in an automated fashion so that I loop over Quartely data to compute the
first difference of its variables and add them to the dataframe.
.It would be great to get a way to create the string "D1GdpPcSa" knowing
that the name of the var is GdpPcSa....
2001 Dec 17
1
sftp-server questions
...has rights to use the
sftp-server subsytem when this has been set up in the sshd server?
I don't know if I could control which users are authorized to use the
sftp-server, could I?
Is there any official patch that allows sftp-sessions 'chroot'ed?
Thanks in advance.
--
Best regards,
quart mailto:quart at wanadoo.es
2008 Nov 08
4
Plotting Standard Regression Fit-Am I wrong or a bug?
I'm trying to plot a time series (quarterly observations, seasonal effect,
T=56),regression line and predicted point on the same plot.
I'm using following commands:
> plot(qdts,xlim=c(1982,1997))
> lines(fitted(m2)~time,data=qd,col="red")
> points(predict(m2,newdata=nqd),col="blue")
where:
qdts<-ts(qd...
2019 Oct 04
1
CentOS 8 network-scripts
...#39;t run a fleet of 1000 Model TT trucks made in 1923 as well as you
could 1000 1933 trucks. You ended up losing some of the knowledge of
hand-crafting your own gears but you got the ability to go faster,
carry heavier loads and better gas mileage without working as hard at
getting a mile out of a quart.
The transmissions of the 1933 were considered 'automatic' compared to
some 1912 vehicles.. even if you had a clutch because you no longer
had to get out and turn something to make it go in reverse. The
'truly' automatic transmissions of the 1950's were horrible and it
wasn'...
2008 Feb 21
1
anova power calculations
I sent a message a couple days ago about doing calculations for power of the
ANOVA. Several people got back to me very quickly which I really
appreciated.
I'm working now on a similar problem, but instead of a balanced ANOVA, I
have an unbalanced one. The first part of the question was:
You assume that the within-population standard deviations all equal 9. You
set the Type 1 error rate at รก
2006 Apr 06
0
chan_modem_i4l delay again..
Hi,
I currently use Asterisk 1.0.7-BRIstuffed-0.2.0-RC7k on a debian sarge with a kernel 2.4.27 on a P4 3Gig with 1Gig of memory
When i use i4l on any call, the called party ( on the telco operator side ) ear me with a delay of 1 sec after 1 minutes , 2
sec after 3 minutes and so on...
After a quart hour, the delay make the conversation just impossible !!!
I use a tdm400P to connect my analogs phones and all is working very well between two zap stations.
I have tried different Passive isdn card ( no hfc so I can't use zaphfc driver)
Anybody have an idea to fix this problem ?
BTW, I hav...
2010 Aug 25
4
New Wine user who need helps loading a program(Wbfs Manager)
Just download Wbfs Manager 3.0 , trying to load it and it doesnt work , at first the icon wasnt right , add to change the permission details , now it looks like its trying to load but it isnt . Its the first program that im trying to load with wine so maybe im missing something or its because of the program ...
http://wbfsmanager.codeplex.com/
If someone knows how to load it , some help would be
2008 Mar 04
2
package for repeated measures ANOVA with various link functions
R 2.6.0
Windows XP
At the risk of raising the ire of the R gods . . .
I am looking for a package that will allow me to perform a poisson, quasipoisson, or negative binomial regression with adjustment for repeated measures. I have looked at glm, it does not appear to allow repeated measures. Although I can't get any help for lme or lme4 I remember that those packages perform repeated measures
2012 Oct 17
2
loop of quartile groups
Greetings R users,
My goal is to generate quartile groups of each variable in my data set. I
would like each experiment to have its designated group added as a
subsequent column. I can accomplish this individually with the following
code:
brks <- with(data_variables,
cut2(var2, g=4))
#I don't want the actual numbers, I n...
2008 Jun 10
7
[Trivia question] What engine is it on DTrace T-shirt ?
Hi,
This is not a DTrace technical question (so, please don''t flame me for
it) :)
This is regarding the DTrace (un)conference TShirt.
I am curious to know what engine is it. Could not figure it out.
Thanks and regards,
Sanjeev.
--
Solaris Revenue Products Engineering,
India Engineering Center,
Sun Microsystems India Pvt Ltd.
Tel: x27521 +91 80 669 27521
2019 Oct 04
5
CentOS 8 network-scripts
Once upon a time, Ljubomir Ljubojevic <centos at plnet.rs> said:
> Bridge for VM's is main reason I hate NM. I now mess with both NM and
> br0 controled by network because I use Windows VM on my laptop. As soon
> as you disconnect LAN cable your eth and bridge connection are gone and
> stupid KVM can not recover and reconnect to newly activated bridge when
> you return LAN
2010 Oct 06
16
Dealing with an EAV database
I''ve inherited an EAV database and there''s really no option to remodel
it. Data is stored as key_name, key_value pairs
Trying to return a meaningful, unified recordset is far too complex to
be efficient.
I''ve decided to make use of the MySQL GROUP_CONCAT, and CONCAT_WS
functions to return a fast query result, with the consolidated fields
as one string.
The final data is
2007 May 22
5
Reducing the size of pdf graphics files produced with R
Hi,
Without trying to print 1000000 points (see <http://
finzi.psych.upenn.edu/R/Rhelp02a/archive/42105.html>), I often print
maps for which I do not want to loose too much of coastline detail,
and/or plots with 1000-5000 points (yes, some are on top of each
other, but using transparency (i.e. rgb colors with alpha
information) this actually comes through as useful information.