Questions tagged [googlevis]

The googleVis package provides an interface between R and the Google Chart Tools, formerly know as Google Visualisation API.

The googleVis package provides an interface between R and the Google Chart Tools, formerly know as Google Visualisation API. It allows users to create web pages with interactive charts based on R data frames, using the Google Chart Tools and to display them either via the local R HTTP help server or within their own sites, without uploading the data to Google.

Resources:

294 questions
0
votes
0 answers

Rstudio shiny maximise width of mainPanel for 1920x1080 screen

I've got an Rstudio shiny webpage with a sidePanel and a mainPanel, and I want to maximise the usable space for the mainPanel on a 1920x1080 screen. Even if I use this in gvisTable: gvisTable(tabData,options=list(height='100%',width='100%')) There…
719016
  • 9,922
  • 20
  • 85
  • 158
0
votes
1 answer

Colours in Google Stacked Chart

I am trying to change the colours in a goolge stacked chart. I can not seem to replicate the suggestion given for color argument in the help file of 'gvisSteppedAreaChart' df=data.frame(year=1:3, val1=c(1,3,4), val2=c(23,12,32)) SteppedArea1 <-…
guyabel
  • 8,014
  • 6
  • 57
  • 86
0
votes
1 answer

R googleVis gvisMotionChart set colorvar to Unique Colours?

I am calling gvisMotionChart from the R package googleVis and I would like to set the colorvar parameter to "Unique colours". I tried colorvar="Unique colours" but it doesn't work for me. I would also like to set it to select=All by default,…
719016
  • 9,922
  • 20
  • 85
  • 158
0
votes
0 answers

Does googleVis charts and graphs have a file upload limit?

When I upload a file greater than 5MB in my Shiny application with a gVis table, the program crashes "Fatal R error". When I take the gVis table out, my program runs fine. I am also using options(shiny.maxRequestSize=-1) to bypass the normal 5MB…
user2522217
  • 345
  • 1
  • 7
  • 20
0
votes
0 answers

Why is my googleVis chart causing a "R encountered a fatal error" when trying to upload 5+MB files in R Shiny?

I am making an app using R Shiny. I put this command at the top of my program: options(shiny.maxRequestSize=-1) Apparently this command allows the user to upload any file size (default is 5 MB limit). I've also…
jeffrey
  • 3,196
  • 7
  • 26
  • 44
0
votes
1 answer

Timevar Date for googleVis MotionChart R

Data set i am using is shown below. It is a csv file. Date Subject val1 val2 val3 2010-05-01 12 -0.6155 0.5083 2.6286 2010-06-03 13 0.96416 0.785 1.41 …
stackoverflowuser
  • 252
  • 1
  • 3
  • 12
0
votes
1 answer

Fallback text if no results in Google Charts API

I am unable to find the right function from the google charts (Google Visualization API) that would set the text/message to be shown if no data is supplied to it/data supplied does not yield a chart(eg: all y values 0)
Manu
  • 609
  • 8
  • 18
0
votes
2 answers

Google motion chart timevar behavior in R

Can someone explain me why i'm getting several 'points' at the same date when i click 'play'? Each date is unique, so it doesn't make sense to me. My code is: require(googleVis) n = 100 dates = seq(Sys.Date(), by = 'day', length = n) x = 10 *…
Fernando
  • 7,785
  • 6
  • 49
  • 81
-3
votes
1 answer

using gvisTimeline in R

I am new to using GoogleVis library in R and I have a CSV file which I have converted to a data.frame because I am required to feed a data.frame to gvisTimeline. Can you please tell me how should I fix the parameter? prob <-…
Mona Jalal
  • 34,860
  • 64
  • 239
  • 408
1 2 3
19
20