Tagged Questions

5
votes
5answers
550 views

R Language - Sorting data into ranges; averaging; ignore outliers

I am analyzing data from a wind turbine, normally this is the sort of thing I would do in excel but the quantity of data requires something heavy-duty. I have never used R before and so I am just ...
5
votes
4answers
6k views

How to use Outlier Tests in R Code

As part of my data analysis workflow, I want to test for outliers, and then do my furthur calculation with and without those outliers. I've found the outlier package, which has various tests, but ...
2
votes
3answers
92 views

R packages to look for misentered data

I'm dealing with a data set that has some obvious errors in the data (ie kid that's < 1yr old with a $50,000 credit card balance). I can't go thru line by line as set is >100k lines. Is there any ...
2
votes
2answers
923 views

R: How to remove outliers from a smoother in ggplot2?

I have the following data set that I am trying to plot with ggplot2, it is a time series of three experiments A1, B1 and C1 and each experiment had three replicates. I am trying to add a stat which ...
1
vote
2answers
286 views

R: outlier cleaning for each column in a dataframe by using quantiles 0.05 and 0.95

I am a R-novice. I want to do some outlier cleaning and over-all-scaling from 0 to 1 before putting the sample into a random forest. g<-c(1000,60,50,60,50,40,50,60,70,60,40,70,50,60,50,70,10) ...
0
votes
1answer
400 views

cooks distance plot with R

Does anybody know, how to grab the single cooks distance plot that you get from this code: treatment <- factor(rep(c(1, 2), c(43, 41)), levels = c(1, 2), labels = c("placebo","treated")) improved ...