Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

8 results for “from:Methekar, Pushpa (GE Transportation, Non-GE)”

find and remove outlier
Methekar, Pushpa (GE Transportation, Non-GE) · Jan 5, 2015 · r-help

Hi, this is my function to find rstudent of model which will give me outlier But I wonder if I could find out the exact no. of outlier in data set. Like outlierTest() does from car package . rm.outliers = function...

global environment
Methekar, Pushpa (GE Transportation, Non-GE) · Jan 12, 2015 · r-help

Sorry it was my mistake. I tried to do like this rm.outliers = function(model,xsys) { rst = rstudent(model) outliers<<-vector("numeric",731) xsys<<-xsys for(i in 1:length(rst)) { if(rst[i]<=3 & rst[i]>=-3) #condition for...

global environment
Methekar, Pushpa (GE Transportation, Non-GE) · Jan 12, 2015 · r-help

Hi I am trying to make some changes in data frame and return it to function .this is my function rm.outliers = function(model,xsys) { rst = rstudent(model) outliers<<-vector("numeric",10) xsys<<-xsys for(i in 1:length(rst...

fuction to find outlier
Methekar, Pushpa (GE Transportation, Non-GE) · Dec 29, 2014 · r-help

Hi all, I am stuck on outlier, while doing regression analysis. I done up to modelling ,I got lm model for each y and x. Now I want to find out outlier in that models. How do I find out...

remove outlier
Methekar, Pushpa (GE Transportation, Non-GE) · Jan 2, 2015 · r-help

Hi , I am working on a function . rm.outliers = function(dataset,model){ dataset$predicted = predict(model) dataset$stdres = rstudent(model) m = 1 for(i in 1:length(dataset$stdres)){ dataset$outlier_counter[i] = if(dataset$stdres[i] >= 3 | dataset$stdres...

How to calculate vif of each term of model in R?
Methekar, Pushpa (GE Transportation, Non-GE) · Apr 8, 2015 · r-help

I am beginner in R doing modelling in R, I loaded excel sheet in R, i have chosen x elements and y elements then fitted model for linear and second order regression. Now I have both models. I am bit...

covert entire dataset to numeric while persuing percentage values
Methekar, Pushpa (GE Transportation, Non-GE) · Feb 26, 2015 · r-help

Hi , I am little confused about how to covert entire dataset to numeric . As I read data like.. Xelements =read.csv(file. Choose(),header = T, stringsAsFactors=FALSE) str(xelements ) > str(xelements) 'data.frame': 731 obs. of 4 variables: $ Engine.Speed...

to create a fuction for removing outlier
Methekar, Pushpa (GE Transportation, Non-GE) · Dec 30, 2014 · r-help

Hi all, Thanks for your support. sorry for inconvenience cause due to lack of information. here is my all r- program . #### read in data raw=read.csv(file.choose(),header = T, stringsAsFactors=FALSE) str(raw) ####conversion from factor to numeric...

Can't find what you're looking for? Try searching with Google .