search for: ggthemes

Displaying 17 results from an estimated 17 matches for "ggthemes".

2017 Feb 16
5
Sobre gráficos
...p;keywords=ggplot2 Yo te recomendaría este otro: - https://www.amazon.es/R-Graphics-Cookbook-Winston-Chang/dp/1449316956/ref=sr_1_1?ie=UTF8&qid=1487276054&sr=8-1&keywords=r+graphics+cookbook Y sobre hacer gráficos al "estilo Excel". Puedes utilizar el paquete "ggthemes" que te permite crear gráficos con diferentes tipos de acabados, entre ellos en formato "Excel 2003"...: - https://github.com/jrnold/ggthemes Saludos, Carlos Ortega www.qualityexcellence.es El 16 de febrero de 2017, 19:07, "Hector Gómez Fuerte" <hector3 en gmx.es...
2018 Jan 14
2
consolidate three function into one
Hi Bert, I am sorry to bother you on weekend. I am still struggling on defining a correct function. I first defined the function RFS (see below), then run it by provide the two argument. m52.2cluster <-RFS(inputfile =allinfo_m52, N=2 ) I do not get error message, but no figure displays on screen. I do not know what is going on. Can you help me a little more on this issue? Thank you,
2017 Feb 16
2
Sobre gráficos
Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20170216/7c6f564a/attachment.html>
2018 Jan 15
2
consolidate three function into one
Hi Richard, Thank you so much!! I understand the problem now, I assign a name to the "ggsurvplot" object and then add print(fig) at bottom of function definition, now figure gets printed on screen. Ding # function to generate RFS curves RFS <- function( inputfile, N ) { cluster<- survfit(Surv(RFS_days2, OV_Had_a_Recurrence_CODE) ~ clusters, data =
2018 Jan 14
0
consolidate three function into one
FAQ 7.22 You must print a ggplot object, for example with print(m52.2cluster) For the FAQ, run the line system.file("../../doc/FAQ") in R on your computer. Open up the resulting filepath in your favorite editor and scroll down to 7.22 On Sun, Jan 14, 2018 at 4:21 PM, Ding, Yuan Chun <ycding at coh.org> wrote: > Hi Bert, > > I am sorry to bother you on weekend. >
2018 Jan 15
0
consolidate three function into one
That is certainly OK, but you can also just use print(ggsurvplot(...)) as your final statement. out <- RFS( ...) would then return the ggsurvplot object *and* graph it. Any good R tutorial or a web search will provide more details on function returns, which you might find useful. Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and
2018 Jan 15
1
consolidate three function into one
Thank you, your suggestion is simpler and logically better. I had impression that the last object in a function gets returned, so I did not add the print function at the bottom line of the function definition. Returning an object and graph the object are different process, I am a beginner for writing R function and need to find a good guide source about writing R functions. If you know a good
2018 Jan 14
0
consolidate three function into one
HI R users, I construct dendrogram tree and cut the tree into different clusters, then generate survival curves by the following three functions. All variables are included in an inputfile. Can you help me to consolidate the following three function into one functions? I thought about using if else function, but not sure how to do it. Thank you, Ding # function to generate RFS RFS2cluster
2018 Jan 14
0
consolidate three function into one
Hi Bert, Thank you, yes, you are right. I want to consolidate the three functions into one functions by adding more arguments, adding flexibility to accommodate the number of clusters or the number of Kaplan Meier curves generated in one figure. So, I just need to define one function. Thanks, Ding From: Bert Gunter [mailto:bgunter.4567 at gmail.com] Sent: Sunday, January 14, 2018 9:50 AM
2014 Dec 23
2
CRAN and ggplot2 geom and stat extensions
I am thinking about adding several geom and stat extensions to ggplot2 in the Hmisc package. To do this requires using non-exported ggplot2 functions as discussed in http://stackoverflow.com/questions/18108406/creating-a-custom-stat-object-in-ggplot2 If I use the needed ggplot2::: notation the package will no longer pass CRAN checks. Does anyone know of a solution? I'm assuming that
2007 Jun 17
1
[ggplot2] Change color of grid lines
Hi, I am making myself familiar with ggplot2 (I really like the examples at <http://had.co.nz/ggplot2/>). One thing that really annoys me is the default use of white grid lines and a gray background [1, 2]. I simply would like to have black grid lines and a white background. No problem, I thought, "This is R. There is no if. Only how." (fortune("Simon Blomberg")).
2017 Feb 17
2
Sobre gráficos
...gt;> - >> https://www.amazon.es/R-Graphics-Cookbook-Winston-Chang/dp/1449316956/ref=sr_1_1?ie=UTF8&qid=1487276054&sr=8-1&keywords=r+graphics+cookbook >> >> >> Y sobre hacer gráficos al "estilo Excel". >> Puedes utilizar el paquete "ggthemes" que te permite crear gráficos con >> diferentes tipos de acabados, entre ellos en formato "Excel 2003"...: >> >> >> - https://github.com/jrnold/ggthemes >> >> Saludos, >> Carlos Ortega >> www.qualityexcellence.es >> >&g...
2014 Dec 23
0
CRAN and ggplot2 geom and stat extensions
...this requires using non-exported ggplot2 > functions as discussed in > http://stackoverflow.com/questions/18108406/creating-a-custom-stat-object-in-ggplot2 > > If I use the needed ggplot2::: notation the package will no longer pass > CRAN checks. Does anyone know of a solution? the ggthemes package is on CRAN and uses ggplot2::: so it is at least possible that this will be allowed for Hmisc as well. Best, Ista I'm assuming that Hadley > doesn't want to export these functions or he would have done so a long > time ago because of the number of users who have asked ques...
2007 Sep 02
0
ggplot2 - version 0.5.5
ggplot2 =================================== ggplot2 is a plotting system for R, based on the grammar of graphics, which tries to take the good parts of base and lattice graphics and avoid bad parts. It takes care of many of the fiddly details that make plotting a hassle (like drawing legends) as well as providing a powerful model of graphics that makes it easy to produce complex multi-layered
2007 Sep 02
0
ggplot2 - version 0.5.5
ggplot2 =================================== ggplot2 is a plotting system for R, based on the grammar of graphics, which tries to take the good parts of base and lattice graphics and avoid bad parts. It takes care of many of the fiddly details that make plotting a hassle (like drawing legends) as well as providing a powerful model of graphics that makes it easy to produce complex multi-layered
2017 Feb 21
2
[OT] Sobre gráficos
...t; >> - >> https://www.amazon.es/R-Graphics-Cookbook-Winston-Chang/dp/1449316956/ref=sr_1_1?ie=UTF8&qid=1487276054&sr=8-1&keywords=r+graphics+cookbook >> >> >> Y sobre hacer gráficos al "estilo Excel". >> Puedes utilizar el paquete "ggthemes" que te permite crear gráficos con >> diferentes tipos de acabados, entre ellos en formato "Excel 2003"...: >> >> >> - https://github.com/jrnold/ggthemes >> >> Saludos, >> Carlos Ortega >> www.qualityexcellence.es >> >>...
2007 Aug 11
0
DOE and interaction plot general question
This is a general question about Design of experiments. If i am not allowed to post general questions like this here please accept my apologies and ignore the question. I did a DOE with six factors in eight runs. I know i cannot check for interactions using this design, but i tried the interaction plot and it showed me many interactions. After this I foldover the design and ran the 8 runs to learn