includes the outliners there. I saw
it on a poster once. I can't find the command though. Does anyone know it?
Best regards,
Tagmarie
--
View this message in context:
http://r.789695.n4.nabble.com/Boxplot-Plot-outliners-in-a-different-window-tp4712869.html
Sent from the R help mailing
Even though I work with R since a year or so I still struggle with simple
problems. I hope someone can help me with this. Been trying for days and am
a little frustrated now.
I have a data frame somewhat like the one bellow:
dattrial<-data.frame(a=c(1,NA,rnorm(4,10)), Week=c(3,3,3,4,4,4))
I wan
Thank you Michael, that worked perfectly!
Now I wonder, if it is possible to break my data further apart and put it
together again.
Assume I include a column for an ID in the data frame like this:
dattrial2<-data.frame(a=c(1,NA,NA,NA,2,3), Week=c(3,3,3,4,4,4),
AnimalID=c("Ernie","Bert", "Ernie
ave a great day,
Tagmarie
--
View this message in context:
http://r.789695.n4.nabble.com/count-NAs-per-week-tp4643351p4643486.html
Sent from the R help mailing list archive at Nabble.com.
__
R-help@r-project.org mailing list
https://stat.ethz.ch/ma
Hello,
Once again I feel so dumb. Can anyone help me?
I have a data frame somewhat like that:
myframe <- data.frame (ID=c("Ernie", "Ernie", "Bert", "Bert"),
Timestamp=c("24.09.2012 09:00", "25.09.2012 09:00", "24.09.2012 10:00",
"25.09.2012 10:00"), Hunger=c("1","1","2","2") )
myframestime <- a
Thanks to all of you.
The three advices helped me a lot - solved my problem and thank you Sarah
for the hint with rseek.org. Didn't know that one.
Have a great day,
Tagmarie
--
View this message in context:
http://r.789695.n4.nabble.com/add-a-data-frame-to-my-data-frame-tp4644122p46
for Ernie I do have different data for 24.09.2012 9:00. Now I
would like to average the Hunger and Temp value for this timestamp to get a
data frame without duplicated Times and the respective average Temp and
Hunger.
I tried something like
Meanframe<- by(myframe[, 3:4], duplicated(myframe$ID,
Thank you!
Am 26.09.2012 13:31, schrieb Jim Lemon [via R]:
> On 09/26/2012 08:53 PM, Tagmarie wrote:
>
> > Hello,
> > I tried for about three hours now to solve this problem but I can't
> figure
> > it out. I am sure someone knows how do it. At least I hope
Hello,
I have a data frame somewhat like that:
myframe <- data.frame (ID=c("Ernie", "Ernie", "Ernie", "Bert", "Bert",
"Bert"), Timestamp=c("24.09.2012 09:00", "24.09.2012 10:00", "24.09.2012
11:00"), Hunger=c(1,1,1,2,2,1) )
myframestime <- as.POSIXct (strptime(as.character(myframe$Timestamp),
"%
Hi dear three helpers,
Thanks a lot! Your solutions worked great. Again I learned a lot.
Tagmarie
Am 25.10.2012 18:36, schrieb Felipe Carrillo:
> Another option using plyr,
> library(plyr)
> myframe <- data.frame (ID=c("Ernie", "Ernie", "Ernie&quo
I calculated a homerange using the adehabitatHR-packaged, "plotted" it and
now I want to export the image (image with the contourlines) to google maps.
I just don't get how to do that.
Here is something like my image:
library(adehabitatHR)
kudl <- kernelUD(puechabonsp$relocs[, 1], h = "LSC
I have a data frame somewhat like this:
myframe <- data.frame (ID=c(2,3,4,5), Hunger =c(415,452,550,318 ))
myframe
Now I would like to add a column to the right which summarizes the values
for Hunger somewhat to reduce the number of values: If the values for Hunger
are between
300-400 I would l
the sum of "Hunger" for each day. In the end I want
something which looks like the following dataframe:
myoutcome <- data.frame(Timestamp=c("24.09.2012", "25.09.2012"),
sumHunger=c(3, 5))
Does anyone know how to do that?
That would be very helpful and to all peop
Hello,
I tried to construct my very first loop today and completly failed :-(
Maybe someone can help me?
I have a dataframe somewhat like this one:
myframe <- data.frame (Timestamp=c("24.09.2012 09:00", "24.09.2012 10:00",
"24.09.2012 11:00",
"25.09.2012 09:0
Ok, sorry, I thought the more complex details might be confusing and nobody
might answer.
Here is something which looks more like my real dataframe and also what I
want to do with it:
That's my data frame:
myframe <- data.frame (Timestamp=c("24.09.2012 09:00", "24.09.2012 10:00",
"24.09.2012 1
Sorry again,
project is part of the rgdal package.
Tagmarie
--
View this message in context:
http://r.789695.n4.nabble.com/loop-with-date-tp4650961p4651005.html
Sent from the R help mailing list archive at Nabble.com.
__
R-help@r-project.org
I want to do now is to calculate the homerange for Animal "Ernie" for
two consecutive days.
# I.e. I want a home range for the timespan 24. to 25. Septemberand the
# home range for the timespan 25. to 26. September. Each day is included
several times in the calculations.
# It would be
Hello everyone,
I have a data frame somewhat like this one:
myframe <- data.frame (Timestamp=c( "24.09.2012 06:00", "24.09.2012 07:00",
"24.09.2012 08:00",
"24.09.2012 09:00", "24.09.2012 10:00",
"24.09.2012 11:00",
"24.0
Now I played around in Excel for the last two hours or so and solved my
problem there. I know it is not really liked here but it worked.
So I do not really need your help on this problem. If anyone knows on how to
do it anyway I'd be very happy though!!!
Nobody taught me more about R than this m
Hello,
I'm quite new to R and still spend hours trying to figure out single things
so I hope nobody rolls his eyes over my question.
I have a data set over time and converted it to the POSTIXct format. I added
a column in the data set for the week and the month.
I try to get a plot which shows
Thank you Arun for your time!
Your idea is maybe only the first step to what I want but it was
nevertheless a new tool for me and interessing to learn.
I added a "week"-column to your data set:
dattrial<-data.frame(a=c(1,NA,rnorm(4,10)), Week=c(3,3,3,4,4,4))
I am looking for a way to count the
Great! That works!
Thank you Rui!
I would have spent days (which I don't have left before handing my report
in) getting there by myself!
Have a great rest-weekend!
--
View this message in context:
http://r.789695.n4.nabble.com/count-data-without-NA-in-certain-time-intervals-and-plot-it-tp46336
22 matches
Mail list logo