similar to: help on rmeta

Displaying 20 results from an estimated 500 matches similar to: "help on rmeta"

2006 Apr 24
1
rmeta: forest plot problem
Der useRs, I'm working on meta analysis using rmeta package. Using code below I plot the forest plot: library(rmeta) data (catheter) a<-meta.MH (n.trt, n.ctrl, col.trt, col.ctrl, data=catheter, names=Name, subset=c(13,6,5,3,7,12,4,11,1,8,10,2)) summary(a) # odds ratio values and confidence intervals metaplot(a$logOR, a$selogOR, nn=a$selogOR^-2,a$names, summn=a$logMH, sumse=a$selogMH,
2005 Oct 19
6
forrest plot
Hi, can you tel me how can I make a Forrest Plot with R? It is possible and easy or are there a more practical free software available? Than you Mic [[alternative HTML version deleted]]
2006 Nov 16
3
Newbie problem ... Forest plot
Hello! I have some data stored into 2 separate csv file. 1 file (called A.csv) (12 results named Group1, Group2, Group3, etc...) odds ratios, 2 file (called B.csv) 12 corresponded errors. How to import that data into R and make forest plot like I saw inside help file Rmeta and meta with included different font colors and names trough X and Y axis. I know for meta libb ... out <-
2009 Aug 11
1
metaplot in rmeta: y-axis disappears
Hi, I have a problem with the metaplot-function in rmeta. After plotting a Forest Plot with "metaplot", no y-axis is shown for normal plots anymore. Does someone know, why this is and how I can solve it? Thank you in advance! Kind regards, Roman -- View this message in context: http://www.nabble.com/metaplot-in-rmeta%3A-y-axis-disappears-tp24917401p24917401.html Sent from the R
2010 Jul 20
1
metaplot (rmeta)
Greetings I have been trying to use metaplot to create a forest plot of my meta-analysis results. My data is in the form of ORs, so I've been inputting the ORs as the point estimate (mn) and the SEs of the logORs as the SE (se). However, whilst the point estimates appear to be displayed properly, many of the confidence intervals go below zero (not possible for an OR, as far as I know). I
2009 Nov 22
1
Metaplot Axis Annotation
Hello, We are looking to adjust the font size of the axis annotation on the graph that results from use of the metaplot() function. Metaplot seems to respond to cex and cex.lab to change those graphical parameters, but it doesn't respond to cex.axis. Is there a way to work around this by creating a customized x-axis, and if so, how? Thanks for all your help. Syntax is below. Best, Dawn
2009 Jun 18
1
lattice logaritmic scale (basis "e" ), rewriting labels using xscale.component
Hi there, sorry for troubling everybody once again, I've got a problem rewriting Sarkar's function for rewriting the tick locations in a logaritmic way (s. http://lmdvr.r-forge.r-project.org/code/Chapter08.R): His example works for log 2 but I need log e (natural logarithm). My problem is that if I replace 2 with "e" (using paste()), I get the error message that the location
2009 Jun 29
1
Meta-Analysis: Metaplot Labels, SE, and Summary
Hello, I'm ashamed to admit that I'm an R and meta-analysis neophyte just when my colleagues and I are attempting to run R for that latter purpose. We would like to construct a graph of the 95% confidence intervals of odds ratios (inverse odds ratios, actually). We are using the metaplot() function in the "rmeta" package. While we can construct a basic plot, we cannot configure
2006 Aug 24
1
metaplot and meta.summaries
Hello, After looking through the archive and documentation for quite some time, I'd be very happy about some help with metaplot and meta.summaries. metaplot: --------- Can I change the label size? I've got 126 values and the intersection of the labels makes it impossible to read them. Why do I have to give sumse (Standard Error) and sumnn (Precision) of the summary estimate? I can
2008 May 28
2
rmeta package: metaplot or forestplot of meta-analysis under DSL (ramdon) model
Dear all, I could not draw a forest plot for meta-analysis under ramdon models using the rmeta package. The rmeta has a default function for MH (fixed-effect) model. Has the rmeta package been updated for such a function? Or someone revised it and kept a private code? I would appreciate it if you could provide some information on this question. Thanks, Andrew This email is intended
2011 Aug 15
1
lattice: How to get log base for each axis inside panel function?
Hello! I'd like to have a function to draw correct grid while using log axis with xyplot from lattice package. Right now I have the following code inside of my panel function: lim <- current.panel.limits() v <- latticeExtra:::logTicks(2^lim$xlim, loc=1) h <- latticeExtra:::logTicks(2^lim$ylim, loc=1) panel.abline(h=log2(h), v=log2(v), col="LightGray") Is there an easy way
2012 May 02
1
Forestplot question
Hi, I'm trying to build a Forest Plot using the second and fourth columns in the table (test.csv) below. My code is the following: curated <- data.frame("test.csv") tmp <- curated$coef tmp1 <- curated$se_coef plt <- metaplot(tmp, tmp1, xlim = c(-.45, .45)) I keep getting the following error at the last line and am not sure why: Error in if (is.na(lower[i] + upper[i]))
2008 Aug 25
5
How to do a meta-analysis plot
Dear R-list, I'd like to do a meta-analysis plot similar to install.packages('rmeta') require(rmeta) data(catheter) a <- meta.MH(n.trt, n.ctrl, col.trt, col.ctrl, data=catheter, names=Name, subset=c(13,6,5,3,7,12,4,11,1,8,10,2)) summary(a) plot(a) (see attached file) by using my own OR (Odds Ratio) and 95% Confidence Interval data set, which looks like
2011 Apr 06
1
metaplot
Dear all, I have a four variable: Stuy.Name, OR, 95%LCI and 95%UCI and I would like to create a meta analysis plot. I can't use meta.MH function in metaplot because I do not have n.trt, n.ctrl, col.trt, col.ctrl are not available! Is there an alternative way to do it? Many thanks in advance, Cheba [[alternative HTML version deleted]]
2004 Mar 23
1
help on data.frames/data.entry
Dear R-help, I have a matrix D of dimensions 200 x 26; rows are my cases and columns are my variables. I would like to create a data.frame "DF" with row.names= myrownames (this is a vector of characters of length 200) and column names "mycolnames" (a vector of characters of length 26). I could find the option in data.frame for naming rows, but not for naming columns. So I
2004 Jul 22
0
RE: Comparison of correlation coefficients - Details
Dear Ioannis Thank you very much for pointing me to meta-analysis. Although it may not solve my problem with the normalization, it gives me some other options to display the different correlation coefficients. One possibility is the use of Funnel plots, which are even available in library(rmeta). Another possibility is the use of forest-plots, as implemented in rmeta as metaplot. Sorrowly,
2012 Dec 13
2
Position available University of Oxford UK
*Postdoctoral Researcher - Bioinformatics/Statistics University of Oxford, UK *An exciting opportunity has arisen for a Postdoctoral Researcher in Bioinformatics/Statistics to join the Department of Oncology at the University of Oxford. The postholder will work under the supervision of Dr Francesca Buffa and Prof Adrian Harris, and will work closely with staff in the Molecular Oncology
2006 Oct 20
2
Forest plot
Has anyone developed a function to generate a forest plot, the one used a lot in meta-analysis? Joseph F. Lucke, PhD Biostatistician Center for Clinical Research and Evidence-based Medicine Department of Pediatrics School of Medicine University of Texas Health Science Center at Houston Voice: 713-500-5651 Email: Joseph.F.Lucke@uth.tmc.edu Postal Mail: PO Box 20708, Houston, TX 77225-0708
2008 Jul 21
0
xyplot: distance between axis and axis-label gets wrong
Hi! I just started reading the wonderful Lattice book and I finally found a quite elegant solution for nicer log-ticks. However, there are some problems with the spacing between the axis label and the axis tick marks. It seems that lattice estimates the space wich gets used by the labels before it calls the yscale.components function. However, this function can change what is supposed to be
2007 Apr 07
2
Setting where the x-axis crosses the y-axis
Hi all, my apologies for a probably very obvious question but i can't figure out if, on a bar plot, there is a simple way to have the x-axis cross the y-axis at 1, when the y-axis is on a log-scale? I want to draw a bar plot, and have some of the bars "drop" below 1 while starting from 1. Is this possible? I have been trying various things using barplot, barplot2 etc... without