r-highcharter Questions
1
Solved
When using highcharter for interactive plots, how can I specify that datapoints in a group must highlight together?
library(highcharter)
library(dplyr)
library(tidyr)
dfr <- data.frame(sample=c...
Christian asked 15/1, 2018 at 12:42
1
Solved
I have a data like this example:
df <-
data.frame(
date = seq(as.Date("2015-01-01"), as.Date("2015-12-31"), 100),
id = rep(LETTERS, each = 4)[1:100],
replicate(2, sample(1001, 100))
)
Pl...
Skyros asked 21/10, 2018 at 15:52
1
Solved
I'm trying to create a dynamic number of tabs in my rmd with some content inside.
This one doesn't help.
Something like this:
---
title: "1"
output: html_document
---
```{r }
library(hig...
Gravitation asked 13/8, 2020 at 14:34
2
Solved
Could someone help me to implement this excellent jsfiddle in a "shiny" application with the highcharter package ?
https://jsfiddle.net/BlackLabel/nr1y47a9/
I started writing something like this b...
Dissonance asked 8/5, 2020 at 13:17
1
Solved
I'm working on shiny app that contains two drill down charts, both read from same data file the only difference is the first chart excute summation, while the second one gets averages, the issue is...
Quench asked 20/12, 2019 at 22:30
2
Solved
I want to plot an organization chart with highcharter (or, optionally, with another R highchart plotting library). I know that there are already some questions about that topic but they seem ...
Diagonal asked 24/10, 2019 at 11:21
1
I'm trying to display an interactive graph requested through a plumber API and display it in a shiny application.
I can't figure out how to make it work, using for example highcharter.
My example a...
Anyone asked 9/10, 2018 at 13:24
2
I want to plot a Sankey diagram in R using highcharter package. I face a problem with formatting it. Here is the example.
# devtools::install_github("jbkunst/highcharter")
library(highcharter)
hc...
Donnelly asked 14/6, 2018 at 14:54
1
Solved
Here is my snippet,
output$map <- renderHighchart({
region_map = hcmap("countries/nz/nz-all")
highchart(type = "map") %>%
hc_title(text = "Average") %>%
hc_add_series_map(map = regio...
Sholokhov asked 23/11, 2017 at 9:32
1
Solved
I created a chart using highcharter in a shiny dashboard and I am trying to customize the tooltip. The chart is combined line and scatter plot. I would like it to do the following:
1) Have a singl...
Sunbeam asked 26/10, 2017 at 11:42
1
Solved
I'm trying to set a specific range in my highcharter axes plot
library(highcharter)
h <- highchart() %>%
hc_title(text = "Scatter chart with size and color") %>%
hc_add_series_sca...
Carlenecarleton asked 8/2, 2017 at 17:15
1
Solved
I am attempting to create a flexdashboard that uses an event (map_marker_click) in Leaflet to show a highcharts column chart in another chart on the same page. I have taken from other examples and ...
Bolger asked 14/6, 2016 at 19:43
1
© 2022 - 2024 — McMap. All rights reserved.