Re: [R] sample mean, variance and SD

2012-11-10 Thread Jeff Newmiller
of my way to confirm whether it is homework... the instructor has internet access too. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics

Re: [R] Cropping a matrix by rows

2012-11-11 Thread Jeff Newmiller
I assiduously avoid automatically generating distinct objects, and recommend that you also do so. You have the data, and can refer to individual rows by index as you need them. --- Jeff Newmiller

Re: [R] R Premanently Occupy Server Memory

2012-11-11 Thread Jeff Newmiller
efficient methods, but preventing any runaway process from bringing the server to its knees is sysadmin work. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics

Re: [R] Cropping a matrix by rows

2012-11-12 Thread Jeff Newmiller
. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer

Re: [R] order in stacked barplot

2012-11-12 Thread Jeff Newmiller
from character to factor. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO

Re: [R] Discrete trait Ornstein–Uhlenbeck in R?

2012-11-13 Thread Jeff Newmiller
I don't know anything about your subject, but have you reviewed RSiteSearch(ornstein uhlenbeck) ? --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics

Re: [R] numbering observations: help please!

2012-11-13 Thread Jeff Newmiller
== unique(my.data$person)[i])] - seq (1:dim(tmp)[1]) } Dunno what tmp is... but try this: my.data$item.number - 1 my.data$item.number - ave( my.data$item.number, my.data$person, FUN=cumsum ) --- Jeff Newmiller

Re: [R] Importing Data for a two sample t-test

2012-11-15 Thread Jeff Newmiller
?subset --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO

Re: [R] Dealing with factors ???

2012-11-15 Thread Jeff Newmiller
. You can also fix it in R using gsub to replace commas with empty strings and as.numeric to convert to numeric form. There are examples of this in the mailing list archives. --- Jeff Newmiller

Re: [R] How to do an infinite sum in R

2012-11-16 Thread Jeff Newmiller
You would need an infinite amount of time and an infinite amount of numerical precision, all to arrive at the conclusion that the answer is infinite. Or you could take a short cut: ans - Inf --- Jeff Newmiller

Re: [R] Basic Stats question

2012-11-17 Thread Jeff Newmiller
statistician. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO

Re: [R] dealing with Date vars

2012-11-17 Thread Jeff Newmiller
Mmm... sorry, psychic powers not working today. http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example --- Jeff NewmillerThe . . Go Live

Re: [R] manipulating longitudinal data in r

2012-11-18 Thread Jeff Newmiller
Michael, this comment doesn't seem appropriate to the question, since the sample data is a ragged array that requires the addition of NAs to fit into a wide format. --- Jeff Newmiller

Re: [R] Closest fit data to a particular formula

2012-11-19 Thread Jeff Newmiller
Try using the lm function: ?lm --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] How to subset my data and at the same time keep the balance?

2012-11-19 Thread Jeff Newmiller
No. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO

Re: [R] Read Write permissions in current directory

2012-11-20 Thread Jeff Newmiller
. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/BatteriesO.O

Re: [R] Updating Tom Short's R Reference Card, contacting him?

2012-11-20 Thread Jeff Newmiller
is very similar, but you cannot use list operators $ and [[ on matrices (at least not to get the results you are suggesting). --- Jeff NewmillerThe . . Go Live... DCN:jdnew

Re: [R] Using if

2012-11-20 Thread Jeff Newmiller
?ifelse Quite distinct from if () {} else {}. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] error message in Linkcomm package

2012-11-22 Thread Jeff Newmiller
Your questions are all but unanswerable. Read the posting guide and http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example --- Jeff Newmiller

Re: [R] ggplot2 and the legend

2012-11-22 Thread Jeff Newmiller
. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/BatteriesO.O#. #.O

Re: [R] function call from another r file

2012-11-23 Thread Jeff Newmiller
It is straightforward to load function definitions into memory using the source() function. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics

Re: [R] Performing operations only on selected data

2012-11-24 Thread Jeff Newmiller
?ifelse --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO

Re: [R] Why do i get Error: unexpected input in A-lm(GandW ~ Authocracy, Data)

2012-11-25 Thread Jeff Newmiller
special-interest-group mailing list how to resolve your editor problem. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] Performing operations only on selected data

2012-11-25 Thread Jeff Newmiller
or at least not confuse others. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] Problem with cbind() and arguments

2012-11-25 Thread Jeff Newmiller
and provide commented, minimal, self-contained, reproducible code. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] Issue with using geocode

2012-11-26 Thread Jeff Newmiller
commented, minimal, self-contained, reproducible code. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] error of runing R in R 2.15.2 w/o graphes generated

2012-11-26 Thread Jeff Newmiller
. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/Batteries

Re: [R] Some questions about chron package..

2012-11-27 Thread Jeff Newmiller
://www.r-project.org/doc/bib/R-publications.html). Please read the posting guide, and post in plain text. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.us

Re: [R] Confidence intervals for estimates of all independent variables in WLS regression

2012-11-28 Thread Jeff Newmiller
?summary.lm --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO

Re: [R] error, R commends cannot show the expected output

2012-11-28 Thread Jeff Newmiller
suggestions. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO

Re: [R] How to subtract the counter i in for loop?

2012-11-29 Thread Jeff Newmiller
Use a while loop instead of a for loop. I don't think what you have coded makes any sense, but fighting the for loop over control of the indexing variable is a recipe for failure. --- Jeff Newmiller

Re: [R] Example metropolis hasting

2012-11-29 Thread Jeff Newmiller
At the R prompt, type RSiteSearch(metropolis Hastings) and catch your own fish. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics

Re: [R] Changing the base of geom_bar in ggplot

2012-11-30 Thread Jeff Newmiller
was, but that is the nature of percentages. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] r function definition

2012-12-03 Thread Jeff Newmiller
?source --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO

Re: [R] How can I unsubscrie to this R forumÂż?

2012-12-05 Thread Jeff Newmiller
Follow the link in the footer of any message from the list to the web page that lets you modify your list subscription. --- Jeff NewmillerThe . . Go Live... DCN:jdnew

Re: [R] function to filter identical data.fames using less than () and greater than ()

2012-12-06 Thread Jeff Newmiller
You have not indicated why the subset function is insufficient for your needs... --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics

Re: [R] Incorrect DST time changes in DateTimeClasses

2012-12-06 Thread Jeff Newmiller
What OS are you using? It makes a difference. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] What is print print print ?

2012-12-06 Thread Jeff Newmiller
to the read.table function and use string operations to get rid of the brackets before converting to numeric. Factor variable can be a blessing, but seem more of a curse if you don't understand them. --- Jeff Newmiller

Re: [R] R --no-readline ?, was: history and readline, Mac OSX

2012-12-06 Thread Jeff Newmiller
This is off topic here. You should post on the ESS help list. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] function to filter identical data.fames using less than () and greater than ()

2012-12-06 Thread Jeff Newmiller
? --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer

Re: [R] Fuction Error

2012-12-06 Thread Jeff Newmiller
expressions. Alternately, you can learn RE syntax and escape the carat symbol so it is not interpreted specially. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.us

Re: [R] Incorrect DST time changes in DateTimeClasses

2012-12-06 Thread Jeff Newmiller
(2012-06-22) $nickname [1] Roasted Marshmallows On 7/12/2012, at 04:29 , Uwe Ligges lig...@statistik.tu-dortmund.de wrote: On 06.12.2012 15:54, Jeff Newmiller wrote: What OS are you using? It makes a difference. ... and R version. Uwe Ligges

Re: [R] Best way to coerce numerical data to a predetermined histogram bin?

2012-12-06 Thread Jeff Newmiller
?cut --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO

Re: [R] defmacro and bwplot incompatibilities?

2012-12-09 Thread Jeff Newmiller
--- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/BatteriesO.O

Re: [R] unrelated to R but possibly interesting

2012-12-09 Thread Jeff Newmiller
Yes, I thought it was good, but for a book on graphics the coin problem was noticeably lacking in clarity. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.us

Re: [R] Making fifo work (Linux)

2012-12-09 Thread Jeff Newmiller
. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/Batteries

Re: [R] Creating an R package in windows- where to put images?

2012-12-09 Thread Jeff Newmiller
http://cran.r-project.org/doc/manuals/r-release/R-exts.html#Data-in-packages Don't get stuck on your idea that the file is a gif... once you load it into memory it is an R object. --- Jeff Newmiller

Re: [R] Removing named objects using rm(..)

2012-12-10 Thread Jeff Newmiller
What about putting your objects in a list, which does not have the search through parents semantics? --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics

Re: [R] Fw: regarding plot

2012-12-12 Thread Jeff Newmiller
... origin pro? Then why are you here? It is not clear from your message that this has anything to do with R. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.us

Re: [R] remove NA in df results in NA, NA.1 ... rows

2012-12-13 Thread Jeff Newmiller
is.na(df2) is not doing what you think it is doing. Perhaps you should read ?na.omit. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics

Re: [R] How to speed up the for loop by releasing memeory

2012-12-15 Thread Jeff Newmiller
tell. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO

Re: [R] forecasting accuracy problem in R

2012-12-16 Thread Jeff Newmiller
Please read the posting guide. Packages have their own developers, as well as their own change logs [in this case http://cran.r-project.org/web/packages/forecast/ChangeLog]. --- Jeff Newmiller

Re: [R] ggplot add a legend?

2012-12-17 Thread Jeff Newmiller
Ask on the ggplot mailing list? Normally you use melted data (see the reshape2 package) and let the scales feature build the legend for you. --- Jeff NewmillerThe . . Go Live

Re: [R] Breaking out of multiple loops

2012-12-19 Thread Jeff Newmiller
There is. Use while loops. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live

Re: [R] how to read different files into different objects in one time?

2012-12-19 Thread Jeff Newmiller
it in the Introduction to R document supplied with R. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] Problem loading .r file

2012-12-20 Thread Jeff Newmiller
this list. d) There is a well-written Introduction to R pdf document supplied with the R software. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics

Re: [R] Does R have an equivalent for Matlab's cell array?

2012-12-22 Thread Jeff Newmiller
). You can use the reshape2 package for transforming back and forth. You may also want to check out the Time Series task view on CRAN. Most of those classes work with data in array representation for high speed. --- Jeff

Re: [R] creating a function

2012-12-23 Thread Jeff Newmiller
Sounds like you want to simulate an ARIMA model. Why don't you read up on that topic using RSiteSearch() and then perhaps rephrase your question? --- Jeff NewmillerThe . . Go Live

Re: [R] ggplot2: setting martin

2012-12-23 Thread Jeff Newmiller
perhaps you should be in communication with the ggplot developers. The ggplot mailing list would be an appropriate place to begin. --- Jeff NewmillerThe . . Go Live... DCN:jdnew

Re: [R] Sampling data without having infinite numbers after diong a transformation

2012-12-25 Thread Jeff Newmiller
is. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/BatteriesO.O

Re: [R] aggregate / collapse big data frame efficiently

2012-12-25 Thread Jeff Newmiller
You might consider using the sqldf package. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] Working with date

2012-12-26 Thread Jeff Newmiller
--- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/Batteries

Re: [R] how to read different files into different objects in one time?

2012-12-27 Thread Jeff Newmiller
. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/BatteriesO.O#. #.O

Re: [R] Retrieve indexes of the first occurrence of numbers in an effective manner

2012-12-27 Thread Jeff Newmiller
x - c(1,1,2,2,3,3,4,4) match(unique(x),x) --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] Multicore/Parallel

2012-12-27 Thread Jeff Newmiller
where is your sample code asked for in the Posting Guide? --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] Convert json data to an r dataframe

2012-12-28 Thread Jeff Newmiller
function that does this for all cases. Your goals must be part of each extraction function you use, so you really need to write it yourself. --- Jeff NewmillerThe . . Go Live

Re: [R] R crashing inconsistently within for loops

2012-12-28 Thread Jeff Newmiller
to generate sample code that reproduces your problem, even if imperfectly. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] Starting with R

2012-12-30 Thread Jeff Newmiller
to use the ? shortcut in R, Google, RSiteSearch(), or the sos package to look for supporting functionality. You can also learn quite a bit by lurking on this list and reading answers to other people's questions. --- Jeff

Re: [R] levelplot

2012-12-30 Thread Jeff Newmiller
--- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/Batteries

Re: [R] Installing R-2.15.2 in Debian Wheezy/Testing

2012-12-31 Thread Jeff Newmiller
In the teaching to fish department, see http://cran.R-project.org/bin/linux/debian/ and customise your mirror as appropriate. --- Jeff NewmillerThe . . Go Live... DCN:jdnew

Re: [R] Install package from local zip file

2013-01-05 Thread Jeff Newmiller
yourself with a bit of study if he does not respond. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] Extract time only from POSIXlt object

2011-01-30 Thread Jeff Newmiller
/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. --- Jeff NewmillerThe . . Go

Re: [R] text file problem-Help needed

2011-02-08 Thread Jeff Newmiller
of your data organized in directories by the project you are working on. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research

Re: [R] tzone and DST

2011-02-10 Thread Jeff Newmiller
Use Sys.setenv(TZ=Etc/GMT+8) before you read the files. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar

Re: [R] tzone and DST

2011-02-10 Thread Jeff Newmiller
internally as UTC, so once they are read merging the data should be easy. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer

Re: [R] Writing R packages in an easier way?

2011-02-11 Thread Jeff Newmiller
I may be missing something here, but what does preferring roxygen over Rd files have to do with Fortran, spaghetti code, test suites, or functionality? Do you even know what roxygen is? --- Jeff Newmiller The . . Go

Re: [R] Writing R packages in an easier way?

2011-02-11 Thread Jeff Newmiller
Ah, sorry... I became confused by the mixture of top and bottom posting combined with a leading pronoun. I will be on the lookout for that combination now. --- Jeff Newmiller The . . Go Live... DCN:jdnew

Re: [R] Linked List in R

2011-02-12 Thread Jeff Newmiller
Why would you do this, when lists are fundamental types in R? --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar

Re: [R] Removing elements from a vector matching a criteria, BUG in which() function

2011-02-13 Thread Jeff Newmiller
I think your rewrite is overdue, because returning the array from the which function seems counterintuitive. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO

Re: [R] how to order POSIXt objects ?

2011-02-14 Thread Jeff Newmiller
a) POSIXt represents the idea of a datetime. POSIXct is a compact representation (number of seconds since 1970-01-01 00:00:00 GMT) of this idea. POSIXlt is an inefficient but convenient representation (using nine separate components) of this idea. Either POSIXct or POSIXlt may be treated as a

Re: [R] Weird error (special character) of read.table

2011-02-22 Thread Jeff Newmiller
). --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/Batteries O.O#. #.O#. with /Software/Embedded Controllers) .OO#. .OO#. rocks...1k

Re: [R] aggregate in R

2011-02-22 Thread Jeff Newmiller
Use ?plyr::ddply --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/Batteries O.O#. #.O#. with /Software/Embedded

Re: [R] Running code sequentially from separate scripts (but not functions)

2011-02-24 Thread Jeff Newmiller
before you source the files. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/Batteries O.O#. #.O#. with /Software

Re: [R] problem in for loop

2011-02-24 Thread Jeff Newmiller
. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/Batteries O.O#. #.O#. with /Software/Embedded Controllers) .OO#. .OO#. rocks...1k

Re: [R] Floating points and floor() ?

2011-03-03 Thread Jeff Newmiller
integers as much as possible. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/Batteries O.O#. #.O#. with /Software

[R] Error in plot.lm

2011-03-11 Thread Jeff Newmiller
) --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer

Re: [R] Error in plot.lm

2011-03-11 Thread Jeff Newmiller
side, why doesn't it deal similarly with the left side? --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/Batteries

Re: [R] File Save As...

2011-03-14 Thread Jeff Newmiller
playing with RStudio, but they haven't got the directory thing straightened out yet AFAIK. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing

Re: [R] how to reshape the data.frame from long to wide in a specific order

2011-03-14 Thread Jeff Newmiller
I just fix it afterward: dta - dta[,c(col1,col2,col3)] --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar

Re: [R] New Stack

2013-03-11 Thread Jeff Newmiller
, the sapply function. This avoids allocating a whole sequence of data frames with sizes from 1:n, which is very inefficient use of memory. --- Jeff NewmillerThe . . Go Live... DCN:jdnew

Re: [R] merge function while obviating duplicate columns XXXX

2013-03-11 Thread Jeff Newmiller
intersect(names(data1),names(data2)) --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] Test of Parallel Regression Assumption in R

2013-03-11 Thread Jeff Newmiller
such as stats.stackexchange.com. With the answer to that question you could use the RSiteSeek function to search for references to that algorithm, or even implement it yourself. --- Jeff NewmillerThe . . Go

Re: [R] Export R generated tables and figures to MS Word

2013-03-12 Thread Jeff Newmiller
knitr markdown+pandoc gives serviceable results, for low enough expectations --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live

Re: [R] does R read commands from scripts instantanously or seuqently during processing

2013-03-14 Thread Jeff Newmiller
is not a file on disk. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO

Re: [R] Writing a hyperlink to a csv file

2013-03-16 Thread Jeff Newmiller
format for Excel. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead

Re: [R] Counting confidence intervals

2013-03-18 Thread Jeff Newmiller
sum(M[1]12 12=M[2]) untested, no data --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] How to stop set.seed() besides exiting out of R?

2013-03-18 Thread Jeff Newmiller
and it changes as numbers are requested. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] installation of package had non-zero exit status

2013-03-20 Thread Jeff Newmiller
Contact the package author? --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live

Re: [R] NADA

2013-03-21 Thread Jeff Newmiller
--- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/BatteriesO.O

Re: [R] Check if a character vector can be coerced to numeric?

2013-03-21 Thread Jeff Newmiller
? --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/BatteriesO.O#. #.O#. with /Software

<    5   6   7   8   9   10   11   12   13   14   >