Questions tagged [r-highcharter]

Questions related to the usage of the Highcharts JavaScript library in R.

Highcharter is a R wrapper for the javascript library which is a charting library offering numerous interactive chart types such as line, area, bar, pie, scatter, bubble, gauge, polar charts.

Links:

Vignettes

533 questions
0
votes
0 answers

Highchart not working in shiny

I have the following code in app.R library(shiny) library(highcharter) art.data <- read.csv("./../data1.csv", stringsAsFactors = FALSE) # Define UI for application that draws a histogram ui <- fluidPage( titlePanel("Art and R"), …
Charles
  • 63
  • 4
0
votes
1 answer

Gartner magic quadrant in highcharter

I'd like to create a magic quadrant in highcharter. In ggplot2 I found a nice example on https://gist.github.com/grigory93/f370c5eb997fc74b7b7ec83e73d4dffa data = data.frame(Aster_experience=c(-0.7, 0.3), R_experience=c(0.9,…
Tim_Utrecht
  • 1,459
  • 6
  • 24
  • 44
0
votes
1 answer

How to plot Highcharter arearange from matrix

I have a matrix output from the Seasonal package that I filter out the "forecast" column leaving only the time (Month Year) and the "lowerci" and "upperci" entries. This is done via: season13201101FL.forecast[,c('lowerci','upperci')] Sample of the…
wergeld
  • 14,332
  • 8
  • 51
  • 81
0
votes
0 answers

R highchart parallel coordinates

Is it possible to plot a highchart parallel coordinates in R using highcharter library? Something like - https://www.highcharts.com/demo/parallel-coordinates From highcharts documentation about parallelCoordinates option - "This feature requires…
0
votes
2 answers

Highcharter treemap not rendering in shinydashboard

The treemap was working fine in shiny but when I converted to shinydashboard the treemap stopped working. It just show a blank block now. Any ideas how to fix this? This is in my server.R output$TreeMap<-renderHighchart2({TM1<-hctreemap2(data =…
Allie
  • 105
  • 9
0
votes
1 answer

R HighCharter Stock Graph not correctly pulling dates

I am working with HighCharter and I am trying to create a timeseries graph but the dates are not being pulled onto the chart. Below is my current code. I do not have a continuous time series but I do not think that should play a role in the…
Kevin
  • 1,974
  • 1
  • 19
  • 51
0
votes
1 answer

Grouped barchart not group panel squashed

I was trying to do a grouped bar chart using highcharter, such as the one found here. A reproducible example, library(highcharter) library(tidyverse) temp=structure(list(Theme = c("A1", "A1", "A1", "A1", "A1", "A1", "A1", "A1", "A1", "A1", "A1",…
qoheleth
  • 2,219
  • 3
  • 18
  • 23
0
votes
2 answers

R Highcharter specify continuous x and y axis

I am a bit confused with use of highcharter hc_add_series function. I am trying to create a plot where I need to specify both x and y axis, where x axis are continuous. I have a data-frame, for example: df_plot <- cbind( seq(0, 1, by = 0.1), …
0
votes
2 answers

show/hide serie in highchart/shiny with an action button

I want to be able to hide/show a serie in a highchart plot in shiny. I want to have the same smooth change as the one obtained when clicking on the legend but when clicking on a button. I want to be able to reproduce this behaviour but in a shiny…
maRmat
  • 363
  • 1
  • 14
0
votes
1 answer

cannot draw second regression line in scatter plot on highchart

I have a set of data with two categories. I want to draw a highchater scatter plot in r with each category has its own color and independent regression line of itself. I used a for loop to realize the different color and calculated two points of my…
刘小明
  • 1
  • 1
0
votes
1 answer

Highcharter/Highmap: change legend label format for billions

I would like to change the label format of the legend in a highcharter map. I have values ranging from 0 to 200 billion. The first steps, i.e. thousand (k) and million (M), are fine, but I need to change the abbreviation for billion "G". I am not…
Martin G.
  • 159
  • 1
  • 15
0
votes
0 answers

Drill Down of grouped column chart using r-highcharter library

I am struggling in adding one level drilldown in my grouped column chart made using highcharter. To explain, I am taking using the "vaccines" dataset available in highcharter library : My code (similar) that creates the grouped column chart…
0
votes
1 answer

highcharter - where are the already downloaded maps for hcmap() stored on a (shiny) server?

My setup: I am using two selectizeInputs togehter with hcmap() in order to display a world map (this one custom/world-palestine-highres) where users can change the institute and the variable they want to look at. Hence, the map gets rendered…
Martin G.
  • 159
  • 1
  • 15
0
votes
0 answers

Issue displaying map highcharter shiny

I met some problems in displaying a map in a shiny using the package highcharter. When I try to display it in my RStudio Viewer, all is ok, my map is fine. Whereas, when I try to display it in my shiny app via the functions highchartOutput(in the…
Mez13
  • 168
  • 1
  • 3
  • 13
0
votes
1 answer

How to convert xts object in JSON in R?

I would like to convert an xts object which has the class Date into JSON with jsonlite::toJSON but it returns an error saying No method asJSON S3 class: zoo. My objective is to have a JSON file that can be handled by highcharts.js library, so I'm…
Florent
  • 1,791
  • 22
  • 40
1 2 3
35
36