Re: [R] Rexcel path problem

2011-04-01 Thread Jeff Newmiller
Use / instead of \ in the path. --- 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

Re: [R] how to handle no lines in input with pipe()

2011-04-04 Thread Jeff Newmiller
Perhaps use tryCatch... --- 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] system() command in R

2011-04-05 Thread Jeff Newmiller
The ampersand is a good idea, but nohup is best avoided in scripts. Rather the server itself should handle the transition to daemon status to avoid ending up with many duplicate server processes running. --- Jeff Newmiller

Re: [R] Help to check data before putting it in a database

2011-04-05 Thread Jeff Newmiller
, or the ! and %in% logical operators can be used, to find non-matching values. If you are determined to modify the data in R, then you probably need the tk library, the use of which is not really a topic for this forum. --- Jeff Newmiller

Re: [R] R licence

2011-04-07 Thread Jeff Newmiller
not to be derived works. You are free to disagree, but only the judges' opinions count. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing

Re: [R] merge with origin information in new variable names

2011-04-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] Undestanding return()

2011-04-26 Thread Jeff Newmiller
Yes, if there are no control statements such as if that prevent that return function from being activated. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO

Re: [R] Reading file

2011-04-27 Thread Jeff Newmiller
I try to access Excel. --- 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] visualizing bootstrapped dendrogram

2011-04-28 Thread Jeff Newmiller
No, you didn't provide the reproducible R code as the posting guide instructs you to. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing

Re: [R] For loop and sqldf

2011-04-29 Thread Jeff Newmiller
Putting SQL columns/variables into square brackets is valid syntax for sqlite. Expecting sqlite to share variables with R is not, so there was only one necessary change. --- Jeff Newmiller The . . Go Live

Re: [R] Rodbc quesion: how to reliably determine the data type?

2011-05-03 Thread Jeff Newmiller
formats for data output (if at all). --- 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

Re: [R] Convenience-at-the-expense-of-clarity (was: quantmod's addTA plotting functions)

2011-05-07 Thread Jeff Newmiller
/plotting inside your functions and instead just build objects that will be printed when they are returned to the interpreter. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live

Re: [R] Simple loop

2011-05-07 Thread Jeff Newmiller
Cannot revert it? Doesn't setting up a new default parameter in the calling function (ave) accomplish that? --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO

Re: [R] how to compare two dataset with same sampling

2011-08-24 Thread Jeff Newmiller
?merge may be what you are looking for. If not, you should clarify what you want to do. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing

Re: [R] string manipulation

2011-08-26 Thread Jeff Newmiller
.* is greedy... might want regex number[^0-9]*([0-9] {4}) to avoid getting 1999 from I want the number 2000, not the number 1999. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics

Re: [R] How to vectorize a function to handle two vectors

2011-08-27 Thread Jeff Newmiller
Isn't a vector of vectors usually considered a matrix? So if you want to vectorize a vector function you would normally rewrite it to operate on matrices. --- Jeff Newmiller The . . Go Live... DCN:jdnew

Re: [R] Problem in writing a R data frame to Excel format using RODBC package

2011-08-29 Thread Jeff Newmiller
I recommend reading the posting guide and providing a reproducible example. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research

Re: [R] character vector to text with returns

2011-08-29 Thread Jeff Newmiller
Perhaps you need to conform to the conventions mandated by RFC 2822 section 2.1 for record separators. Most libraries automatically handle this for you, but perhaps your rJython library does not. --- Jeff Newmiller

Re: [R] Simulating distribution of max of two die

2011-08-29 Thread Jeff Newmiller
Why not d - ifelse( d1 d2, d1, d2 ) or d - pmax( d1, d2 ) ? Apply operations may seem beautiful, but I think the speed and simplicity of vectorized operations are truly beautiful. --- Jeff Newmiller The . . Go

Re: [R] Error in setwd(dir) : cannot change working directory

2011-08-31 Thread Jeff Newmiller
Unless you have a subdirectory called dir below the directory returned by getwd(), the command you gave would be expected to fail. Perhaps you should use an absolute directory specification? --- Jeff Newmiller

Re: [R] Platform of image

2011-09-02 Thread Jeff Newmiller
is linked to .RData files in Windows. --- 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

Re: [R] about raw type

2011-09-03 Thread Jeff Newmiller
Raw data could mean many different things to different people. You need to be more specific about what YOU mean when you use that term. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics

Re: [R] Possible to access a USB volume by name in windows

2011-09-06 Thread Jeff Newmiller
AFAIK the answer is no. There are ways to look up the volume label given the drive letter, with which you can search for the drive letter by trial and error, but in most cases that is more trouble than it is worth. --- Jeff

Re: [R] finding events in a time duration.

2011-09-07 Thread Jeff Newmiller
You could phrase this in most dialects of SQL, but you don't say what kind of database you are using and this is not a SQL help list. You could also look at the rollapply function in the zoo package. --- Jeff Newmiller

Re: [R] ggplot2-Issue placing error bars behind data points

2011-09-07 Thread Jeff Newmiller
Add geom_errorbar() before adding geom_point() ? --- 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

Re: [R] get mean from cdf

2011-09-08 Thread Jeff Newmiller
The diff function would be helpful. --- 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

Re: [R] problems to report indexes when I have two min value

2011-09-16 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] problems to report indexes when I have two min value

2011-09-16 Thread Jeff Newmiller
Yes, you are confusing, because that is exactly what your original message had in it. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing

Re: [R] Extracting a a chunk of text from a pdf file

2011-09-17 Thread Jeff Newmiller
Doesn't seen like an R task, but see pdf2text? (From pdftools, UNIX command line tools) --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing

Re: [R] Numbering entries for each subject

2011-09-21 Thread Jeff Newmiller
A$Session_id - ave(rep(1,length(A$ID),A$ID,FUN=cumsum) --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar

Re: [R] Header auslesen und bei Regression verwenden

2011-09-22 Thread Jeff Newmiller
If you explicitly convert your categorical covariates to factors before you regress, you can use the dot notation (see help on lm) to refer to the rest of the columns not otherwise specified in your formula. --- Jeff

Re: [R] Limitations of audio processing in R

2011-09-22 Thread Jeff Newmiller
1) I don't know about automated clipping using Audacity. 2) en.wiktionary.org/wiki/for_the_win --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO

Re: [R] ncdf - install error

2011-09-23 Thread Jeff Newmiller
Perhaps start by reading the posting guidelines. --- 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

Re: [R] maptools::sunriset() daylight savings to stardard time change

2011-09-24 Thread Jeff Newmiller
Sys.setenv(TZ=Etc/GMT+8) will use standard time only for time calculations. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research

Re: [R] [SPAM?] read.csv behaviour

2011-09-27 Thread Jeff Newmiller
when you are done. With this in mind, you may be in a better position to understand why the pre-built facilities do not provide much support in your endeavor. --- Jeff Newmiller The . . Go Live... DCN:jdnew

Re: [R] Negative Quartile

2011-09-28 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] Error: could not find function

2011-09-28 Thread Jeff Newmiller
Then don't define BPGC inside another function. --- 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

Re: [R] julian day form POSIXt object

2011-09-29 Thread Jeff Newmiller
-project.org mailing list https://stat.ethz.ch/mailman/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

Re: [R] Problem with .C

2011-10-04 Thread Jeff Newmiller
on this mailing list. There are nearly an infinite variety of errors that can lead to a crash, so it is really unreasonable of you to pose this question this way and expect constructive assistance. --- Jeff Newmiller The . . Go

Re: [R] How to subset() from data frame using specific rows

2011-10-04 Thread Jeff Newmiller
?grep ?names Use indexing by name [, namevector] --- 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

Re: [R] any way to convert back to DateTime class when accidental conversion to numeric?

2011-10-05 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] Delete files with system command on Windows 7

2011-10-08 Thread Jeff Newmiller
DEL is built in to CMD. Use the R unlink function. --- 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] Substract previous element

2011-10-09 Thread Jeff Newmiller
Vectors are not matrices in R, though matrices are special cases of vectors. See ?diff for a solution that works with vectors. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics

Re: [R] Handling Time in R

2011-10-10 Thread Jeff Newmiller
parameter. --- 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

Re: [R] Handling Time in R

2011-10-10 Thread Jeff Newmiller
No, read ?difftime and look at as.double. There is a units parameter that you must set if you want predictable results. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go

Re: [R] Converting factor into date

2011-10-10 Thread Jeff Newmiller
Convert to character first or use the as.is option to read.csv. The default is to try to convert the underlying integer form of factors to date, which is not what you intend. --- Jeff Newmiller The . . Go Live

Re: [R] round() and negative digits

2011-10-11 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] strsplit question

2011-10-12 Thread Jeff Newmiller
sapply(strsplit(Block[1:5],-), function (x) {x[1]}) comes to mind... --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer

Re: [R] Comparing the components of a data frame without levels interfering

2011-10-12 Thread Jeff Newmiller
before you write much code like your example. --- 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

Re: [R] Help with R plots

2011-10-12 Thread Jeff Newmiller
with the posting guide, we will still be here, and you won't need to apologize for being a newbie. Tips: use the question mark shortcut to get help on functions, and read the Introduction to R pdf carefully. --- Jeff Newmiller

Re: [R] Length of data.frame column

2011-10-14 Thread Jeff Newmiller
object types... it embeds the arguments into a new vector. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar

Re: [R] Drop ALL Levels of a Data Frame Object

2011-10-14 Thread Jeff Newmiller
Why aren't you using as.character instead of drop.levels? --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar

Re: [R] Which function to use: grep, replace, substr etc.?

2011-10-16 Thread Jeff Newmiller
Note that male comes before female in your data frame. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar

Re: [R] Using SQL IN with RJDBC or RMySQL

2011-10-19 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] Reading Text Files with RODBC

2012-02-17 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] Creating XML using apply

2012-02-17 Thread Jeff Newmiller
Undoubtedly. However, it probably won't affect the time it takes to finish by very much. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics

Re: [R] changing names with different character sets

2012-02-19 Thread Jeff Newmiller
Refer to the columns by their position (numerically). --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] 14 points for lines(y~x)

2012-02-19 Thread Jeff Newmiller
Time for you to read the posting guide mentioned at the bottom of every R-help message. Your assertions make no sense, so we will need a reproducible example to understand you. --- Jeff Newmiller

Re: [R] help - history()

2012-02-23 Thread Jeff Newmiller
No. But there is nothing preventing you from editing the file once your session is complete. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics

Re: [R] xpose4

2012-02-25 Thread Jeff Newmiller
Perhaps contact the maintainer maintainer(xpose4) --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] Help needed! Error in setwd(newdir) : cannot change working directory

2012-02-26 Thread Jeff Newmiller
Stop it with the fake code if you want help. In keeping with the posting guide, make one reproducible example that exhibits a real problem. For what it is worth, I don't have difficulty with setwd(). --- Jeff Newmiller

Re: [R] RStudio: how to change language from fr(french) to eng(english)

2012-02-27 Thread Jeff Newmiller
Then why don't you ask about it on the RStudio support forum? --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] having this error below.

2012-02-27 Thread Jeff Newmiller
Quite possibly, after you read the posting guide and provide a complete example of code that is causing the problem. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.us

Re: [R] how to change or copy to another the names of models

2012-03-01 Thread Jeff Newmiller
of results that can be indexed by position or by name. mymodel - vector( list, 30 ) for (i in 5:30) { mymodel[[i]] - mlp(X, Y, size=n,) } --- Jeff NewmillerThe . . Go Live

Re: [R] Why do my regular expressions require a double escape \\ to get a literal??

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

Re: [R] Apt-get

2012-03-07 Thread Jeff Newmiller
Google is really useful for questions like this. http://cran.r-project.org/bin/linux/ubuntu/ --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics

Re: [R] gsub: replacing double backslashes with single backslash

2012-03-07 Thread Jeff Newmiller
). It is perfectly possible to have those characters in memory, but they will not be displayed that way by the print function. --- Jeff NewmillerThe . . Go Live... DCN:jdnew

Re: [R] SELECT CASE in RODBC

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

Re: [R] Reading in 9.6GB .DAT File - OK with 64-bit R?

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

Re: [R] Idea/package to linearize a curve along the diagonal?

2012-03-11 Thread Jeff Newmiller
Aren't you just reinventing the inverse of a function? --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] How to plot diagonal line at any coordinate range in R

2012-03-11 Thread Jeff Newmiller
Your requirement that the line go from bottom-left to top-right regardless of the coordinates is inconsistent with a slope of 1. Are you sure that is your requirement? --- Jeff Newmiller

Re: [R] Idea/package to linearize a curve along the diagonal?

2012-03-12 Thread Jeff Newmiller
) + qb ) / ( 2*qa ) } plot( x, f1( y ) ) --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] How to plot diagonal line at any coordinate range in R

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

Re: [R] ggplot2: coord_polar

2012-03-12 Thread Jeff Newmiller
appropriate than pursuing this issue here. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] Idea/package to linearize a curve along the diagonal?

2012-03-12 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] sum(hist$density) == 2 ?!

2012-03-14 Thread Jeff Newmiller
Your clue is... density! Probability density is not the same as probability... you have to multiply it by something before you can sum it. Try typing h by itself and review your options. --- Jeff Newmiller

Re: [R] extract values ​​for the dates and a new column

2012-03-14 Thread Jeff Newmiller
and ?dput for future posts. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO

Re: [R] replicating C example from the Extensions Manual problem

2012-03-15 Thread Jeff Newmiller
Do you really expect is to know how to figure out the error if you don't give us the code that the error is pointing at (or the code preceding the error, which may be at fault)? Please think before posting. --- Jeff

Re: [R] summing transfers

2012-03-15 Thread Jeff Newmiller
Then save to a variable, and maybe then to a file? Are you wanting it in long form? You can use reshape if so. Note that a reproducible example and sample result always helps prompt more specific answers. --- Jeff Newmiller

Re: [R] Faster way to implement this search?

2012-03-16 Thread Jeff Newmiller
Succinct is good, but reproducible is even more important. Think ?dput or ?sample so we have some data like you do, your current algorithm, or at least a desired output example (again using dput) --- Jeff Newmiller

Re: [R] how to modify the tickment of x-axis

2012-03-17 Thread Jeff Newmiller
You use dput to put your data into an email so we can know what your input is. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live

Re: [R] Linux R / Windows client

2012-03-18 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] How to use R script in VB?

2012-03-19 Thread Jeff Newmiller
Actually, RExcel and the StatConn DCOM connector are what you want, and this is not the right place to discuss it. Go to http://www.statconn.com/, and read the license carefully. --- Jeff Newmiller

Re: [R] What is the correct syntax of for or if in Rexcel

2012-03-20 Thread Jeff Newmiller
A) This is the wrong list for StatConn questions. B) My guess would be that you need to send the entire loop in one call. --- Jeff NewmillerThe . . Go Live... DCN:jdnew

Re: [R] Loading Dataset into R continual issue

2012-03-21 Thread Jeff Newmiller
that produces your error. One part of the beauty of R is that it is possible to ask a precise question, and get a precise answer. --- Jeff NewmillerThe . . Go Live... DCN:jdnew

Re: [R] cubature

2012-03-25 Thread Jeff Newmiller
of handling variable limits. I didn't see any hint that such would be supported in the help page. Are you sure the same code is being used on different machines? --- Jeff Newmiller

Re: [R] Get data from Access 2010 database

2012-03-27 Thread Jeff Newmiller
AFAIK you need to use the 32bit version of R for getting the data. Then you can save it into a more versatile format and re-read it if you really need to run R in 64 bit mode. --- Jeff Newmiller

Re: [R] How to create arbitrary number of loops in R

2012-03-29 Thread Jeff Newmiller
feel it wasn't worth answering questions on the list any more. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go

Re: [R] Problem loading package 'JGR' using R-2.15.0 (Win32).

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

Re: [R] list assignment syntax?

2012-03-30 Thread Jeff Newmiller
I agree that global side effects are a bad idea, but ivo started this by pointing out that it is straightforward to do this in Perl. It might be worth considering adding this capability to R. --- Jeff Newmiller

Re: [R] fatal error prevents multi-line functions or loop to run

2012-04-02 Thread Jeff Newmiller
that doesn't do what you expect it to (along with some indication of what you expected it to do). --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics

Re: [R] fatal error prevents multi-line functions or loop to run

2012-04-02 Thread Jeff Newmiller
Since you want to progress to further statements within test(), you need to wrap the summary function call in the try, not the whole test() function: try( summary(w), silent =TRUE ) --- Jeff Newmiller

Re: [R] Import from excel button in R-command

2012-04-03 Thread Jeff Newmiller
productive way to use R, because you accumulate a collection of useful snippets that can be much more tuned to your analysis needs than a point and click interface can be. --- Jeff Newmiller

Re: [R] Print std. Error separately from mle-class object

2012-04-04 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] Problems with CRAN package Ryacas

2012-04-09 Thread Jeff Newmiller
check your firewall? --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO

Re: [R] Can't read data coded in Cyrillic

2010-12-06 Thread Jeff Newmiller
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 Live

Re: [R] Solution to differential equation

2010-12-15 Thread Jeff Newmiller
the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. --- Jeff NewmillerThe . . Go Live... DCN:jdnew

Re: [R] 300 dpi and eps:

2010-12-15 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] 300 dpi and eps:

2010-12-15 Thread Jeff Newmiller
https://stat.ethz.ch/mailman/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 Newmiller

Re: [R] Please help with one problem

2010-12-16 Thread Jeff Newmiller
, reproducible code. --- Jeff NewmillerThe . . Go Live... DCN:jdnew...@dcn.davis.ca.usBasics: ##.#. ##.#. Live Go... Live: OO#.. Dead

<    1   2   3   4   5   6   7   8   9   10   >