Re: [R] Newbie wants to compare 2 huge RDSs row by row.

2018-01-27 Thread Marsh Hardy ARA/RISK
Cool, looks like that'd do it, almost as if converting an entire record to a character string and comparing strings. -- M. B. Hardy, statistician work: Applied Research Associates, S. E. Div. 8537 Six Forks Rd., # 6000 / Raleigh, NC 27615-2963 (919) 582-3329, fax: 582-3301 home: 10

Re: [R] Portable R in zip file for Windows

2018-01-27 Thread John C Frain
When you unzip that file you have a rstudio.exe file which you appear to be able to run. As far as I know rstudio will not run unless you have a version of R already installed. The R FAQ for windows explains how to install R if you have restricted permissions and do not want or are not allowed to

Re: [R] Newbie wants to compare 2 huge RDSs row by row.

2018-01-27 Thread William Dunlap via R-help
If your two objects have class "data.frame" (look at class(objectName)) and they both have the same number of columns and the same order of columns and the column types match closely enough (use all.equal(x1, x2) for that), then you can try which( rowSums( x1 != x2 ) > 0) E.g., > x1 <- data.fr

Re: [R] Newbie wants to compare 2 huge RDSs row by row.

2018-01-27 Thread David Winsemius
> On Jan 27, 2018, at 1:18 PM, Marsh Hardy ARA/RISK wrote: > > Hi Guys, I apologize for my rank & utter newness at R. > > I used summary() and found about 95 variables, both character and numeric, > all with "Length:368842" I assume is the # of records. > > I'd like to know the record number

Re: [R] Newbie wants to compare 2 huge RDSs row by row.

2018-01-27 Thread Marsh Hardy ARA/RISK
Hi Guys, I apologize for my rank & utter newness at R. I used summary() and found about 95 variables, both character and numeric, all with "Length:368842" I assume is the # of records. I'd like to know the record number (row #?) of any record where the data doesn't match in the 2 files of what

Re: [R] Fortune candidate

2018-01-27 Thread Rich Shepard
On Sat, 27 Jan 2018, David Winsemius wrote: John (to a serial querulant): ...but with such a sweeping lack of information from you, don't congratulate yourself if you get a helpful answer. It wasn't your fault. Looks like what H.L. Menken or P.G. Wodehouse would have written. Rich ___

[R] Fortune candidate

2018-01-27 Thread David Winsemius
John (to a serial querulant): ...but with such a sweeping lack of information from you, don't congratulate yourself if you get a helpful answer. It wasn't your fault. David Winsemius Alameda, CA, USA 'Any technology distinguishable from magic is insufficiently advanced.' -Gehm's Corol

[R] Searching R Packages

2018-01-27 Thread Spencer Graves
Hello, All: Might you have time to review the article I recently posted to Wikiversity on "Searching R Packages" (https://en.wikiversity.org/wiki/Searching_R_Packages)? Please edit this yourself or propose changes in the associated "Discuss" page or in an email to this list or to me.

Re: [R] Help in Plotting in "fArma" Package

2018-01-27 Thread Moyukh Laha
Thank you very much. Will try this. On Fri, Jan 26, 2018 at 11:34 PM, David Winsemius wrote: > > > On Jan 26, 2018, at 9:51 AM, MacQueen, Don wrote: > > > > What Dave said, plus here's a hint. Try this example (which uses base > graphics): > > > > plot(1:5) > > plot(1:5, cex.lab=2) > > > > Then

Re: [R] Newbie wants to compare 2 huge RDSs row by row.

2018-01-27 Thread Ulrik Stervbo
Also, it will be easier to provide helpful information if you'd describe what in your data you want to compare and what you hope to get out of the comparison. Best wishes, Ulrik Eric Berger schrieb am Sa., 27. Jan. 2018, 08:18: > Hi Marsh, > An RDS is not a data structure such as a data.frame.