Re: [R] R how to find outliers and zero mean columns?

2016-03-30 Thread Jordan Meyer
I strongly suggest checking out some R tutorials. Most of these tasks are basic data management that are likely covered in just about any tutorial. I'm afraid that this isn't the appropriate forum for such basics. On Mar 30, 2016 9:14 PM, "Norman Pat" wrote: > Hi team > > I am new to R so please

Re: [R] R / G GUI freezes saving plot

2016-03-19 Thread Jordan Meyer
Are there any particular types of plotting you are doing when it becomes unresponsive? If so, it would be helpful to see an example. On Fri, Mar 18, 2016 at 5:45 AM, Daniel Preciado wrote: > Randomly, whenever I try to save a plot, R becomes unresponsive and has to > be killed. This happens almo

Re: [R] How To Start R Studio After Installation

2016-03-19 Thread Jordan Meyer
Forgot to reply to list... On Mar 19, 2016 6:09 PM, "Jordan Meyer" wrote: > I'd you used a different administrator account on your (Windows) computer > during installation, you may have unintentionally installed it only for > that account. (For example, you used

Re: [R] Exporting Commands and Results

2016-03-19 Thread Jordan Meyer
You may want to try sink(filename, split=TRUE). If you have particularly lengthy commands that you wish to save, you can run your syntax file using source(filename, echo=TRUE, max.deparse.length=Inf) to keep R from truncating the commands. On Mar 19, 2016 10:59 AM, "Bert Gunter" wrote: > ?savehis

Re: [R] Best Regression Technique to Use

2016-03-14 Thread Jordan Meyer
That would be my recommendation. You can use glm() with the argument family = binomial(). - Jordan On Sun, Mar 13, 2016 at 6:42 PM, Ajay Andrews wrote: > I have a set of independent variables that are all BINARY, and my dependent > variable is also BINARY. Should I use the logistic regression f