The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.

ggvis (0.4.9)

ggvis (0.4.8)

ggvis 0.4.7

ggvis 0.4.6

ggvis 0.4.5

ggvis 0.4.4

ggvis 0.4.3

ggvis 0.4.2

ggvis 0.4.1

ggvis 0.4

Usability improvements

Internal changes

ggvis 0.3.0.1

ggvis 0.3

ggvis 0.2

The main change is that ggvis now uses a functional approach to building plots. Instead of doing:

ggvis(mtcars, props(~wt, ~mpg)) + layer_point()

You now do:

layer_points(ggvis(mtcars, ~wt, ~mpg))

This is a bit clunky, but we streamline it by using the pipe operator (%>%, from magrittr):

mtcars %>%
  ggvis(~wt, ~mpg) %>%
  layer_points()

We think that this change will make it a little easier to create plots, and just as importantly, it’s made the internals of ggvis much much simpler (so now we actually understand how it works!). As part of these changes:

ggvis 0.1

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.