Re: [R] "R" help leaves out lines of text

2015-04-16 Thread paul
ble from > cran.r-project.org/bin/windows/base. Paul gmail.com> wrote: > Installing things is always challenging in a locked down > environment. I'll post on a cygwin forum. Thanks. By the way, if it's just a DOS vs. UNIX line-ending issue, are the help files stored in such a w

Re: [R] (no subject)

2015-04-16 Thread paul
Duncan Murdoch gmail.com> writes: > The Cygwin release is not supported by us, and is known to be buggy, > because it doesn't handle line endings properly. > > You'll need to talk to the Cygwin folks if you can't reproduce this > in one of our releases available from > cran.r-project.org/bin/windo

[R] vi[m] editing of past commands in R command line

2015-04-16 Thread paul
When I use bash + readline and ~/.inputrc contains "editing-mode vi", I can press "v" to switch to from the command line editing to a full vi session editing of a command. This doesn't seem to happen in R. Is there a configuration setting/file that I can set to get this behaviour? Furthermore

[R] "R": Redefine default parameter values for help.start()

2015-04-16 Thread paul
Because of the setup of R in cygwin, help.start() requires the following parameter values: help.start(browser="cygstart",remote=R.home()) Is it possible to make these values the default? I do not want cygstart to be the browser except as a parameter for help.start(). ___

[R] R: Idea behind .First() vs. ~/.Rprofile

2015-04-17 Thread paul
I'm ramping up on R, and reading http://stuff.mit.edu/afs/sipb/project/r- project/lib/R/library/base/html/Startup.html. I'm probably wrong about this, but ~/.Rprofile seems to serve the same purpose as a .First() function. Why do both exist, and what considerations go into a decision to choose one

[R] Need online version of R help pages

2015-04-17 Thread paul
The help for the cygwin port of R is buggy and hides random lines of text. Consquently, I've been relying on Google, but it is often not clear how directly relevant the info is for the specific command that I'm using. For example, reshape is complicated, and has more than 1 version. Is there an

Re: [R] "R": Redefine default parameter values for help.start()

2015-04-17 Thread paul
Martin Maechler lynne.stat.math.ethz.ch> writes: > >>>>> paul gmail.com> > >>>>> on Thu, 16 Apr 2015 18:58:12 + writes: > > > Because of the setup of R in cygwin, help.start() requires > > the following parameter valu

Re: [R] R: Idea behind .First() vs. ~/.Rprofile

2015-04-17 Thread paul
Sarah Goslee gmail.com> writes: |On Thursday, April 16, 2015, paul gmail.com> |wrote: |> I'm ramping up on R, and reading |> http://stuff.mit.edu/afs/sipb/project/r- |> project/lib/R/library/base/html/Startup.html. I'm probably wrong |> about this, but ~/.Rpro

Re: [R] project.org help mailing list the same as ethz.ch mailing list?

2015-04-17 Thread paul
Sarah Goslee gmail.com> writes: >On Friday, April 17, 2015, Paul Domaskis >gmail.com> wrote: >> The page http://www.r-project.org/mail.html says that the mailing >> list is r-help_AT_R-project.org (within place of _AT_), but >> the gmane page >> htt

[R] Smart detection of wrap width?

2015-04-17 Thread paul
I suspect that the answer is "no", but just in case, is there a way to have R detect the window width and wrap accordingly? I don't want to set an option every time I dock a window or shrink it. In my ideal paradise, R would not only format output according to window width, but it would also me t

Re: [R] Need online version of R help pages

2015-04-20 Thread Paul
y bleak about your | prospects with Cygwin. | |On 18/04/2015 02:17, Paul Domaskis wrote: |> With all due respect, Duncan, I can't find the message advising |> against using the Cygwin port. I did find a message about the |> mishandling of line endings, and I've asked on the cygwin

Re: [R] Smart detection of wrap width?

2015-04-20 Thread Paul
Paul Domaskis gmail.com> writes: > Yes, I found the width option in the help pages, but I was wondering > if there was automatic setting of the wrapping according to the > current window width. > > Your function works exactly as I wished. I'll probably get smarter > wi

Re: [R] Need online version of R help pages

2015-04-20 Thread Paul
John McKown gmail.com> writes: >On Mon, Apr 20, 2015 at 9:43 AM, Paul gmail.com> >wrote: > > http://www.tutorialspoint.com/execute_r_online.php John, I appreciate the pointer. I wish the post quoted below had made it to the mailing list, as I could have saved you the trouble

Re: [R] Need online version of R help pages

2015-04-20 Thread Paul
Henrik Bengtsson ucsf.edu> writes: > I don't want to rub it in more, but whatever dark forces are upon > you, they'd have a hard time preventing you from installing R to > your user account, which requires minimal privileges(*). > > Just wanted to make sure you're aware of your options > > /Henr

Re: [R] "lag1.plot {astsa}" vs. "lag.plot {stats}"

2015-04-20 Thread Paul
On Apr 17, 2015, at 7:30 PM, Paul Domaskis gmail.com> wrote: > I'm following http://www.stat.pitt.edu/stoffer/tsa3/R_toot.htm to > ramp up on both time series and R. About 40% of the way down, the > tutorial uses lag1.plot from astsa and lag.plot from stats. The > position

Re: [R] "lag1.plot {astsa}" vs. "lag.plot {stats}"

2015-04-20 Thread Paul
Roy Mendelssohn - NOAA Federal noaa.gov> writes: | Not certain which plot you are looking at, but my guess is the | answer is contained somewhere here: | http://www.stat.pitt.edu/stoffer/tsa3/Rissues.htm in particular | perhaps issues 4-5. On Apr 20, 2015, Paul Domaskis gmail.com> wrote:

Re: [R] (no subject)

2015-04-20 Thread Paul
Roy Mendelssohn - NOAA Federal noaa.gov> writes: |> By the way, the tsa3 issues page that you reference above...it's |> indicates the problems with existing time series functions as the |> reason for developing corrected functsion in astsa/tsa3. But the |> actual documentation for these corrected

[R] How numerical data is stored inside ts time series objects

2015-04-20 Thread Paul
I'm getting familiar with the stl function in the stats packcage by trying it on an example from Brockwell & Davis's 2002 "Introduction to Times Series and Forcasting". Specifically, I'm using a subset of his red wine sales data. It's a detour from the stl material at http://www.stat.pitt.edu/sto

Re: [R] How numerical data is stored inside ts time series objects

2015-04-21 Thread Paul
William Dunlap tibco.com> writes: > Use the str() function to see the internal structure of most > objects. In your case it would show something like: > > > Data <- data.frame(theData=round(sin(1:38),1)) > > x <- ts(Data[[1]], frequency=12) # or Data[,1] > > y <- ts(Data, frequency=12) > > str(x)

Re: [R] How numerical data is stored inside ts time series objects

2015-04-22 Thread Paul
an inadvertent coding oversight. --- Martin Maechler lynne.stat.math.ethz.ch> writes: >> Paul gmail.com> Interesting that a 2D matrix >> of size Nx1 is treated as a different animal from a length N >> vector. It's a departure fro

[R] Invalid URL for R documentation

2015-07-06 Thread Paul
I tried accessing http://cran.r-project.org/doc/manuals/r-release/R- intro.html, which is linked to from http://cran.r- project.org/manuals.html. I get the message that the URL could not be found by the server. Just wondering if I'm doing something stunningly un- smart (it would not be the first

Re: [R] Invalid URL for R documentation

2015-07-06 Thread Paul
On Mon, Jul 6, 2015 at 10:10 AM, Paul gmail.com> wrote: > ...http://cran.r-project.org/doc/manuals/r-release/R-intro.html John McKown gmail.com> writes: > I get a 404 on that page as well. Curiously, the R-patched and > R-devel links work. Looks like the webmaster has some work

Re: [R] Invalid URL for R documentation

2015-07-06 Thread Paul
Marc Schwartz me.com> writes: | It would appear that the HTML and EPUB files for the Release | versions of the manuals are not present, unless they are in the | process of being generated right now. The PDFs, dated July 6, 2015, | are present: | | http://cran.r-project.org/doc/manuals/r-release/

[R] "R" help leaves out lines of text

2015-04-16 Thread paul
I am ramping up on the R statistical analysis environment. I find that the help leaves out entire lines of text. The pager is /usr/lib/R/bin/pager. I changed it to /bin/less, but I see the same symptom. The problem shows up both in xterm and mintty. The computer is in a locked down environment

[R] Stats help with calculating between and within subject variance and confidence intervals

2009-09-09 Thread Paul
s the book but using slightly different fomulae (see variables for H1, G1 and H12 and G12). I'd appreciate any help, and any comments on whether their is a better way to do this. Thanks Paul. > BGBottles Machine weight 11 14.23 21 14.96 31 14.85 42 1

Re: [R] Stats help with calculating between and within subject variance and confidence intervals

2009-09-09 Thread Paul
look into the lme functions. Thanks Paul. Bert Gunter wrote: Paul: If these data are real -- or at least a reasonable facsimile -- then even though the machines might be considered "random" -- i.e. a sample from a potential population of machines -- there are too few of them to get a

[R] Best way to extract values from an aov object ?

2009-09-14 Thread Paul
Df : num 8 .. ..$ Sum Sq : num 1.45 .. ..$ Mean Sq: num 0.182 .. ..$ F value: num NA .. ..$ Pr(>F) : num NA ..- attr(*, "class")= chr [1:2] "summary.aov" "listof" - attr(*, "class")= chr "summary.aovlist" So the code to get the mean square value mac

Re: [R] Creating a new Access database with R

2010-02-11 Thread Paul-
As a workaround, you can keep an empty mdb file on your filesystem. When you need a new database, you can copy and rename the empty file. -- View this message in context: http://n4.nabble.com/Re-Creating-a-new-Access-database-with-R-tp1477400p1477533.html Sent from the R help mailing list archi

[R] Slightly OT: Does anyone use latex2rtf with sweave output ?

2010-02-28 Thread Paul
Has anyone used latex2rtf succesfully with sweave and is willing to share their experiences ? Thanks Paul. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting

[R] Statet on Eclipse: ${project_path} is empty

2010-03-11 Thread Paul
with an error that project_path is empty. Am I doing something wrong. I feel that Eclipse and Statet will be the best way to use R, but it's so hard to setup at the moment. Regards, Paul. __ R-help@r-project.org mailing list https://

[R] StatEt: Error R Object Browser Update java.lang.NullPointerException

2010-03-12 Thread Paul
Hello, I'm trying to use StatEt on my kubuntu karmic system. I've set everything up according to the website and a guide pdf I've got, but when I start the R session, or issue a command, I get a "An internal error occurred during: "R Object Browser Update"." error; Any ideas on what to look

Re: [R] Put square brackets as column name in a data frame

2010-03-19 Thread Paul-
names(nouvTable) = c("ID","X[m]","Y[m]","Z[m]") -- View this message in context: http://n4.nabble.com/Put-square-brackets-as-column-name-in-a-data-frame-tp1599725p1601142.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-proje

[R] Errors when trying to open odfWeave documents

2010-04-28 Thread Paul
n sub-document content.xml at 1293,124(row,col)." I also tried to open them in MS Word 2003 (Windows XP) using the Sun ODF plugin but this gave an error also. Am I trying to do something wrong ? Any tips on debugging ? Thanks Paul. __ R-help@r-p

Re: [R] Errors when trying to open odfWeave documents

2010-04-29 Thread Paul
Paul wrote: > Hello > > I tried the odfWeave package today, by running the formatting.odt and > example.odt files that are included with the package. > > They both ran fine, but when I try to open them in my OpenOffice > (OpenOffice 3.1.1 on Kubuntu 9.10) I get a

Re: [R] Errors when trying to open odfWeave documents

2010-05-01 Thread Paul
Paul wrote: > Paul wrote: > >> Hello >> >> I tried the odfWeave package today, by running the formatting.odt and >> example.odt files that are included with the package. >> >> They both ran fine, but when I try to open them in my OpenOffice >> (

[R] How do people use Sweave / R / Databases

2010-01-29 Thread Paul
n can recreate the work without the database (apart from just writing it to a file or into the document) Thanks Paul. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-proj

[R] RJDBC with MS Access

2010-02-05 Thread Paul-
Has anybody used RJDBC to read tables from an MS Access mdb file? I know how to do it with RODBC, and I have used RJDBC with SQL Server. I am, however interested now in this particular combination. Is it possible? -- View this message in context: http://n4.nabble.com/RJDBC-with-MS-Access-tp1470

Re: [R] Filling a logical matrices with values

2010-02-05 Thread Paul-
Sorry, I noticed my previous code does not work if a column has all NAs. Try this instead: dat <- matrix(as.logical(sample(T:F, 30, T)),5,6) colnames(dat) <- letters[1:6] rownames(dat) <- paste(letters[1:5],1:5, sep="") dat1 <- matrix(NA,5,6) colnames(dat1) <- colnames(dat) rownames(dat1) <- row

Re: [R] Filling a logical matrices with values

2010-02-05 Thread Paul-
If I understand your question, this may work for you: dat <- matrix(as.logical(sample(T:F, 30, T)),5,6) colnames(dat) <- letters[1:6] rownames(dat) <- paste(letters[1:5],1:5, sep="") dat1 <- matrix(NA,5,6) colnames(dat1) <- colnames(dat) rownames(dat1) <- rownames(dat) dat1[dat] <- unlist(sapply

[R] OT: Any web based report delivery software that support R out there ?

2012-11-13 Thread Paul
a web page, and allow users to request them to be run at certain times with certain parameters, and pick up the resulting reports once they've been executed. Is there anything out there like this ? I have seen a propriatry system called Pipeline Pilot by Accelrys that ef

Re: [R] Displaying Iteration Count

2010-06-22 Thread Paul
e required text together i.e for(i in 1:10){ #some code message(paste("Iteration ",i," of 10",sep="")) #more code } Regards Paul. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEAS

[R] How to run Bibtex with pdfLatex in StatEt/MikTex on Windows ?

2010-06-28 Thread Paul
n the latex+bibtex+pdflatex command, the citations are present. Does anyone know how to either configure StatEt to run bibtex or to somehow fix this ? Thanks Paul. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help P

[R] Calculate confidence interval of the mean based on ANOVA

2010-07-12 Thread Paul
Residuals Sum of Squares 0.0003991420 0.0003202277 Deg. of Freedom 5 12 Residual standard error: 0.005165814 Estimated effects may be unbalanced > print(summary(fooaov)) Df Sum Sq Mean Sq F value Pr(>F) RUN 5 0.00039914 7.9828e-05 2.9914 0.05565 . Residuals 12 0.00032023 2.6686e-05

Re: [R] Calculate confidence interval of the mean based on ANOVA

2010-07-13 Thread Paul
Paul wrote: I am trying to recreate an analysis that has been done by another group (in SAS I believe). I'm stuck on one part, I think because my stats knowledge is lacking, and while it's OT, I'm hoping someone here can help. Given this dataframe; Well, that will teach

Re: [R] question about masking

2010-10-20 Thread Paul
#gives gam from foo as desired. Regards, Paul. __ R-help@r-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.

Re: [R] Apropos the day...

2010-11-25 Thread Paul
I'll second that. Paul Hurley. On 25/11/10 21:25, Spencer Graves wrote: ditto. Spencer Graves On 11/25/2010 1:20 PM, Dennis Murphy wrote: Since today is American Thanksgiving, I want to thank: (a) R-core for all of their efforts to produce what is, IMHO, the best statis

Re: [R] Help Please!!!!!!!!!

2010-11-29 Thread Paul
your file into a dataframe called foo, with columns none, light etc then doing class(foo$none) will tell you what R thinks this field is. If it is character then you can do foo$none <- as.numeric(foo$none) to tell R to treat it as numbers. Regards, Paul.

[R] Has anyone used Sweave with the Beamer poster macro for Latex ?

2010-08-20 Thread Paul
0,sd=15) print(x) @ \end{block} \end{column} \end{columns} \end{frame} \end{document} but this doesn't work. Has anyone else done this ? Any ideas ? Thanks Paul. __ R-help@r-project.org mailing list https://stat.ethz.ch/mail

Re: [R] R reports

2010-08-21 Thread Paul
Donald Paul Winston wrote: Sweave and LaTex is way to much overhead to deal with. There should be a built in standard report() function analogous to plot(). Something like the following is necessary if you want real people to take R seriously: report(data=, vars=, label=, by=, sum

[R] Reading multiple text files where some files are empty

2010-08-30 Thread Paul
of a way that I can overcome this (maybe skip empty files somehow?) without having to manually trawl through the hundreds of files I have to remove the empty ones? Thanks in advance, Paul -- View this message in context: http://r.789695.n4.nabble.com/Reading-multiple-text-files-where-some-files-are

Re: [R] Reading multiple text files where some files are empty

2010-08-31 Thread Paul
- sapply(x, function(x){inherits(x, "try-error")}) #Identifies the elements of the list with the try-error i.e. empty files good<-x[!bad] #Removes the elements identified above myData<-do.call(rbind, good) Cheers, Paul William Dunlap wrote: > > > You could use the try()

Re: [R] Errors when trying to open odfWeave documents

2010-05-04 Thread Paul
Max Kuhn wrote: > I tried with this: > > > sessionInfo() > R version 2.10.1 (2009-12-14) > i386-pc-mingw32 > > I didn't have any issues with the testcases.odt and examples.odt files. > > :-/ > > > On Sun, May 2, 2010 at 11:39 AM, Dieter Menne > w

[R] Has Anyone created any good R wallpapers ?

2010-05-05 Thread Paul
I was googling around today to see if anyone had created any R wallpapers, given some of the amazing graphics that can be created with R I'd like to display the capabilities for others. I didn't come up with much. Anyone else come up with anyth

Re: [R] Errors when trying to open odfWeave documents

2010-05-07 Thread Paul
R from not being used at all at my work (top ten Pharma). Here's the locale info, Regards, Paul. > sessionInfo() R version 2.10.1 (2009-12-14) i386-pc-mingw32 locale: [1] LC_COLLATE=English_United Kingdom.1252 LC_CTYPE=English_United Kingdom.1252LC_MONETARY=Englis

[R] Trailing zero's missing from signif function ?

2010-05-20 Thread Paul
Hello. In my opinion the function signif(1.4,digits=3) should give 1.40 but actually gives 1.4. Is there a magic way to add the trailing digits back (and converting to chracter at the same time ?) Regards, Paul. __ R-help@r-project.org mailing

Re: [R] R editor

2010-05-26 Thread Paul
form and runs really well. It also has many other great features that help coding. Regards, Paul. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-gu

[R] Does Sweave run in the global environment ?

2010-05-28 Thread Paul
ackage[OT1]{fontenc} \usepackage{Sweave} \begin{document} \title{Test Sweave Document} \author{Paul Hurley} \maketitle <<>>= if(exists("foo")){print(foo)} ls() Sys.time() @ \end{document} | If I run this code; |testFoo<-function(){ foo<-"My

[R] Very OT: World Cup Statistics

2010-06-07 Thread Paul
omeone here can help ? Thanks Paul. __ R-help@r-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.

[R] Way OT: Anyone know where to get data on relationship between education and salary

2011-04-18 Thread Paul
anisations that would have this information and might divulge it under the freedom of information act ? Thanks in advance Paul. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide ht

[R] Parsing Apache Combined Log Format in R with regex

2011-07-07 Thread Paul
was unable to make them work in R. [1] http://httpd.apache.org/docs/1.3/logs.html#combined Thanks, Paul [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the

[R] Python difflib R equivalent?

2011-07-28 Thread Paul
an produce difference information in various formats, including HTML and context and unified diffs." http://docs.python.org/library/difflib.html Thanks, Paul __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLE

Re: [R] Thank you

2011-11-24 Thread Paul
consummate professionalismism -- I could not live without R. Kind regards and best wishes to all, -- Bert and even though I'm (and many others) are the 'wrong' side of the pond, I'd like to add my +1 to these thanks. Thanks ! Paul. _

Re: [R] good method of removing outliers?

2011-12-30 Thread Paul
that shows an implementation of the Llund test for outliers within a regression ( http://stackoverflow.com/a/1444548/74658 ). Regards, Paul. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting

Re: [R] R report generator (for Word)?

2012-01-02 Thread Paul
although I vaguely remember seeing a post recently that the current version doesn't compile on Windows, so that may curtail it's effectiveness. regards, Paul. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PL

Re: [R] ggplot2 stacked bar - sum of values rather than count

2012-01-16 Thread Paul
of carat variable qplot <http://had.co.nz/ggplot2/qplot.html>(color, data=diamonds, geom="bar", weight=carat, ylab="carat") #just gives raw values from meanprice column || qplot <http://had.co.nz/ggplot2/qplot.html>(cut, meanprice, geom="bar", sta

[R] Adding Records to a Table in R

2017-11-01 Thread Paul Bernal
ntained in the dummy table exist in the original table, if they don´t exist then add those dates and put zeroes on the fields. How can I achieve this? Any help will be greatly appreciated, Best regards, Paul [[alternative HTML version deleted]] ___

[R] Question - TukeyHSD

2017-11-04 Thread Paul Kent
, can I perform the Test with the information I have and save myself some time? Is there a way to somehow construct an aov element to feed the TukeyHSD function, or is there another way to proceed. Many thanks. Paul Kent Gold rating for teaching excellence Teaching Excellence Framework

Re: [R] Adding Records to a Table in R

2017-11-08 Thread Paul Bernal
rame[i,1] %in% dataset1Frame){ dataset1Frame <- rbind(dataset1Frame, TransitDateFrame[i,])}else{ dataset1Frame} } } I used this code but didn´t work, maybe I am doing something wrong here? Best regards, Paul 2017-11-01 15:21 GMT-05:00 Eric Berger : > Hi Pau

Re: [R] Adding Records to a Table in R

2017-11-08 Thread Paul Bernal
e dataset1 table as a .csv document for your reference. Basically what I want is to bring all the values in dataset1 and only add the dates missing with value 0. Best regards, Paul 2017-11-01 15:21 GMT-05:00 Eric Berger : > Hi Paul, > > #First I set up some sample data since I don&

[R] 'fractal' package

2017-11-16 Thread David Paul
ze the 'fractal' package. Many Thanks in Advance, David Paul [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do r

[R] function pointers?

2017-11-22 Thread Paul Johnson
fastest possible way. In an Objective-C problem in the olden days, we found the method-lookup was a major slowdown and one of the programmers showed us how to save the lookup and use it over and over. pj -- Paul E. Johnson http://pj.freefaculty.org Director, Center for Research Metho

[R] Odd dates generated in Forecasts

2017-12-06 Thread Paul Bernal
"11/10/07", "11/10/12", "11/11/06", "11/12/05", "11/12/11", "11/12/16", "11/13/04", "11/13/10", "11/14/09", "11/14/15", "11/15/03", "11/15/08", "11/15/14", "11/16/13&

Re: [R] Odd dates generated in Forecasts

2017-12-06 Thread Paul Bernal
Thank you very much David. As a matter of fact, I solved it by doing the following: MyTimeSeriesObj <- ts(MyData, freq=365.25/7, start=decimal_date(mdy("01-04-2003"))) After doing that adjustment, my forecasts dates started from 2017 on. Cheers, Paul 2017-12-06 12:03 GMT-05:00 Da

Re: [R] [ESS] M-x R gives no choice of starting dir

2017-12-13 Thread Paul Johnson
e, Switzerland > http://enricoschumann.net > > __ > ess-h...@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/ess-help -- Paul E. Johnson http://pj.freefaculty.org Director, Center for

[R] Error when trying to install package rggobi

2017-12-26 Thread Paul Bernal
; Is this suggesting me to reinstall R or is there a way to get the libxml2-2.dll somewhere to solve this issue? Best regards, Paul [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more,

Re: [R] Information installation package sjPlot

2018-01-16 Thread Paul Bivand
grams, and run R CMD install package.tar.gz from the command line. Paul On 11 January 2018 at 23:21, Orvalho Augusto wrote: > That is very strange. > > I am using Ubuntu 16.04 and managed to install it in less than 5 minutes. > > OA > > On Wed, Jan 10, 2018 at 12:00 PM, Luca

Re: [R] Optim function returning always initial value for parameter to be optimized

2018-02-10 Thread Paul Gilbert
ethods require differentiable (smooth) functions. A numerical approximation will be zero unless you are right near a jump point, so you are unlikely to move from your initial guess. Paul total.err <- (op1.err + op2.err) return(total.err) } soln <- optim(par = 300, fn=err.th.scala

Re: [R] [FORGED] Suppress horizontal mean line in beanplot()

2018-02-13 Thread Paul Murrell
Hi Does this do the trick ... ? library(beanplot) beanplot(count ~ spray, data = InsectSprays) library(gridGraphics) grid.echo() grid.remove("abline", grep=TRUE) Paul On 14/02/18 07:31, Samuel Knapp wrote: Hi, I would like to use the beanplot() function from the beanpl

Re: [R] Best Optimization Routines

2018-02-15 Thread Paul Smith
). Thus, you can use a package to deal with mixed integer programming: http://blog.revolutionanalytics.com/2016/12/mixed-integer-programming-in-r-with-the-ompr-package.html Hope this helps you, Paul __ R-help@r-project.org mailing list -- To UNSUBSCRIBE

Re: [R] Identify does sort the locations

2018-02-15 Thread Paul Murrell
backward compatibility that should not be the default, so would require another argument to identify(). Paul On 16/02/18 06:58, Samuel GRANJEAUD IR/INSERM wrote: Hi, Using identify function, I think I should get the index of the selected points in the order I clicked them. This is what I r

Re: [R] Identify does sort the locations

2018-02-15 Thread Paul Murrell
Hi Sorry, I think this has always been the behaviour (and the documentation has always been wrong). Using locator() yourself could be a workaround (with a little more effort required to determine the closest data point). Paul On 16/02/18 09:32, Samuel GRANJEAUD IR/INSERM wrote: Hi Paul

Re: [R] Random Seed Location

2018-03-04 Thread Paul Gilbert
e it does not seem to be widely appreciated: the number of nodes affects the random stream, so recording the number of compute nodes along with the RNG and seed information is important for reproducible results. This has the unfortunate consequence that an experiment cannot be reproduced on a la

Re: [R] Random Seed Location

2018-03-05 Thread Paul Gilbert
a very long time (since at least R 0.99) and, as I recall, it was not easy to fix. I think the more substantial reason is that Box-Muller is no longer the default or preferred normal generator. It may only be used for backward compatibility, in which case messing with it could be a disaste

[R] unable to move temporary installation of package

2018-03-26 Thread Paul Lantos
or I get the "unable to move" error. I've uninstalled and reinstalled everything, tried this in non-Studio sessions using both R Open and regular R 3.4.4, and I get the same error. Thanks for any help, Paul Lantos _ Paul M. La

Re: [R] unable to move temporary installation of package

2018-03-26 Thread Paul Lantos
n. I don't run R in any special way. So I'm not sure where that leaves me... thanks for any suggestions. Paul -Original Message- From: Jeff Newmiller [mailto:jdnew...@dcn.davis.ca.us] Sent: Monday, March 26, 2018 5:22 PM To: r-help@r-project.org; Paul Lantos ; r-help@r-pro

Re: [R] unable to move temporary installation of package

2018-03-27 Thread Paul Lantos
/Program Files/R/R-3.4.4/library no -Original Message- From: Jeff Newmiller [mailto:jdnew...@dcn.davis.ca.us] Sent: Tuesday, March 27, 2018 1:16 AM To: Paul Lantos ; r-help@r-project.org Subject: RE: [R] unable to move temporary installation of package Perhaps someone here will

Re: [R] unable to move temporary installation of package

2018-03-27 Thread Paul Lantos
t;https://mirrors.nics.utk.edu/cran/"; "http://www.stats.ox.ac.uk/pub/RWin"; attr(,"RStudio") [1] TRUE I've used different CRAN mirrors though and gotten the same error. Would you suggest deleting my personal directory and recreating it? I get the same error if I tr

Re: [R] unable to move temporary installation of package

2018-03-27 Thread Paul Lantos
No other instances of R running, and I get the same error with any installation, new or old. Original message From: Jeff Newmiller Date: 3/27/18 2:21 PM (GMT-05:00) To: Paul Lantos Cc: r-help@r-project.org Subject: RE: [R] unable to move temporary installation of package Do

Re: [R] unable to move temporary installation of package

2018-03-27 Thread Paul Lantos
I deleted my library, reinstalled R, and had the same issue -- couldn't install anything into its newly created library. -Original Message- From: Jeff Newmiller [mailto:jdnew...@dcn.davis.ca.us] Sent: Tuesday, March 27, 2018 2:26 PM To: Paul Lantos Cc: r-help@r-project.org Subjec

Re: [R] unable to move temporary installation of package

2018-03-27 Thread Paul Lantos
I don't believe I've gotten a reply from a Kevin Thorpe. Original message From: Jeff Newmiller Date: 3/27/18 5:57 PM (GMT-05:00) To: Paul Lantos Cc: r-help@r-project.org Subject: RE: [R] unable to move temporary installation of package Have you investigated the i

Re: [R] unable to move temporary installation of package

2018-03-27 Thread Paul Lantos
Thanks, Kevin. I have done that but no luck. Paul -Original Message- From: Kevin E. Thorpe [mailto:kevin.tho...@utoronto.ca] Sent: Tuesday, March 27, 2018 2:15 PM To: Paul Lantos ; Jeff Newmiller Cc: r-help@r-project.org Subject: Re: [R] unable to move temporary installation of package

Re: [R] unable to move temporary installation of package

2018-03-27 Thread Paul Lantos
I think MalwareBytes may have been the culprit. I disabled it and it's working now (even with my regular antivirus running). Thanks all for the advice! Paul -Original Message- From: Paul Lantos Sent: Tuesday, March 27, 2018 8:35 PM To: Kevin E. Thorpe ; Jeff Newmiller Cc: r-h

Re: [R] [FORGED] Extracting specified pages from a lattice ("trellis") object.

2018-04-23 Thread Paul Murrell
fourth panels for the second conditioning variable) ... dotplot(variety ~ yield | year * site, data=barley, layout=c(2,2))[1:2, 3:4] Hope that helps Paul On 14/04/18 12:25, Rolf Turner wrote: Suppose that (e.g.) xyplot() returns an object "xxx" with (say) 3 pages. I wou

Re: [R] [FORGED] Extracting specified pages from a lattice ("trellis") object.

2018-04-26 Thread Paul Murrell
Hi Does this not do what you want ... ? allpages <- dotplot(variety ~ yield | year * site, data=barley, layout=c(2,2)) page2 <- allpages[1:2, 3:4] print(page2) Paul On 24/04/18 17:51, Rolf Turner wrote: On 24/04/18 15:17, Paul Murrell wrote: Hi I think the subs

Re: [R] [FORGED] Re: draw borders of bars inside of the rectangles in a barplot

2018-05-22 Thread Paul Murrell
vwline with width only "inside" library(vwline) for (i in 1:5) { even <- i*2 left <- bars$x[even] right <- bars$x[even] + convertUnit(bars$width[even], "in", "x", "dimension", "x", "location") bottom <- bars$y[2] to

Re: [R] [FORGED] Re: drc, ggplot2, and gridExtra

2018-05-22 Thread Paul Murrell
for an example that would demonstrate what an echoGrob() function would be for and I think your grid.arrange() example might be what I need - thanks for posting this! Paul On 19/05/18 04:56, Eivind K. Dovik wrote: On Fri, 18 May 2018, Ed Siefker wrote: I have dose response data I have an

Re: [R] [FORGED] How to alpha entire plot?

2018-06-04 Thread Paul Murrell
id.edit("graphics-plot-1-spike-1", raster=as.raster(alphaSpike1)) spike2 <- as.matrix(grid.get("graphics-plot-2-spike-1")$raster) alphaSpike2 <- adjustcolor(spike2, alpha=.3) dim(alphaSpike2) <- dim(spike2) grid.edit("graphics-plot-2-spike-1", raster=as.raster(al

[R] Calculating AIC and BIC for Time Series Models

2018-06-08 Thread Paul Bernal
Dear friends, I have been fitting some TS models from the forecast package like ets(), ses(), hw(), HoltWinters(), stlf(), bats() and tbats(), however, when trying to use the AIC and BIC functions, I receive the following error message: Error in UseMethod("logLik") : no applicable method for 'l

[R] Issues when Trying to Install Packages in R

2018-06-11 Thread Paul Bernal
lp will be greatly appreciated, Best regards, Paul [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide ht

[R] Any Unsupervised Learning Algorithm for Time Series Forecasting in R

2018-06-20 Thread Paul Bernal
Dear friends, Hope you are all doing great. I would like to know if R has any unsupervised algorithm to generate forecasts for historical data. Any help will be greatly appreciated, Best regards, Paul [[alternative HTML version deleted

  1   2   3   4   5   6   7   8   9   10   >