Questions tagged [ggvis]

The goal of ggvis is to make it easy to describe interactive web graphics in R. It fuses the ideas of ggplot2 and shiny, rendering graphics on the web with vega (so one can draw on the canvas or using svg). It is less flexible than raw d3 or vega, but much more succinct and is tailored to the needs of exploratory data analysis.

From the author(s):

ggvis is a data visualization package for R which lets you:

  • Declaratively describe data graphics with a syntax that is similar to ggplot2.
  • View and interact with the graphics on your local computer, or use them in an interactive web application with shiny.
  • Data manipulation and transformation are done in R, and the graphics are rendered in a web browser, using vega. For RStudio users, ggvis graphics display in a viewer panel, which is possible because RStudio is a web browser.

Data manipulation and transformation are done in R, and the graphics are rendered in a web browser, using Vega. For RStudio users, ggvis graphics display in a viewer panel, which is possible because RStudio is a web browser.

486 questions
0
votes
0 answers

Can I use ggvis or shiny to manually (visually) classify points and store the outcome in a new variable?

I have a time series of indoor temperature measurements that I need to classify into heating and non-heating episodes. I applied a classification algorithm and it worked in most cases. The cases where it misclassified is easy to spot on a…
Christiaan
  • 115
  • 9
0
votes
1 answer

Log-scale histogram with formatted breaks in ggvis

I'm interested in converting some graphs from ggplot to ggvis, but there is relatively little information on some of ggvis the functionality. I have a graph of bit rates that I need plotted in log scale with nicely formatted labels. Here's the code…
Grisby_2133
  • 487
  • 2
  • 11
-1
votes
1 answer

How to make a double cumulative graph in R

How to make this type of graphs in r? Product Revenue Quantity Rev Cum Quat Cum Product A 50% 40% 50% 40% Product B 25% 30% 75% 70% Product C 15% 20% 90% 90% Product D 10% 10% 100% 100%
Xenus
  • 43
  • 4
-1
votes
1 answer

how can ggvis export and save plot in Rstudio

I am just switching from Windows to Mac OS. and I cannot save (or export) plot from ggvis in R studio. Now I can still see these two windows: but when I click save, nothing happened. and nothing saved in my directory. Is there anyone knowing how…
-1
votes
1 answer

Plotting : Can't get log axis to work (with Shiny + GGvis + Dplyr)

I have some code written for a reactive shiny app, which has variable axes. I get them to display just as I want, except for one thing. I need both axes to be on a log-scale instead of linear. I found solutions as trans = "log" but that causes my…
-1
votes
1 answer

Error: length(x) not equal to 1

I'm trying to plot some data for eventual statistical analysis. Currently I am using ggvis to plot the data because I saw some cool interactivity and ease of use the function has. Anyways, this is the code that is giving me the error Error:…
RFC_DA
  • 3
  • 4
1 2 3
32
33