Re: [R] forest plot -metafor package

2021-03-22 Thread Viechtbauer, Wolfgang (SP)
n Behalf Of Usmle Ck >Sent: Monday, 22 March, 2021 7:59 >To: r-help@r-project.org >Subject: [R] forest plot -metafor package > >*I am performing a meta-analysis using the metafor package. My data are >**proportions and I used the Freeman Tukey double arcine (FT)** >transformati

[R] forest plot -metafor package

2021-03-22 Thread Usmle Ck
*I am performing a meta-analysis using the metafor package. My data are **proportions and I used the Freeman Tukey double arcine (FT)** transformation to fit the random effects model. To create a **forest plot with my estimates backtransformed to the original scale of **proportions i found this pos

[R] R: forest plot metafor

2015-12-14 Thread Mario Petretta
To: "r-help@r-project.org" Subject: Re: [R] R: forest plot metafor Message-ID: <077e31a57da26e46ab0d493c9966ac730f2460c...@um-mail4112.unimaas.nl> Content-Type: text/plain; charset="us-ascii" No, this is not possible. But you can just add the weights yourse

Re: [R] R: forest plot metafor

2015-12-12 Thread Viechtbauer Wolfgang (STAT)
rg] On Behalf Of Mario Petretta [petre...@unina.it] Sent: Saturday, December 12, 2015 3:57 PM To: r-help@r-project.org Subject: [R] R: forest plot metafor Many thanks to Professor Michael Dewey for his time. I apologize for the error about the claim to obtain weights from escalc and I realise tha

[R] R: forest plot metafor

2015-12-12 Thread Mario Petretta
11 dicembre 2015 14.47 A: Mario Petretta; r-help@r-project.org Oggetto: Re: [R] forest plot metafor See below On 09/12/2015 18:48, Mario Petretta wrote: > Dear all, > > > > I use metafor package to generate a forest plot showing the weight of each > study in the plot. >

Re: [R] forest plot metafor

2015-12-11 Thread Michael Dewey
See below On 09/12/2015 18:48, Mario Petretta wrote: Dear all, I use metafor package to generate a forest plot showing the weight of each study in the plot. I use the code: library(metafor) data(dat.bcg) res <- rma(ai=tpos, bi=tneg, ci=cpos, di=cneg, data=dat.bcg, measure="RR",

[R] forest plot metafor

2015-12-09 Thread Mario Petretta
Dear all, I use metafor package to generate a forest plot showing the weight of each study in the plot. I use the code: library(metafor) data(dat.bcg) res <- rma(ai=tpos, bi=tneg, ci=cpos, di=cneg, data=dat.bcg, measure="RR", slab=paste(author, year, sep=", "), method="REML")

Re: [R] Forest plot not dispalying

2013-08-05 Thread Sarah Goslee
Hi, I don't see any answers to this, so let me offer a few suggestions. Do you call dev.off() at the end of your plotting code? That seems most likely, since you omit it here. If that doesn't solve your problem: What OS and version of R are you using? If you use the default device for your OS d

[R] Forest plot not dispalying

2013-08-03 Thread wanjiku gichohi
Hi All, I am quite new to R so my question may seem a bit basic. I run the below syntax to create a forest plot with sub group analyses. The forest plot does not display though when I look at the console I see no error message. What could be the problem? ### to save as png file png(filename="

Re: [R] Forest plot with sub group analyses

2013-08-02 Thread John Kane
0 > To: r-help@r-project.org > Subject: [R] Forest plot with sub group analyses > > Greetings. > > I am conducting a meta analyses that has Beta and SE values. > > I am wondering how to place the command to split the analyses. Could you > assist me to develop the command

[R] Forest plot with sub group analyses

2013-08-02 Thread wanjiku gichohi
Greetings. I am conducting a meta analyses that has Beta and SE values. I am wondering how to place the command to split the analyses. Could you assist me to develop the command within the syntax? I would also like to add the N and Year values in the plot. I would like my plot to look like the on

Re: [R] Forest plot with sub-group analyses

2013-08-02 Thread David Winsemius
On Aug 2, 2013, at 5:20 AM, Michael Dewey wrote: > At 18:19 01/08/2013, wanjiku gichohi wrote: >> Greetings. >> >> I am conducting a meta analyses that has Beta and SE values. >> >> I am wondering how to place the command to split the analyses. Could you >> assist me to develop the command with

Re: [R] Forest plot with sub-group analyses

2013-08-02 Thread Michael Dewey
At 18:19 01/08/2013, wanjiku gichohi wrote: Greetings. I am conducting a meta analyses that has Beta and SE values. I am wondering how to place the command to split the analyses. Could you assist me to develop the command within the syntax? I would also like to add the N and Year values in the

[R] Forest plot with sub-group analyses

2013-08-01 Thread wanjiku gichohi
Greetings. I am conducting a meta analyses that has Beta and SE values. I am wondering how to place the command to split the analyses. Could you assist me to develop the command within the syntax? I would also like to add the N and Year values in the plot. I would like my plot to look like the o

Re: [R] Forest plot

2012-12-04 Thread Michael Dewey
At 20:39 03/12/2012, Min Dong wrote: Hi, I am a novice in R. It will be greatly appreciated if someone can advise me with the following questions. There are at least three packages available from CRAN (meta, metafor, rmeta) which draw forest plots so it would help us if you had told us which

[R] Forest plot

2012-12-03 Thread Min Dong
Hi, I am a novice in R. It will be greatly appreciated if someone can advise me with the following questions. 1) How to highlight reference range in forest plot? For example, if 1.5-2 is the reference range, I would like to have all the area between 1.5-2 to be highlighted (such as in grey color).

[R] Forest Plot Text

2011-01-31 Thread Ross, Stephanie
Hello All, I am having a problem creating text for my forest plot using the "forestplot" function in the rmeta package. I think my problem is that I have too many columns of text, so I was wondering if there is a way to shrink my text or to change the default setting. Here is an example:

Re: [R] forest plot

2010-08-24 Thread Adaikalavan Ramasamy
You can also do meta.summaries() - from rmeta package - followed by a plot() on the resulting object. Or for a much more flexible plot try forestplot() function, also from rmeta package, but this requires a bit of work to set it up. Regards, Adai On 24/08/2010 05:50, C.H. wrote: The correc

Re: [R] forest plot

2010-08-23 Thread C.H.
The correct command for forest plot should be "plot" (instead of "forest") if you are using metagen from meta package. For help: ?plot.meta On Tue, Aug 24, 2010 at 11:03 AM, zhangweiwei wrote: > > Dear Sir or Madam, > > > > I am trying to plot forest plot. I extracted odds ratio and their > co

[R] forest plot

2010-08-23 Thread zhangweiwei
Dear Sir or Madam, I am trying to plot forest plot. I extracted odds ratio and their corresponding 95% confidence interval from papers, then I calculated the log(OR) and standard error using the following command OR<-metagen(logOR,selogOR,sm="OR") forest(OR,comb.fixed=TRUE,comb.random=TRU

Re: [R] Forest Plot X-axis cut-off problem

2010-02-24 Thread David Winsemius
On Feb 24, 2010, at 10:44 AM, Scott Weichenthal wrote: Hello R-Help, I am trying to produce a forest plot but the x-axis is being cut off at 2 for some reason. I have attached the file. How can I avoid this? You may have attached the file, but the mail-server then scrubbed it. Only cert

[R] Forest Plot X-axis cut-off problem

2010-02-24 Thread Scott Weichenthal
Hello R-Help, I am trying to produce a forest plot but the x-axis is being cut off at 2 for some reason. I have attached the file. How can I avoid this? Scott __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do re

Re: [R] Forest Plot

2009-12-08 Thread Xin Ge
[mailto:xingemaill...@gmail.com] > Sent: Sunday, December 06, 2009 00:40 > To: Viechtbauer Wolfgang (STAT) > Cc: r-help@r-project.org > Subject: Re: [R] Forest Plot > > > Thanks for your reply. Which function I should explore in "metafor" > > package for this ki

Re: [R] Forest Plot

2009-12-07 Thread Viechtbauer Wolfgang (STAT)
Debyeplein 1 (Randwyck) Original Message From: Xin Ge [mailto:xingemaill...@gmail.com] Sent: Sunday, December 06, 2009 00:40 To: Viechtbauer Wolfgang (STAT) Cc: r-help@r-project.org Subject: Re: [R] Forest Plot > Thanks for your reply. Which function I should explore in "metafor"

Re: [R] Forest Plot

2009-12-05 Thread Xin Ge
..@gmail.com] > Sent: Sunday, December 06, 2009 12:11 AM > To: r-help@r-project.org > Subject: [R] Forest Plot > > Hi All, > > I want to produce a similar "Forest Plot" as it is on the following link, > but my data would be having only two columns (one for "Estimat

Re: [R] Forest Plot

2009-12-05 Thread Viechtbauer Wolfgang (STAT)
9 12:11 AM To: r-help@r-project.org Subject: [R] Forest Plot Hi All, I want to produce a similar "Forest Plot" as it is on the following link, but my data would be having only two columns (one for "Estimate" and other for "Std. Dev"). Can anyone suggest some function

[R] Forest Plot

2009-12-05 Thread Xin Ge
Hi All, I want to produce a similar "Forest Plot" as it is on the following link, but my data would be having only two columns (one for "Estimate" and other for "Std. Dev"). Can anyone suggest some function() {Package} which can take such file as an input and give following forest plot: http://bm