<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <div class="moz-cite-prefix">quanto ao fundo cinza:<br>
      <br>
      my_theme <-<br>
        theme(<br>
          legend.position = "bottom",<br>
          plot.title = element_text(size = rel(1.5)),<br>
          panel.background =<br>
            element_rect(fill = "white"),<br>
          panel.border =<br>
            element_rect(colour = "black", fill="transparent",
      linetype="solid"),<br>
          panel.grid.major =<br>
            element_line(colour = "darkgrey", linetype = "dashed"),<br>
          panel.grid.minor =<br>
            element_line(colour = "dark grey", linetype = "dotted")<br>
        )<br>
      <br>
      forestplot(d) + my_theme<br>
      <br>
      este my_theme é um tema que eu utilizo em meus gráficos. Basta
      alterar nos locais certos<br>
      <br>
      quanto ao posicionamento da linha vertical, substitua 'aes(x=0)'
      por 'aes(x=1)'<br>
      <br>
      <br>
      <pre class="moz-signature" cols="72">[]s
Leonard de Assis
assis <dot> leonard <at> gmail <dot> com
</pre>
      Em 25/10/2012 13:18, Humberto escreveu:<br>
    </div>
    <blockquote cite="mid:BLU0-SMTP72CAD314EFED50655E5BBDB47F0@phx.gbl"
      type="cite">
      <meta content="text/html; charset=ISO-8859-1"
        http-equiv="Content-Type">
      <div class="moz-cite-prefix">Olá Andre, Ivan e Leonard<br>
        <br>
        Muito obrigado pela ajuda! eu consegui dessa forma aqui! Porém
        no eixo dos x esta aperecendo numeros que se sobrepostos aos
        nomes das espécies que não estou conseguindo retirar. Alguem
        poderia me ajudar nesse sentido!<br>
        <br>
        Gostei dessa alternativa do forestplot. Como faço para retirar
        esse background (cinza) do forestplot e adicionar a linha
        vertical no 1?<br>
        <br>
        E mais uma vez obrigado a todos pela ajuda<br>
        <br>
        tableMat1a é a tabela abaixo<br>
        <br>
        <span class="Apple-style-span" style="border-collapse: separate;
          font-family: 'Lucida Console'; font-size: 13px; font-style:
          normal; font-variant: normal; font-weight: normal;
          letter-spacing: normal; line-height: 15px; orphans: 2;
          text-indent: 0px; text-transform: none; white-space: pre-wrap;
          widows: 2; word-spacing: 0px; background-color: rgb(0, 34,
          64);">
          <pre tabindex="0" class="GDXA2EVBEAB" style="font-family: 'Lucida Console'; font-size: 10pt !important; outline-style: none; outline-width: initial; outline-color: initial; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; white-space: pre-wrap !important; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; line-height: 1.2; ">                   Specie    lci     or   uci
1             Bigeye tuna 0.0952 0.1293 0.176
2          Yellowfin tuna 0.0916 0.1255 0.172
3                Albacore 0.0913 0.1562 0.267
4               Swordfish 0.1311 0.1565 0.187
5                Sailfish 0.0368 0.0923 0.231
6            White marlim 0.1300 0.2161 0.359
7             Blue marlim 0.0738 0.1471 0.293
8              Blue shark 0.1303 0.1653 0.210
9         Crocodile shark 0.1123 0.1792 0.286
10       Pelagic stingray 0.1074 0.2052 0.392
11           Turtle oliva 0.1275 0.3802 1.134
12 Oceanic whitetip shark 0.1658 0.3788 0.866</pre>
        </span><br>
        <br>
        par(mar=c(2, 8, 0, 0))<br>
        y.axis <- c(length(tableMat1a$or):1)<br>
        plot(tableMat1a$or,y.axis, type = "p", axes = F, xlab = "", ylab
        = "", pch = 19, cex = 1.2, <br>
             xlim = c(0,1.2), xaxs = "r", main = "")<br>
        segments(tableMat1a$lci, y.axis, tableMat1a$uci, y.axis, lwd = 
        1.5)<br>
        axis(1, at = seq(0,1.2,by=0.2), labels = NA, tick = T,<br>
             cex.axis = 1.2, mgp = c(2,.7,0))<br>
        axis(2, at = y.axis, label = tableMat1a$Specie, las = 1, tick =
        F, ,mgp = c(2,.6,0),cex.axis = 1.2)<br>
        segments(1,1,1,30,lty=1)<br>
        <br>
        <br>
        <br>
        <br>
        <br>
        <br>
        <br>
        <br>
        <br>
        Em 10/25/2012 12:09 AM, Leonard de Assis escreveu:<br>
      </div>
      <blockquote cite="mid:50889F53.1070904@gmail.com" type="cite">
        <meta content="text/html; charset=ISO-8859-1"
          http-equiv="Content-Type">
        <div class="moz-cite-prefix">Andre,<br>
          <br>
          vi a pouco na lista do ggplot2 um script que pode ser o que
          voce procura.<br>
          <br>
          # d is a data frame with 4 columns<br>
          # d$x gives variable names<br>
          # d$y gives center point<br>
          # d$ylo gives lower limits<br>
          # d$yhi gives upper limits<br>
          forestplot <- function(d, xlab="Odds Ratio", ylab="Study"){<br>
            require(ggplot2)<br>
            p <- ggplot(d, aes(x=x, y=y, ymin=ylo, ymax=yhi)) +<br>
              geom_pointrange() +<br>
              coord_flip() +<br>
              geom_hline(aes(x=0), lty=2) +<br>
              ylab(xlab) +<br>
              xlab(ylab) #switch because of the coord_flip() above<br>
            return(p)<br>
          }<br>
          <br>
          # Create some dummy data.<br>
          d <- data.frame(x = toupper(letters[1:10]),<br>
                          y = rnorm(10, .05, 0.1))<br>
          d <- transform(d, ylo = y-1/10, yhi=y+1/10)<br>
          <br>
          forestplot(d)<br>
          <br>
          <pre class="moz-signature" cols="72">[]s
Leonard de Assis
assis <dot> leonard <at> gmail <dot> com
</pre>
          Em 24/10/2012 23:55, andrebvs escreveu:<br>
        </div>
        <blockquote
          cite="mid:50889c0bc6772_1ce695b9c7c3cf@a4-winter4.tmail"
          type="cite">
          <div>Olá Humberto!</div>
          <div> </div>
          <div>Eu até começei a fazer o que estava querendo, porém, não
            consegui implementar os intervalos de confianças com as
            respectivas médias. Segue um script abaixo até onde cheguei,
            se alguém puder continuar e sanar sua dúvida, seria uma
            grande ajuda!</div>
          <div><br>
            library(fields)<br>
            plot(xlim=c(0,1.8),5:10,
            bty='n',type="n",axes=F,xlab="Relative
            catchability",ylab="")<br>
            x <- seq(0.0,1.8,by=0.2)<br>
            y <- seq(5,14)<br>
            u <- 1<br>
            v <- 50<br>
            <br>
            axis(1,lwd=2,at = x,labels = formatC(x, format="fg"))<br>
            abline(v = 1, col = "black",lty=1,lwd=2)<br>
            arrow.plot(x[6],y[6],v,u,arrow.ex=.4, length=.2,
            col='black', lwd=2) <br>
            arrow.plot(x[6],y[6],u-360,v-45,arrow.ex=.5, length=.2,
            col='black', lwd=2) <br>
            <br>
            text(0,7,"Bigeye\nYellowfin
            tuna\nAlbacore\nSwordfish\nSailfish\nWhite marlim\nBlue
            marlim\nBlue shark\nCrocodile shark\nPelagic
            stingray\nTurtle oliva\nOceanic whitetip shark",cex =
            0.8,adj=c(0,0))</div>
          <div><br>
            text(1.1,5,"Species\nBigeye tuna\nYellowfin
            tuna\nAlbacore\nSwordfish\nSailfish\nWhite marlim\nBlue
            marlim\nBlue shark\nCrocodile shark\nPelagic
            stingray\nTurtle oliva\nOceanic whitetip shark",cex =
            0.8,adj=c(0,0))<br>
            <br>
            <br>
          </div>
          <div><em>Att.</em></div>
          <div><em>André Barbosa Ventura da Silva</em></div>
          <div> </div>
          <div> </div>
          <hr style="border-top: 1px solid #ccc;">
          <div>Em 24/10/2012 20:38, <strong>Ivan Bezerra Allaman < <a
                moz-do-not-send="true" class="moz-txt-link-abbreviated"
                href="mailto:ivanalaman@yahoo.com.br">ivanalaman@yahoo.com.br</a>
              ></strong> escreveu:</div>
          <div style="color: #000; background-color: #fff; font-family:
            arial, helvetica, sans-serif; font-size: 12pt;">
            <div><span>Utilize as funções plot, segments e par para
                obter êxito! O link abaixo será útil também.</span></div>
            <div style="color: #000000; font-size: 16px; font-family:
              arial,helvetica,sans-serif; background-color: transparent;
              font-style: normal;"> </div>
            <div style="color: #000000; font-size: 16px; font-family:
              arial,helvetica,sans-serif; background-color: transparent;
              font-style: normal;"><span><a moz-do-not-send="true"
                  href="http://gallery.r-enthusiasts.com/"
                  target="_blank">http://gallery.r-enthusiasts.com/</a><br>
              </span></div>
            <div style="color: #000000; font-size: 16px; font-family:
              arial,helvetica,sans-serif; background-color: transparent;
              font-style: normal;"> </div>
            <div style="color: #000000; font-size: 16px; font-family:
              arial,helvetica,sans-serif; background-color: transparent;
              font-style: normal;"><span>(S,f,P)<br>
              </span></div>
            <div><span>Allaman</span></div>
            <div> </div>
            <div style="background-color: transparent;" align="center"><span
                style="background-color: transparent; font-family: comic
                sans ms; font-size: small;"><span style="font-size:
                  xx-small;"><strong> </strong></span></span></div>
            <div style="text-align: left; background-color:
              transparent;" align="center"><span
                style="background-color: transparent;"><span
                  style="font-family:
                  courier,monaco,monospace,sans-serif; font-size:
                  small;">\begin{signature}</span></span></div>
            <div style="text-align: left; background-color:
              transparent;" align="center"><span
                style="background-color: transparent;"><span
                  style="font-family:
                  courier,monaco,monospace,sans-serif; font-size:
                  small;"><<>>=</span></span></div>
            <div style="text-align: left; background-color:
              transparent;" align="center"><span
                class="Apple-style-span" style="font-family:
                courier,monaco,monospace,sans-serif; font-size: small;">Prof.
                Dr. Ivan Bezerra Allaman</span></div>
            <div style="text-align: left; background-color:
              transparent;" align="center"><span
                class="Apple-style-span" style="font-family:
                courier,monaco,monospace,sans-serif; font-size: small;">Universidade
                Estadual de Santa Cruz</span></div>
            <div style="text-align: left; background-color:
              transparent;" align="center"><span
                class="Apple-style-span" style="font-family:
                courier,monaco,monospace,sans-serif; font-size: small;">Departamento
                de Ciências Exatas e Tecnológicas</span></div>
            <div style="text-align: left; background-color:
              transparent;" align="center"><span
                class="Apple-style-span" style="font-family:
                courier,monaco,monospace,sans-serif; font-size: small;">Ilhéus/BA
                - Brasil</span></div>
            <div style="text-align: left; background-color:
              transparent;" align="center"><span
                class="Apple-style-span" style="font-family:
                courier,monaco,monospace,sans-serif; font-size: small;">Fone:
                +55 73 3680-5596</span></div>
            <div style="text-align: left; background-color:
              transparent;" align="center"><span
                class="Apple-style-span" style="font-family:
                courier,monaco,monospace,sans-serif; font-size: small;">E-mail:
                <a moz-do-not-send="true"
                  class="moz-txt-link-abbreviated"
                  href="mailto:ivanalaman@yahoo.com.br/ivanalaman@gmail.com">ivanalaman@yahoo.com.br/ivanalaman@gmail.com</a></span></div>
            <div style="text-align: left; background-color:
              transparent;" align="center"><span
                style="background-color: transparent;"><span
                  style="font-family:
                  courier,monaco,monospace,sans-serif; font-size:
                  small;">@</span></span></div>
            <div style="text-align: left; background-color:
              transparent;" align="center"><span
                style="background-color: transparent;"><span
                  style="font-family:
                  courier,monaco,monospace,sans-serif; font-size:
                  small;">\end{signature}</span></span></div>
          </div>
          <div> </div>
          <br>
          <fieldset class="mimeAttachmentHeader"></fieldset>
          <br>
          <pre wrap="">_______________________________________________
R-br mailing list
<a moz-do-not-send="true" class="moz-txt-link-abbreviated" href="mailto:R-br@listas.c3sl.ufpr.br">R-br@listas.c3sl.ufpr.br</a>
<a moz-do-not-send="true" class="moz-txt-link-freetext" href="https://listas.inf.ufpr.br/cgi-bin/mailman/listinfo/r-br">https://listas.inf.ufpr.br/cgi-bin/mailman/listinfo/r-br</a>
Leia o guia de postagem (<a moz-do-not-send="true" class="moz-txt-link-freetext" href="http://www.leg.ufpr.br/r-br-guia">http://www.leg.ufpr.br/r-br-guia</a>) e forneça código mínimo reproduzível.</pre>
        </blockquote>
        <br>
        <br>
        <fieldset class="mimeAttachmentHeader"></fieldset>
        <br>
        <pre wrap="">_______________________________________________
R-br mailing list
<a moz-do-not-send="true" class="moz-txt-link-abbreviated" href="mailto:R-br@listas.c3sl.ufpr.br">R-br@listas.c3sl.ufpr.br</a>
<a moz-do-not-send="true" class="moz-txt-link-freetext" href="https://listas.inf.ufpr.br/cgi-bin/mailman/listinfo/r-br">https://listas.inf.ufpr.br/cgi-bin/mailman/listinfo/r-br</a>
Leia o guia de postagem (<a moz-do-not-send="true" class="moz-txt-link-freetext" href="http://www.leg.ufpr.br/r-br-guia">http://www.leg.ufpr.br/r-br-guia</a>) e forneça código mínimo reproduzível.</pre>
      </blockquote>
      <br>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
R-br mailing list
<a class="moz-txt-link-abbreviated" href="mailto:R-br@listas.c3sl.ufpr.br">R-br@listas.c3sl.ufpr.br</a>
<a class="moz-txt-link-freetext" href="https://listas.inf.ufpr.br/cgi-bin/mailman/listinfo/r-br">https://listas.inf.ufpr.br/cgi-bin/mailman/listinfo/r-br</a>
Leia o guia de postagem (<a class="moz-txt-link-freetext" href="http://www.leg.ufpr.br/r-br-guia">http://www.leg.ufpr.br/r-br-guia</a>) e forneça código mínimo reproduzível.</pre>
    </blockquote>
    <br>
  </body>
</html>