Re: [R] Output In R

2015-08-21 Thread Shivi82
Thanks Jeff, this is helpful. The reason i am curious to know this is because I have worked for a long duration in SAS where in it gives us the flexibility to create a data set of our analysis and then we can easily detail out the same to the end user. In R seems like View or Sweave or Shiny are

Re: [R] fill color in boxplot and change number in scale

2015-08-21 Thread ELAD LAZAR
I want to change the numbers in scale Y to c(0,-2.5) from (0,-10) only. and I want to change the color green to yellow and blue to green in the boxplot. Thank you On Fri, Aug 21, 2015 at 6:28 PM, John Kane [via R] < ml-node+s789695n471135...@n4.nabble.com> wrote: > Would this help on colour? >

Re: [R] Error in dis[sppInSample, sppInSample]:subscript out of bounds

2015-08-21 Thread Andrew Park
I'm pretty sure you are using the package Picante. When I received the error you described in my own project, it was due to the naming of species in the community matrix and the phylogenetic tree being slightly different (one separated latin binomials with a space, the other with an underscore). Wh

Re: [R] accessing CRAN through a proxy on 3.2.2

2015-08-21 Thread jim holtman
Thanks. I did find out that for my work environment if I use setInternet(FALSE) then everything seems to work again. They changed the default to TRUE in 3.2.2 and that must have been causing the problem. Jim Holtman Data Munger Guru What is the problem that you are trying to solve? Tell me w

Re: [R] accessing CRAN through a proxy on 3.2.2

2015-08-21 Thread Michael Weylandt
On Fri, Aug 21, 2015 at 12:00 PM, jim holtman wrote: > With the previous versions of R (my latest is 3.2.1) I have had no problem > getting through the proxy for the firewall at work. I installed the latest > version (3.2.2) and now cannot get through the firewall. There is the > session: > > R

Re: [R] Generalised poisson regression

2015-08-21 Thread David Winsemius
On Aug 21, 2015, at 5:22 AM, Babatunde Yakub via R-help wrote: > I want to know how to extract or obtain the deviance for a fitted generalised > poisson regression model. Thanks in advance If you post the code and some sample data, for building such a model, I'm sure someone can help you extra

Re: [R] glm help

2015-08-21 Thread David Winsemius
.csv format is still not accepted by the server. When I say it needs to be a .txt file I mean it it needs to be a .txt file. You need to change its extension to .txt to prevent your mail client from labeling it as csv which is a different type even though I, too, would have thought they sh

Re: [R] glm help

2015-08-21 Thread Joaquín Aldabe
Thanks. Here is in csv format. Cheers, Joaquín. 2015-08-21 12:49 GMT-03:00 Don McKenzie : > You can save to .csv from OpenOffice. > > Sent from my iPad > > > On Aug 21, 2015, at 4:45 AM, Joaquín Aldabe > wrote: > > > > Thankyou all by the comments and sorry for not sending in the adequate > > fo

[R] accessing CRAN through a proxy on 3.2.2

2015-08-21 Thread jim holtman
With the previous versions of R (my latest is 3.2.1) I have had no problem getting through the proxy for the firewall at work. I installed the latest version (3.2.2) and now cannot get through the firewall. There is the session: R version 3.2.2 (2015-08-14) -- "Fire Safety" Copyright (C) 2015 Th

Re: [R] Output In R

2015-08-21 Thread Jeff Newmiller
You really should not be using the console as a way to transfer large amounts of data. CSV files are much better, because sane people don't spend their time looking through thousands of rows of data. You should be giving the data to users in a form where they can filter it down for their needs,

Re: [R] glm help

2015-08-21 Thread Peter Langfelder
Thanks for the correction, I learned something new. Peter On Fri, Aug 21, 2015 at 7:32 AM, Bert Gunter wrote: > Inline. > > -- Bert > Bert Gunter > > "Data is not information. Information is not knowledge. And knowledge > is certainly not wisdom." >-- Clifford Stoll > > > On Thu, Aug 20, 201

Re: [R] fill color in boxplot and change number in scale

2015-08-21 Thread John Kane
Would this help on colour? http://stackoverflow.com/questions/8320462/ggplot2-how-to-adjust-fill-colour-in-a-boxplot-and-change-legend-text You don't say what you want to with the numbers in scale (what scale?) You might want to try something like ?scale_manual and then do some googling. Note alm

Re: [R] Conway Maxwell Poisson

2015-08-21 Thread Bert Gunter
?AIC -- Bert Bert Gunter "Data is not information. Information is not knowledge. And knowledge is certainly not wisdom." -- Clifford Stoll On Fri, Aug 21, 2015 at 5:47 AM, Babatunde Yakub via R-help wrote: > I want to know how to extract or compute the AIC and BIC measures of a conway >

Re: [R] [Rmarkdown] html_document - custom CSS for code snippets

2015-08-21 Thread Duncan Murdoch
On 21/08/2015 9:38 AM, Omar André Gonzáles Díaz wrote: > Hi Community, > > I'm using custom CSS to modify my html_document, genereted using knirt. > > According to this page: > > http://rmarkdown.rstudio.com/html_document_format.html > > I have to turn off: 1) theme: null and 2) highlight: nul

[R] Conway Maxwell Poisson

2015-08-21 Thread Babatunde Yakub via R-help
I want to know how to extract or compute the AIC and BIC measures of a conway maxwell poisson regression model.Thanks [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch

Re: [R] glm help

2015-08-21 Thread Joaquín Aldabe
Thankyou all by the comments and sorry for not sending in the adequate format. I don't have the chance to make txt archives as open office doesn't do it. I'm attaching the data in excel. Please let me know if this is ok. The graph that is wierd to me is the BBSA vs AMGP. It is supposed that AMGP h

Re: [R] Newbie question: error message with install.packages

2015-08-21 Thread Peter Wicher
Peter, Thank you. I tried a different mirror (in TX) and install.packages(“RWeka”) worked. I really appreciate your help. Best, Peter > On Aug 20, 2015, at 3:06 PM, Peter Langfelder > wrote: > > From an older post by Uwe Ligges: > > Anyway: R tried to download the package but got an html

Re: [R] Output In R

2015-08-21 Thread Shivi82
Hi Jim, Please see the sample code: ak<-read.csv("June.csv", header = TRUE) ak%>%select(sfxcode,mod,chargedweight)%>%filter(mod=='AIR') what i am trying to find is selecting the required var and then selecting only AIR as a mode of transportation from mod. I am getting the output but the total ro

[R] fill color in boxplot and change number in scale

2015-08-21 Thread Elad Lazar
hello, I want to change the line color and/or fill of each boxplot and change number in scale what I need to do? ylim<-c(-3,0.5) data.for.plot<-data.frame(accelaration=data_2$lag1min_accelaration, lag=1, alert='red') data.for.plot<-rbind(data.f

[R] Generalised poisson regression

2015-08-21 Thread Babatunde Yakub via R-help
I want to know how to extract or obtain the deviance for a fitted generalised poisson regression model. Thanks in advance [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.et

Re: [R] glm help

2015-08-21 Thread Bert Gunter
Inline. -- Bert Bert Gunter "Data is not information. Information is not knowledge. And knowledge is certainly not wisdom." -- Clifford Stoll On Thu, Aug 20, 2015 at 10:47 PM, Peter Langfelder wrote: > On Thu, Aug 20, 2015 at 10:04 PM, Bert Gunter wrote: > >>> I noticed you made two data-f

[R] plotting over a raster image with control over location and orientation

2015-08-21 Thread ravi
Hi,I would like to get some help in plotting over an image. I have a png image over which I would like to have a plot. I would like to be able to control the location, area and orientation of the plot on the image. I have taken help from the following references :http://journal.r-project.org/arc

[R] [Rmarkdown] html_document - custom CSS for code snippets

2015-08-21 Thread Omar André Gonzáles Díaz
Hi Community, I'm using custom CSS to modify my html_document, genereted using knirt. According to this page: http://rmarkdown.rstudio.com/html_document_format.html I have to turn off: 1) theme: null and 2) highlight: null. And use: 3) css: my_styles.css (my css document). I've achieved to us