search for: mumeric

Displaying 5 results from an estimated 5 matches for "mumeric".

Did you mean: numeric
2006 Jan 16
1
gplots
...l = "blue", barwidth = 1.5, barcol = "red", ci.label = FALSE, xlab="Onset", pch = 15, par(las =2)). Only one snag I want to order the X axis by the way it is sorted in the data not by the n size group categories. The data are sorted by the Dodefordpy categories - not mumeric - confering to the way I'd like the x axis. Hence how do I order the x axis not by n but by the way the file is ordered. Thanks S > version _ platform i386-pc-mingw32 arch i386 os mingw32 system i386, mingw32 status...
2017 Jun 01
1
Data import R: some explanatory variables not showing up correctly in summary
...a column: trim <- function (s) { s <- as.character(s) s <- sub(pattern = "^[[:blank:]]+", replacement = "", x = s) s <- sub(pattern = "[[:blank:]]+$", replacement = "", x = s) s } You could restrict it to non-mumeric columns with: my_dfrm[ !sapply(my_dfrm, is.numeric) ] <- lapply( my_dfrm[ !sapply(my_dfrm, is.numeric) ], trim) It would have the side-effect, (desirable in my opinion but opinions do vary on this matter), of converting any factor columns to character-class. > > Bill Dunlap > TIBC...
2017 Jun 01
0
Data import R: some explanatory variables not showing up correctly in summary
Check for leading or trailing spaces in the strings in your data. dput(dataset) would show them. Bill Dunlap TIBCO Software wdunlap tibco.com On Thu, Jun 1, 2017 at 8:49 AM, Ulrik Stervbo <ulrik.stervbo at gmail.com> wrote: > Hi Tara, > > It seems that you categorise and count for each category. Could it be that > the method you use puts everything that doesn't match the
2011 May 13
6
Powerful PC to run R
Dear all, I'm currently running R on my laptop -- a Lenovo Thinkpad X201 (Intel Core i7 CPU, M620, 2.67 Ghz, 8 GB RAM). The problem is that some of my calculations run for several days sometimes even weeks (mainly simulations over a large parameter space). Depending on the external conditions, my laptop sometimes shuts down due to overheating. I'm now thinking about buying a more
2017 Jun 01
4
Data import R: some explanatory variables not showing up correctly in summary
Hi Tara, It seems that you categorise and count for each category. Could it be that the method you use puts everything that doesn't match the predefined categories in Other? I'm only guessing because without a minimal reproducible example it's difficult to do anything else. Best wishes Ulrik Rui Barradas <ruipbarradas at sapo.pt> schrieb am Do., 1. Juni 2017, 17:30: >