Skip to content
Prev 350570 / 398502 Next

Graphs for scientific publication ?

On Thu, Apr 30, 2015 at 8:05 AM, Jeremy Clark <jeremyclarkbio at gmail.com> wrote:
In my opinion that can and should happen, but my prediction is that R
has such a big lead in terms of available functionality and packages
that no one will catch up for at least a decade.

The reason is that a new user wants to draw a
As others have mentioned we can probably help you if you give us a
reproducible example and a clear description of what you are trying to
accomplish. Absent that this just sounds like complaining for the sake
of it.
I think packages are added to the base distribution relatively
infrequently these days. Is

install.packages("ggplot2")

really an issue?

- or at least if someone is to create useful packages for
I'm not understanding what you are trying to say here.

- also personally I would scrap
ggplot2 is in maintenance mode, so it is unlikely that major changes
like that will be introduced.

 In general duplication of packages for plot and ggplot
I'm not sure what kind of duplication you are referring to here,
though in general I also wish there was less duplicated functionality
spread across various R packages.
library(ggplot2)

d1 <- data.frame(x = 1, y = 1, t = "some text")
d2 <- d1
d2$x <- 2

ggplot(d1, aes(x = x, y = y, label = t)) +
  geom_text(hjust = 0, size = 10) +
  geom_text(data=d2, fontface="italic", hjust=1, size = 10)

Works for me.
Probably never (though you could do it yourself if you think it is
worth spending the time to improve it).
I don't think there is one. You could make one following the
documentation at
https://github.com/hadley/ggplot2/wiki/Creating-a-new-geom
Lot's of people publish ggplot2 graphs, standards differ from field to
field and from journal to journal.
http://scholar.google.com/scholar?cites=14238124760782644329&as_sdt=40000005&sciodt=0,22&hl=en
will give you some examples. Beyond that I think you'll have to be
more specific about what exactly you want the graphs to look like.
Message-ID: <CA+vqiLEDdNstQy6N_gg5MFsha-egqJkf+N6Z0uj2T+cqgjkANw@mail.gmail.com>
In-Reply-To: <CACyTWRZJ83Z4zix2DPUOdHNFMVf7sNRNYeGakRnqjXHgqgbbMQ@mail.gmail.com>