apexcharter/search.json

2 lines
982 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[{"path":"https://dreamrs.github.io/apexcharter/LICENSE.html","id":null,"dir":"","previous_headings":"","what":"MIT License","title":"MIT License","text":"Copyright (c) 2020 Victor Perrier Permission hereby granted, free charge, person obtaining copy software associated documentation files (“Software”), deal Software without restriction, including without limitation rights use, copy, modify, merge, publish, distribute, sublicense, /sell copies Software, permit persons Software furnished , subject following conditions: copyright notice permission notice shall included copies substantial portions Software. SOFTWARE PROVIDED “”, WITHOUT WARRANTY KIND, EXPRESS IMPLIED, INCLUDING LIMITED WARRANTIES MERCHANTABILITY, FITNESS PARTICULAR PURPOSE NONINFRINGEMENT. EVENT SHALL AUTHORS COPYRIGHT HOLDERS LIABLE CLAIM, DAMAGES LIABILITY, WHETHER ACTION CONTRACT, TORT OTHERWISE, ARISING , CONNECTION SOFTWARE USE DEALINGS SOFTWARE.","code":""},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"bar-charts","dir":"Articles","previous_headings":"","what":"Bar charts","title":"Starting with ApexCharts","text":"Simple bar charts can created : Flipping coordinates can done using type = \"bar\": create dodge bar charts, use aesthetic fill : stacked bar charts, specify option stacked ax_chart :","code":"data(\"mpg\") apex(data = mpg, type = \"column\", mapping = aes(x = manufacturer)) apex(data = mpg, type = \"bar\", mapping = aes(x = manufacturer)) apex(data = mpg, type = \"column\", mapping = aes(x = manufacturer, fill = year)) apex(data = mpg, type = \"column\", mapping = aes(x = manufacturer, fill = year)) %>% ax_chart(stacked = TRUE)"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"line-charts","dir":"Articles","previous_headings":"","what":"Line charts","title":"Starting with ApexCharts","text":"Simple line charts can created (works character, Date POSIXct): represent several lines, use data.frame long format group aesthetic:","code":"data(\"economics\") apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) data(\"economics_long\") apex(data = economics_long, type = \"line\", mapping = aes(x = date, y = value01, group = variable)) %>% ax_yaxis(decimalsInFloat = 2) # number of decimals to keep"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"area-charts","dir":"Articles","previous_headings":"","what":"Area charts","title":"Starting with ApexCharts","text":"Create area charts type = \"area\": can create ribbon charts using ymin ymax aesthetics :","code":"data(\"eco2mix\", package = \"apexcharter\") apex(eco2mix, aes(datetime, production, fill = source), type = \"area\") %>% ax_chart(animations = list(enabled = FALSE), stacked = TRUE) %>% ax_stroke(width = 1) %>% ax_fill(opacity = 1, type = \"solid\") %>% ax_tooltip(x = list(format = \"dd MMM, HH:mm\")) %>% ax_yaxis(labels = list(formatter = format_num(\"~\", suffix = \"MW\"))) %>% ax_colors_manual( list( \"bioenergies\" = \"#156956\", \"fuel\" = \"#80549f\", \"coal\" = \"#a68832\", \"solar\" = \"#d66b0d\", \"gas\" = \"#f20809\", \"wind\" = \"#72cbb7\", \"hydraulic\" = \"#2672b0\", \"nuclear\" = \"#e4a701\", \"pumping\" = \"#0e4269\" ) ) %>% ax_labs( title = \"Electricity generation by sector in France\", subtitle = \"Data from \\u00e9CO\\u2082mix\" ) data(\"temperatures\", package = \"apexcharter\") apex( temperatures, aes(x = date, ymin = low, ymax = high), type = \"rangeArea\", serie_name = \"Low/High (2018-2021)\" ) %>% add_line(aes(date, `2023`)) %>% ax_chart(animations = list(enabled = FALSE)) %>% ax_yaxis(tickAmount = 7, labels = list(formatter = format_num(\"~\", suffix = \"°C\"))) %>% ax_colors(c(\"#8485854D\", \"#FF0000\")) %>% ax_stroke(width = c(1, 2)) %>% ax_fill(opacity = 1, type = \"solid\") %>% ax_labs( title = \"Temperatures in 2023 with range from 2018 to 2021\", subtitle = \"Data from ENEDIS\" )"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"scatter-charts","dir":"Articles","previous_headings":"","what":"Scatter charts","title":"Starting with ApexCharts","text":"Simple bar charts can created : Color points according third variable: change point size using z aesthetics:","code":"apex(data = mtcars, type = \"scatter\", mapping = aes(x = wt, y = mpg)) apex(data = mtcars, type = \"scatter\", mapping = aes(x = wt, y = mpg, fill = cyl)) apex(data = mtcars, type = \"scatter\", mapping = aes(x = wt, y = mpg, z = scales::rescale(qsec)))"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"pie-donut-charts","dir":"Articles","previous_headings":"","what":"Pie & donut charts","title":"Starting with ApexCharts","text":"Simple pie charts can created : s also possible make donut chart:","code":"poll <- data.frame( answer = c(\"Yes\", \"No\"), n = c(254, 238) ) apex(data = poll, type = \"pie\", mapping = aes(x = answer, y = n)) apex(data = poll, type = \"donut\", mapping = aes(x = answer, y = n))"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"radial-charts","dir":"Articles","previous_headings":"","what":"Radial charts","title":"Starting with ApexCharts","text":"Simple radial charts can created (pass values directly aes, can use data.frame) : Multi radial chart (one value):","code":"apex(data = NULL, type = \"radialBar\", mapping = aes(x = \"My value\", y = 65)) fruits <- data.frame( name = c('Apples', 'Oranges', 'Bananas', 'Berries'), value = c(44, 55, 67, 83) ) apex(data = fruits, type = \"radialBar\", mapping = aes(x = name, y = value))"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"radar-charts","dir":"Articles","previous_headings":"","what":"Radar charts","title":"Starting with ApexCharts","text":"Simple radar charts can created : grouping variable:","code":"mtcars$model <- rownames(mtcars) apex(data = head(mtcars), type = \"radar\", mapping = aes(x = model, y = qsec)) # extremely complicated reshaping new_mtcars <- reshape( data = head(mtcars), idvar = \"model\", varying = list(c(\"drat\", \"wt\")), times = c(\"drat\", \"wt\"), direction = \"long\", v.names = \"value\", drop = c(\"mpg\", \"cyl\", \"hp\", \"dist\", \"qsec\", \"vs\", \"am\", \"gear\", \"carb\") ) apex(data = new_mtcars, type = \"radar\", mapping = aes(x = model, y = value, group = time))"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"polar-area","dir":"Articles","previous_headings":"","what":"Polar area","title":"Starting with ApexCharts","text":"custom options color mapping:","code":"apex(mtcars, aes(rownames(mtcars), mpg), type = \"polarArea\") %>% ax_legend(show = FALSE) %>% ax_colors(col_numeric(\"Blues\", domain = NULL)(mtcars$mpg)) %>% ax_fill(opacity = 1) %>% ax_stroke(width = 0) %>% ax_tooltip(fillSeriesColor = FALSE)"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"heatmap","dir":"Articles","previous_headings":"","what":"Heatmap","title":"Starting with ApexCharts","text":"Create heatmap :","code":"# create some data sales <- expand.grid(year = 2010:2020, month = month.name) sales$value <- sample(-10:30, nrow(sales), TRUE) apex( data = sales, type = \"heatmap\", mapping = aes(x = year, y = month, fill = value) ) %>% ax_dataLabels(enabled = FALSE) %>% ax_colors(\"#008FFB\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"treemap","dir":"Articles","previous_headings":"","what":"Treemap","title":"Starting with ApexCharts","text":"Create treemap :","code":"data(\"mpg\", package = \"ggplot2\") apex(mpg, aes(x = manufacturer), \"treemap\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"candlestick","dir":"Articles","previous_headings":"","what":"Candlestick","title":"Starting with ApexCharts","text":"Create candlestick chart :","code":"data(\"candles\", package = \"apexcharter\") apex( candles, aes(x = datetime, open = open, close = close, low = low, high = high), type = \"candlestick\" )"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"boxplot","dir":"Articles","previous_headings":"","what":"Boxplot","title":"Starting with ApexCharts","text":"Create boxplot (without outliers now) :","code":"data(\"mpg\", package = \"ggplot2\") apex(mpg, aes(hwy, class), \"boxplot\") %>% ax_plotOptions( boxPlot = boxplot_opts(color.upper = \"#8BB0A6\", color.lower = \"#8BB0A6\" ) ) %>% ax_stroke(colors = list(\"#2A5769\")) %>% ax_grid( xaxis = list(lines = list(show = TRUE)), yaxis = list(lines = list(show = FALSE)) )"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"dumbbell-charts","dir":"Articles","previous_headings":"","what":"Dumbbell charts","title":"Starting with ApexCharts","text":"Create Dumbbell chart :","code":"data(\"life_expec\", package = \"apexcharter\") apex(life_expec, aes(country, x = `1972`, xend = `2007`), type = \"dumbbell\") %>% ax_plotOptions( bar = bar_opts( dumbbellColors = list(list(\"#3d85c6\", \"#fb6003\")) ) ) %>% ax_colors(\"#BABABA\") %>% ax_labs( title = \"Life expectancy : 1972 vs. 2007\", subtitle = \"Data from Gapminder dataset\", x = \"Life expectancy at birth, in years\" )"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"slope-charts","dir":"Articles","previous_headings":"","what":"Slope charts","title":"Starting with ApexCharts","text":"Create slope chart :","code":"data(\"life_expec_long\", package = \"apexcharter\") apex( life_expec_long, mapping = aes(x = as.character(year), y = lifeExp, fill = country), type = \"slope\", height = \"700px\" ) %>% ax_colors(\"#112466\") %>% ax_labs( title = \"Life expectancy : 1972 vs. 2007\", subtitle = \"Data from Gapminder dataset\", x = \"Life expectancy at birth, in years\" )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/advanced-configuration.html","id":"bar-chart","dir":"Articles > Extra","previous_headings":"","what":"Bar chart","title":"Advanced configuration examples","text":"example taken {hrbrthemes} readme, use mpg dataset {ggplot2}. Transform data initialize chart : Change color used : Modify y-axis add percent symbol labels : Add title x-axis : Modify tooltip display “Percentage” instead variable name “pct” : Add title subtitle format : Final result looks like :","code":"data(\"mpg\", package = \"ggplot2\") bars <- count(mpg, class) %>% mutate(pct = n/sum(n)) %>% apex(mapping = aes(class, pct), type = \"column\") bars <- bars %>% ax_colors(\"#617a89\") bars <- bars %>% ax_yaxis( title = list(text = \"Weight (tons)\"), labels = list( formatter = format_num(\".0%\") ), tickAmount = 6, max = 0.3 ) bars <- bars %>% ax_xaxis( title = list(text = \"Fuel efficiency (mpg)\") ) bars <- bars %>% ax_tooltip( y = list( title = list( formatter = JS(\"function() {return 'Percentage';}\") ) ) ) bars <- bars %>% ax_labs( title = \"Seminal ggplot2 column chart example with percents\", subtitle = \"Example taken from {hrbrthemes} readme\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") ) bars data(\"mpg\", package = \"ggplot2\") count(mpg, class) %>% mutate(pct = n/sum(n)) %>% apex(mapping = aes(class, pct), type = \"column\") %>% ax_colors(\"#617a89\")%>% ax_yaxis( title = list(text = \"Weight (tons)\"), labels = list( formatter = format_num(\".0%\") ), tickAmount = 6, max = 0.3 ) %>% ax_xaxis( title = list(text = \"Fuel efficiency (mpg)\") ) %>% ax_tooltip( y = list( title = list( formatter = JS(\"function() {return 'Percentage';}\") ) ) ) %>% ax_labs( title = \"Seminal ggplot2 column chart example with percents\", subtitle = \"Example taken from {hrbrthemes} readme\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/advanced-configuration.html","id":"lines","dir":"Articles > Extra","previous_headings":"","what":"Lines","title":"Advanced configuration examples","text":"Dataset used UNHCR (UN Refugee Agency) contains data UNHCRs populations concern summarised continent origin. Transform data initialize chart : Put legend bottom : Change width lines : Change colors (Viridis palette) : Data million, y-axis divide 1e6 limit number digits : display years x-axis labels : tooltip, thousand separator value displayed : Add annotation chart identify Great Lakes refugee crisis 1994 : Add title subtitle format : Final result looks like :","code":"data(\"unhcr_ts\") lines <- unhcr_ts %>% filter(population_type == \"Refugees (incl. refugee-like situations)\") %>% mutate(date = as.Date(paste0(year, \"-01-01\"))) %>% apex(aes(date, n, group = continent_origin), type = \"line\") #> Warning in make_series(mapdata, mapping, type, serie_name): apex: all groups #> must have same length! You can use `tidyr::complete` for this. lines <- lines %>% ax_legend(position = \"bottom\") lines <- lines %>% ax_stroke(width = 2) lines <- lines %>% ax_colors(\"#440154\", \"#414487\", \"#2A788E\", \"#22A884\", \"#7AD151\", \"#FDE725\") lines <- lines %>% ax_yaxis( labels = list( formatter = JS(\"function(val) {return (val/1e6).toFixed(0);}\") ), title = list(text = \"Number of refugees (in million)\") ) lines <- lines %>% ax_xaxis(labels = list(format = \"yyyy\")) lines <- lines %>% ax_tooltip( x = list(format = \"yyyy\"), y = list( formatter = JS( # thousand separator in javascript \"function(value) {return value.toString().replace(/\\\\B(?=(\\\\d{3})+(?!\\\\d))/g, \\\",\\\");}\" ) ) ) lines <- lines %>% ax_annotations( points = list( list( x = JS(\"new Date('1994').getTime()\"), y = 6935296, label = list(text = \"Great Lakes refugee crisis\", offsetY = 0), marker = list(size = 6) ) ) ) lines <- lines %>% ax_labs( title = \"Continent of origin for refugees population\", subtitle = \"Data from the UN Refugee Agency\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") ) lines data(\"unhcr_ts\") unhcr_ts %>% filter(population_type == \"Refugees (incl. refugee-like situations)\") %>% mutate(date = as.Date(paste0(year, \"-01-01\"))) %>% apex(aes(date, n, group = continent_origin), type = \"line\") %>% ax_legend(position = \"bottom\") %>% ax_stroke(width = 2) %>% ax_colors(\"#440154\", \"#414487\", \"#2A788E\", \"#22A884\", \"#7AD151\", \"#FDE725\") %>% ax_yaxis( labels = list( formatter = htmlwidgets::JS(\"function(val) {return (val/1e6).toFixed(0);}\") ), title = list(text = \"Number of refugees (in million)\") ) %>% ax_xaxis(labels = list(format = \"yyyy\")) %>% ax_tooltip( x = list(format = \"yyyy\"), y = list( formatter = JS( # thousand separator in javascript \"function(value) {return value.toString().replace(/\\\\B(?=(\\\\d{3})+(?!\\\\d))/g, \\\",\\\");}\" ) ) ) %>% ax_annotations( points = list( list( x = JS(\"new Date('1994').getTime()\"), y = 6935296, label = list(text = \"Great Lakes refugee crisis\", offsetY = 0), marker = list(size = 6) ) ) ) %>% ax_labs( title = \"Continent of origin for refugees population\", subtitle = \"Data from the UN Refugee Agency\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/advanced-configuration.html","id":"scatter-plot","dir":"Articles > Extra","previous_headings":"","what":"Scatter plot","title":"Advanced configuration examples","text":"Dataset used {gapminder}. Transform data initialize chart : Enable zoom axis : Show y-axis border ticks, decimals labels : Configuration x-axis, hide tooltip displayed axis (main tooltip), display two decimals labels (useful zooming, since values logarithm s lot decimals) : Display vertical grid lines (x-axis, y-axis enabled default) : Legend right slightly offset downwards : Add custom tooltip HTML string, data used aesthetic can accessed JavaScript w.config.series[seriesIndex].data[dataPointIndex].x (x variable gdpPercap), w.config.series[seriesIndex].data[dataPointIndex].label (country), s possible use custom aesthetics include data chart configuration script. Add title subtitle format : Final result looks like :","code":"data(\"gapminder\", package = \"gapminder\") scatter <- gapminder %>% filter(year == 2007) %>% mutate( gdpPercap = log(gdpPercap), pop = sqrt(pop / pi) / 1500 ) %>% apex( mapping = aes(gdpPercap, lifeExp, z = pop, group = continent, label = country), type = \"scatter\", height = \"500px\" ) scatter <- scatter %>% ax_chart(zoom = list( enabled = TRUE, type = \"xy\" )) scatter <- scatter %>% ax_yaxis( decimalsInFloat = 0, axisBorder = list(show = TRUE), axisTicks = list(show = TRUE), title = list(text = \"life expectancy at birth (in years)\") ) scatter <- scatter %>% ax_xaxis( tickAmount = 8, labels = list( formatter = JS(\"function(val) {return val.toFixed(2);}\") ), tooltip = list(enabled = FALSE), title = list(text = \"GDP per capita (log-scale)\") ) scatter <- scatter %>% ax_grid(xaxis = list(lines = list(show = TRUE))) scatter <- scatter %>% ax_legend(position = \"right\", offsetY = 70) scatter <- scatter %>% ax_tooltip(custom = JS(paste( \"function({ series, seriesIndex, dataPointIndex, w }) {\", \"console.log(w); return (\", \"'<div>' +\", \"'<div class = \\\"apexcharts-tooltip-title\\\">' +\", \"w.config.series[seriesIndex].data[dataPointIndex].label\", \"+ '<\/div>' +\", \"'<div style = \\\"padding: 5px;\\\">' +\", \"'<div class = \\\"apexcharts-tooltip-y-group\\\">' +\", \"'<span class = \\\"apexcharts-tooltip-text-label\\\">' +\", \"'Population: ' +\", \"'<\/span>' +\", \"'<span class = \\\"apexcharts-tooltip-text-value\\\">' +\", \"Math.round(Math.pow(w.config.series[seriesIndex].data[dataPointIndex].z * 1500, 2) * Math.PI). toString().replace(/\\\\B(?=(\\\\d{3})+(?!\\\\d))/g, \\\",\\\") +\", \"'<\/span>' +\", \"'<\/br>' +\", \"'<span class = \\\"apexcharts-tooltip-text-label\\\">' +\", \"'GDP per capita: ' +\", \"'<\/span>' +\", \"'<span class = \\\"apexcharts-tooltip-text-value\\\">' +\", \"Math.round(Math.exp(w.config.series[seriesIndex].data[dataPointIndex].x)) +\", \"'<\/span>' +\", \"'<\/br>' +\", \"'<span class = \\\"apexcharts-tooltip-text-label\\\">' +\", \"'Life expectancy: ' +\", \"'<\/span>' +\", \"'<span class = \\\"apexcharts-tooltip-text-value\\\">' +\", \"w.config.series[seriesIndex].data[dataPointIndex].y +\", \"'<\/span>' +\", \"'<\/div>' +\", \"'<\/div>' +\", \"'<\/div>'\", \");\", \"}\", sep = \"\\n\" ))) scatter <- scatter %>% ax_labs( title = \"Life expectancy, GDP and population\", subtitle = \"gapminder dataset from {gapminder}\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") ) scatter data(\"gapminder\", package = \"gapminder\") gapminder %>% filter(year == 2007) %>% mutate( gdpPercap = log(gdpPercap), pop = sqrt(pop / pi) / 1500 ) %>% apex(mapping = aes(gdpPercap, lifeExp, z = pop, group = continent, label = country), type = \"scatter\") %>% ax_chart(zoom = list( enabled = TRUE, type = \"xy\" )) %>% ax_yaxis( decimalsInFloat = 0, axisBorder = list(show = TRUE), axisTicks = list(show = TRUE), title = list(text = \"life expectancy at birth (in years)\") ) %>% ax_xaxis( tickAmount = 8, labels = list( formatter = JS(\"function(val) {return val.toFixed(2);}\") ), tooltip = list(enabled = FALSE), title = list(text = \"GDP per capita (log-scale)\") ) %>% ax_grid(xaxis = list(lines = list(show = TRUE))) %>% ax_legend(position = \"right\", offsetY = 70) %>% ax_tooltip(custom = JS(paste( \"function({ series, seriesIndex, dataPointIndex, w }) {\", \"console.log(w); return (\", \"'<div>' +\", \"'<div class = \\\"apexcharts-tooltip-title\\\">' +\", \"w.config.series[seriesIndex].data[dataPointIndex].label\", \"+ '<\/div>' +\", \"'<div style = \\\"padding: 5px;\\\">' +\", \"'<div class = \\\"apexcharts-tooltip-y-group\\\">' +\", \"'<span class = \\\"apexcharts-tooltip-text-label\\\">' +\", \"'Population: ' +\", \"'<\/span>' +\", \"'<span class = \\\"apexcharts-tooltip-text-value\\\">' +\", \"Math.round(Math.pow(w.config.series[seriesIndex].data[dataPointIndex].z * 1500, 2) * Math.PI). toString().replace(/\\\\B(?=(\\\\d{3})+(?!\\\\d))/g, \\\",\\\") +\", \"'<\/span>' +\", \"'<\/br>' +\", \"'<span class = \\\"apexcharts-tooltip-text-label\\\">' +\", \"'GDP per capita: ' +\", \"'<\/span>' +\", \"'<span class = \\\"apexcharts-tooltip-text-value\\\">' +\", \"Math.round(Math.exp(w.config.series[seriesIndex].data[dataPointIndex].x)) +\", \"'<\/span>' +\", \"'<\/br>' +\", \"'<span class = \\\"apexcharts-tooltip-text-label\\\">' +\", \"'Life expectancy: ' +\", \"'<\/span>' +\", \"'<span class = \\\"apexcharts-tooltip-text-value\\\">' +\", \"w.config.series[seriesIndex].data[dataPointIndex].y +\", \"'<\/span>' +\", \"'<\/div>' +\", \"'<\/div>' +\", \"'<\/div>'\", \");\", \"}\", sep = \"\\n\" ))) %>% ax_labs( title = \"Life expectancy, GDP and population\", subtitle = \"gapminder dataset from {gapminder}\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/advanced-configuration.html","id":"heatmap","dir":"Articles > Extra","previous_headings":"","what":"Heatmap","title":"Advanced configuration examples","text":"adaption fancy {highcharter} example, based WSJ visualization. Remove animations (little slow otherwise) : Remove values displayed heatmap : Remove space squared heatmap : s possible make continuous scale legend (like highcharter), use breakpoints : Missing values colored default, set displayed white, now hide corresponding legend : Set size y-axis labels : Add vertical line identify year vaccine introduced : usual, add title subtitle format : Final result looks like :","code":"data(\"vaccines\", package = \"highcharter\") heatmap <- apex( vaccines, aes(year, state, fill = count), type = \"heatmap\", height = \"800px\" ) heatmap <- heatmap %>% ax_chart(animations = list(enabled = FALSE)) heatmap <- heatmap %>% ax_dataLabels(enabled = FALSE) heatmap <- heatmap %>% ax_stroke(width = 0) heatmap <- heatmap %>% ax_plotOptions( heatmap = heatmap_opts( radius = 0, enableShades = FALSE, colorScale = list( ranges = list( list( from = 0, to = 0.001, name = \"Missing\", color = \"#FFF\" ), list( from = 0.001, to = 4, name = \"low\", # color = \"#000004\" color = \"#FDE725\" ), list( from = 4, to = 70, name = \"mid-low\", # color = \"#781C6D\", color = \"#35B779\" ), list( from = 70, to = 290, name = \"mid-high\", # color = \"#ED6925\", color = \"#31688E\" ), list( from = 290, to = 3000, name = \"high\", # color = \"#FCFFA4\", color = \"#440154\" ) ) ) ) ) heatmap <- heatmap %>% ax_legend( formatter = JS( \"function(seriesName, opts) { if (seriesName == 'Missing') return null; else return seriesName; }\" ), offsetY = -15 ) heatmap <- heatmap %>% ax_yaxis( labels = list( style = list(fontSize = \"8px\") ) ) heatmap <- heatmap %>% ax_annotations( xaxis = list( list( x = 1963, x2 = 1963.1, strokeDashArray = 0, opacity = 1, borderColor = \"firebrick\", fillColor = \"firebrick\", label = list( borderColor = \"firebrick\", style = list(color = \"#FFF\", background = \"firebrick\"), text = \"Vaccine Introduced\", orientation = \"horizontal\", position = \"bottom\", offsetY = 0 ) ) ) ) heatmap <- heatmap %>% ax_labs( title = \"Infectious Diseases and Vaccines\", subtitle = \"vaccines dataset from {highcharter}\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") ) heatmap data(\"vaccines\", package = \"highcharter\") apex(vaccines, aes(year, state, fill = count), type = \"heatmap\") %>% ax_chart(animations = list(enabled = FALSE)) %>% ax_dataLabels(enabled = FALSE) %>% ax_stroke(width = 0) %>% ax_plotOptions( heatmap = heatmap_opts( radius = 0, enableShades = FALSE, colorScale = list( ranges = list( list( from = 0, to = 0.001, name = \"Missing\", color = \"#FFF\" ), list( from = 0.001, to = 4, name = \"low\", # color = \"#000004\" color = \"#FDE725\" ), list( from = 4, to = 70, name = \"mid-low\", # color = \"#781C6D\", color = \"#35B779\" ), list( from = 70, to = 290, name = \"mid-high\", # color = \"#ED6925\", color = \"#31688E\" ), list( from = 290, to = 3000, name = \"high\", # color = \"#FCFFA4\", color = \"#440154\" ) ) ) ) ) %>% ax_legend( formatter = JS( \"function(seriesName, opts) { if (seriesName == 'Missing') return null; else return seriesName; }\" ), offsetY = -15 ) %>% ax_yaxis( labels = list( style = list(fontSize = \"8px\"), offsetY = -20 ) ) %>% ax_annotations( xaxis = list( list( x = 1963, x2 = 1963.1, strokeDashArray = 0, opacity = 1, borderColor = \"firebrick\", fillColor = \"firebrick\", label = list( borderColor = \"firebrick\", style = list(color = \"#FFF\", background = \"firebrick\"), text = \"Vaccine Introduced\", orientation = \"horizontal\", position = \"bottom\", offsetY = 0 ) ) ) ) %>% ax_labs( title = \"Infectious Diseases and Vaccines\", subtitle = \"vaccines dataset from {highcharter}\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"title-subtitle-and-axis-titles","dir":"Articles > Extra","previous_headings":"","what":"Title, subtitle and axis titles","title":"Customize chart options","text":"Packages data used :","code":"library(apexcharter) data(\"diamonds\", package = \"ggplot2\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"labs","dir":"Articles > Extra","previous_headings":"Title, subtitle and axis titles","what":"Labs","title":"Customize chart options","text":"can set title, subtitle axis titles ax_labs(): want control (font size, alignment, …), can use ax_title(), ax_subtitle(), ax_xaxis() ax_yaxis(), described .","code":"apex(data = diamonds, type = \"column\", mapping = aes(x = cut)) %>% ax_labs( title = \"Cut distribution\", subtitle = \"Data from ggplot2\", x = \"Cut\", y = \"Count\" )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"title","dir":"Articles > Extra","previous_headings":"Title, subtitle and axis titles","what":"Title","title":"Customize chart options","text":"can set options, example: Full list parameters available : https://apexcharts.com/docs/options/title/","code":"apex(data = diamonds, type = \"column\", mapping = aes(x = cut)) %>% ax_title(text = \"Cut distribution\") apex(data = diamonds, type = \"column\", mapping = aes(x = cut)) %>% ax_title( text = \"Cut distribution\", align = \"center\", style = list(fontSize = \"22px\", fontWeight = 700) )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"subtitle","dir":"Articles > Extra","previous_headings":"Title, subtitle and axis titles","what":"Subtitle","title":"Customize chart options","text":"options title: Full list parameters available : https://apexcharts.com/docs/options/subtitle/","code":"apex(data = diamonds, type = \"column\", mapping = aes(x = cut)) %>% ax_title(text = \"Cut distribution\") %>% ax_subtitle(text = \"Data from ggplot2\") apex(data = diamonds, type = \"column\", mapping = aes(x = cut)) %>% ax_title( text = \"Cut distribution\", align = \"center\", style = list(fontSize = \"22px\", fontWeight = 700) ) %>% ax_subtitle( text = \"Data from ggplot2\", align = \"center\", style = list(fontSize = \"16px\", fontWeight = 400, color = \"#BDBDBD\") )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"axis-title","dir":"Articles > Extra","previous_headings":"Title, subtitle and axis titles","what":"Axis title","title":"Customize chart options","text":"options:","code":"apex(data = diamonds, type = \"column\", mapping = aes(x = cut)) %>% ax_yaxis(title = list(text = \"Count\")) %>% ax_xaxis(title = list(text = \"Cut\")) apex(data = diamonds, type = \"column\", mapping = aes(x = cut)) %>% ax_yaxis(title = list( text = \"Count\", style = list(fontSize = \"14px\", color = \"#BDBDBD\") )) %>% ax_xaxis(title = list( text = \"Cut\", style = list(fontSize = \"14px\", color = \"#BDBDBD\") ))"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"lines","dir":"Articles > Extra","previous_headings":"","what":"Lines","title":"Customize chart options","text":"","code":"library(apexcharter) ## economics dataset from ggplot2 data(\"economics\", package = \"ggplot2\") data(\"economics_long\", package = \"ggplot2\") economics <- tail(economics, 50) economics_long <- subset(economics_long, date >= \"2010-01-01\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"type-of-line","dir":"Articles > Extra","previous_headings":"Lines","what":"Type of line","title":"Customize chart options","text":"Classic line: Spline curve: Steps chart:","code":"apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_stroke(curve = \"smooth\") apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_stroke(curve = \"stepline\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"line-appearance","dir":"Articles > Extra","previous_headings":"Lines","what":"Line appearance","title":"Customize chart options","text":"Color line gradient: Solid area color: Line width: Dotted line","code":"apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_fill( type = \"gradient\", gradient = list( shade = \"dark\", gradientToColors = list(\"#FDD835\"), shadeIntensity = 1, type = \"horizontal\", opacityFrom = 1, opacityTo = 1, stops = c(0, 100, 100, 100) ) ) apex(data = economics, type = \"area\", mapping = aes(x = date, y = uempmed)) %>% ax_fill(type = \"solid\", opacity = 1) apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_stroke(width = 1) apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_stroke(dashArray = 6)"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"markers","dir":"Articles > Extra","previous_headings":"Lines","what":"Markers","title":"Customize chart options","text":"Add points line : Add labels points","code":"apex(data = tail(economics, 20), type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_markers(size = 6) apex(data = tail(economics, 20), type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_markers(size = 6) %>% ax_dataLabels(enabled = TRUE)"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"multiple-lines","dir":"Articles > Extra","previous_headings":"Lines","what":"Multiple lines","title":"Customize chart options","text":"can use vectors parameters custom series separately:","code":"apex(data = economics_long, type = \"line\", mapping = aes(x = date, y = value01, group = variable)) %>% ax_yaxis(decimalsInFloat = 2) %>% ax_markers(size = c(3, 6)) %>% ax_stroke(width = c(1, 3)) apex(data = economics_long, type = \"line\", mapping = aes(x = date, y = value01, group = variable)) %>% ax_yaxis(decimalsInFloat = 2) %>% ax_stroke(dashArray = c(8, 5))"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/facets.html","id":"facet-wrap","dir":"Articles > Extra","previous_headings":"","what":"Facet wrap","title":"Create grid of charts","text":"Create grid charts according variable data ax_facet_wrap() : Synchronized line charts free y-axis : Dont forget set minWidth y axis labels synchronizing charts, otherwise unexpected results can occurs.","code":"library(apexcharter) data(\"mpg\", package = \"ggplot2\") apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_xaxis(labels = list(formatter = format_num(\".0f\"))) %>% ax_labs( title = \"Facet wrap example\", subtitle = \"mpg data from ggplot2\", x = \"engine displacement, in litres\", y = \"city miles per gallon\" ) %>% ax_facet_wrap(vars(drv), ncol = 2) library(apexcharter) data(\"economics_long\", package = \"ggplot2\") apex(economics_long, aes(date, value), type = \"line\", synchronize = \"sync-it\") %>% ax_yaxis( decimalsInFloat = 0, labels = list( formatter = format_num(\"~s\"), minWidth = 40 ) ) %>% ax_tooltip(x = list(format = \"yyyy\")) %>% ax_facet_wrap(vars(variable), scales = \"free_y\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/facets.html","id":"facet-grid","dir":"Articles > Extra","previous_headings":"","what":"Facet grid","title":"Create grid of charts","text":"Create matrix charts defined row column faceting variables ax_facet_grid() :","code":"library(apexcharter) data(\"mpg\", package = \"ggplot2\") apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_xaxis(labels = list(formatter = format_num(\".0f\"))) %>% ax_labs( title = \"Facet grid example\", subtitle = \"mpg data from ggplot2\", x = \"engine displacement, in litres\", y = \"city miles per gallon\" ) %>% ax_facet_grid(rows = vars(drv), cols = vars(year))"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/facets.html","id":"grid","dir":"Articles > Extra","previous_headings":"","what":"Grid","title":"Create grid of charts","text":"can construct grid (unrelated) charts apex_grid(), construct charts independently assemble grid: grid_area argument allow specify space occupied chart, can generate interactively grid template .","code":"library(apexcharter) data(\"mpg\", package = \"ggplot2\") # Construct 3 charts a1 <- apex(mpg, aes(manufacturer), type = \"bar\") a2 <- apex(mpg, aes(trans), type = \"column\") a3 <- apex(mpg, aes(drv), type = \"pie\") # Assemble them in a grid apex_grid( a1, a2, a3, grid_area = c(\"1 / 1 / 3 / 2\", \"1 / 2 / 2 / 4\", \"2 / 2 / 3 / 4\"), ncol = 3, nrow = 2, height = \"600px\" )"},{"path":[]},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/shiny-integration.html","id":"create-and-update-or-destroy-and-re-create","dir":"Articles > Extra","previous_headings":"Charts","what":"Create and update (or destroy and re-create)","title":"Use in Shiny application","text":"graph generated Shiny, values change (via reactive function), graph regenerated, data updated. changed specific options graphic (maximum y axis value, charts title, …) updated. behavior can controlled auto_update argument (available apexchart() apex()) : default, auto_update TRUE : want re-create whole chart, set option FALSE: can also use config_update() specify update :","code":"apex(..., auto_update = TRUE) apex(..., auto_update = FALSE) apex(..., auto_update = config_update(update_options = TRUE))"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/shiny-integration.html","id":"proxy","dir":"Articles > Extra","previous_headings":"Charts","what":"Proxy","title":"Use in Shiny application","text":"proxy also implemented update charts manually server-side. can update data: sure use shiny::isolate() block reactivity renderApexchart function set auto_update FALSE prevent updating twice. can use observe function (reactive function) apexchartProxy() output id get chart instance ax_proxy_series() update data. want update charts options, use :","code":"output$my_chart <- renderApexchart({ apex(data = isolate(data_reactive()), ..., auto_update = FALSE) }) observeEvent(input$update, { apexchartProxy(\"my_chart\") %>% ax_proxy_series(data_reactive()) }) observeEvent(input$update, { apexchartProxy(\"my_chart\") %>% ax_proxy_options(list( title = list( text = \"New title\" ), xaxis = list( max = NEW_VALUE ) )) })"},{"path":[]},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/shiny-integration.html","id":"click","dir":"Articles > Extra","previous_headings":"Interactions","what":"Click","title":"Use in Shiny application","text":"Click chart select data point retrieve value server side set_input_click() : Value server-side available input$click. Depending type graphic, can retrieve : bar column: category (x-axis). pie donut: label. time-series: retrieve x-axis value, display markers size > 0 set tooltips options intersect = TRUE shared = FALSE. scatter: retrieve XY coordinates. Multiple selection possible can change darken effect selected bars : examples available :","code":"data.frame( month = month.abb, value = sample(1:100, 12) ) %>% apex(aes(month, value), height = \"250px\") %>% ax_title(\"Click a bar:\") %>% set_input_click(\"click\") data.frame( month = month.abb, value = sample(1:100, 12) ) %>% apex(aes(month, value), height = \"250px\") %>% ax_title(\"Click several bars:\") %>% set_input_click( inputId = \"click\", multiple = TRUE, effect_value = 0.1 ) run_demo_input(\"click\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/shiny-integration.html","id":"zoom","dir":"Articles > Extra","previous_headings":"Interactions","what":"Zoom","title":"Use in Shiny application","text":"Retrieve coordinates axes graph zoomed : Value server-side available input$zoom form : values y NULL zoom possible x-axis, scatter chart example can zoom axis. examples available :","code":"data(\"economics\", package = \"ggplot2\") apex(economics, aes(date, psavert), type = \"line\", height = \"250px\") %>% set_input_zoom(\"zoom\") #> $x #> $x$min #> [1] \"1981-10-24 15:41:16 UTC\" #> #> $x$max #> [1] \"1992-01-24 06:40:22 UTC\" #> #> #> $y #> $y$min #> NULL #> #> $y$max #> NULL run_demo_input(\"zoom\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/shiny-integration.html","id":"selection","dir":"Articles > Extra","previous_headings":"Interactions","what":"Selection","title":"Use in Shiny application","text":"Retrieve coordinates axes user select area chart (without zooming): Value server-side available input$selection form : can define selected area start: selection made possible x-axis, case scatter chart example, can select rectangle (axis): case, input value look like : examples available :","code":"apex(economics, aes(date, psavert), type = \"line\", height = \"250px\") %>% set_input_selection(\"selection\") #> $x #> $x$min #> [1] \"1981-10-24 15:41:16 UTC\" #> #> $x$max #> [1] \"1992-01-24 06:40:22 UTC\" apex(economics, aes(date, psavert), type = \"line\", height = \"250px\") %>% set_input_selection( inputId = \"selection\", xmin = format_date(\"1980-01-01\"), xmax = format_date(\"1985-01-01\") ) apex(iris, aes(Sepal.Length, Sepal.Width), type = \"scatter\", height = \"250px\") %>% set_input_selection(\"selection_scatter\", type = \"xy\") #> $x #> $x$min #> [1] 5.130187 #> #> $x$max #> [1] 5.541228 #> #> #> $y #> $y$min #> [1] 2.959623 #> #> $y$max #> [1] 3.860357 run_demo_input(\"selection\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/sync-charts.html","id":"synchronize-charts","dir":"Articles > Extra","previous_headings":"","what":"Synchronize charts","title":"Synchronize charts with each other","text":"Apexcharts can sync (tooltip, zoom) several charts together providing common id synchronize argument. works Shiny Markdown. example create two charts, tooltip displayed charts hover one, zoom one, one synced : Note set common minWidth y axis labels. Different width yaxis different charts produce incorrect results hovering interacting. example Shiny, can run:","code":"apex( data = tail(economics, 150), mapping = aes(x = date, y = pce), type = \"line\", synchronize = \"economics\" ) %>% ax_yaxis( decimalsInFloat = 0, labels = list( formatter = format_num(\"~s\"), minWidth = 40 ) ) %>% ax_tooltip(x = list(format = \"yyyy\")) apex( data = tail(economics, 150), mapping = aes(x = date, y = psavert), type = \"line\", synchronize = \"economics\" ) %>% ax_yaxis( decimalsInFloat = 0, labels = list( formatter = format_num(\"~s\"), minWidth = 40 ) ) %>% ax_tooltip(x = list(format = \"yyyy\")) run_sync_demo()"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/sync-charts.html","id":"brush-chart","dir":"Articles > Extra","previous_headings":"","what":"Brush chart","title":"Synchronize charts with each other","text":"Create brush chart navigate synced chart : use chart navigate chart .","code":"apex( data = economics, mapping = aes(x = date, y = psavert), type = \"line\" ) %>% ax_chart( id = \"target-chart\", # <-- define target id here toolbar = list( autoSelected = \"pan\", show = FALSE ) ) apex( data = economics, mapping = aes(x = date, y = psavert), type = \"line\", height = \"130px\" ) %>% ax_chart( brush = list( target = \"target-chart\", # <-- use target id here enabled = TRUE ), offsetY = -20, selection = list( enabled = TRUE, # <-- enable selection and define starting range xaxis = list( min = format_date(economics$date[1]), max = format_date(economics$date[100]) ) ) ) %>% ax_xaxis(labels = list(show = FALSE)) %>% ax_yaxis(labels = list(show = FALSE))"},{"path":"https://dreamrs.github.io/apexcharter/authors.html","id":null,"dir":"","previous_headings":"","what":"Authors","title":"Authors and Citation","text":"Victor Perrier. Author, maintainer. Fanny Meyer. Author. Juned Chhipa. Copyright holder. apexcharts.js library Mike Bostock. Copyright holder. d3.format library","code":""},{"path":"https://dreamrs.github.io/apexcharter/authors.html","id":"citation","dir":"","previous_headings":"","what":"Citation","title":"Authors and Citation","text":"Perrier V, Meyer F (2024). apexcharter: Create Interactive Chart JavaScript 'ApexCharts' Library. R package version 0.4.3, https://dreamrs.github.io/apexcharter/, https://github.com/dreamRs/apexcharter.","code":"@Manual{, title = {apexcharter: Create Interactive Chart with the JavaScript 'ApexCharts' Library}, author = {Victor Perrier and Fanny Meyer}, year = {2024}, note = {R package version 0.4.3, https://dreamrs.github.io/apexcharter/}, url = {https://github.com/dreamRs/apexcharter}, }"},{"path":"https://dreamrs.github.io/apexcharter/index.html","id":"apexcharter","dir":"","previous_headings":"","what":"Create Interactive Chart with the JavaScript ApexCharts Library","title":"Create Interactive Chart with the JavaScript ApexCharts Library","text":"Htmlwidget apexcharts.js : modern JavaScript charting library build interactive charts visualizations simple API. See online documentation examples.","code":""},{"path":"https://dreamrs.github.io/apexcharter/index.html","id":"installation","dir":"","previous_headings":"","what":"Installation","title":"Create Interactive Chart with the JavaScript ApexCharts Library","text":"Install CRAN : install development version GitHub :","code":"install.packages(\"apexcharter\") # install.packages(\"remotes\") remotes::install_github(\"dreamRs/apexcharter\")"},{"path":"https://dreamrs.github.io/apexcharter/index.html","id":"quick-charts","dir":"","previous_headings":"","what":"Quick Charts","title":"Create Interactive Chart with the JavaScript ApexCharts Library","text":"Use apex function quickly create visualizations : datetime:","code":"library(apexcharter) data(\"mpg\", package = \"ggplot2\") apex(data = mpg, type = \"bar\", mapping = aes(manufacturer)) data(\"economics\", package = \"ggplot2\") apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_stroke(width = 1)"},{"path":"https://dreamrs.github.io/apexcharter/index.html","id":"full-api","dir":"","previous_headings":"","what":"Full API","title":"Create Interactive Chart with the JavaScript ApexCharts Library","text":"methods ApexCharts available function like ax_* compatible pipe magrittr :","code":"library(apexcharter) data(mpg, package = \"ggplot2\") apexchart() %>% ax_chart(type = \"bar\") %>% ax_plotOptions(bar = bar_opts( horizontal = FALSE, endingShape = \"flat\", columnWidth = \"70%\", dataLabels = list( position = \"top\" )) ) %>% ax_grid( show = TRUE, position = \"front\", borderColor = \"#FFF\" ) %>% ax_series(list( name = \"Count\", data = tapply(mpg$manufacturer, mpg$manufacturer, length) )) %>% ax_colors(\"#112446\") %>% ax_xaxis(categories = unique(mpg$manufacturer)) %>% ax_title(text = \"Number of models\") %>% ax_subtitle(text = \"Data from ggplot2\")"},{"path":"https://dreamrs.github.io/apexcharter/index.html","id":"raw-api","dir":"","previous_headings":"","what":"Raw API","title":"Create Interactive Chart with the JavaScript ApexCharts Library","text":"Pass list parameters function:","code":"apexchart(ax_opts = list( chart = list( type = \"line\" ), stroke = list( curve = \"smooth\" ), grid = list( borderColor = \"#e7e7e7\", row = list( colors = c(\"#f3f3f3\", \"transparent\"), opacity = 0.5 ) ), dataLabels = list( enabled = TRUE ), markers = list(style = \"inverted\", size = 6), series = list( list( name = \"High\", data = c(28, 29, 33, 36, 32, 32, 33) ), list( name = \"Low\", data = c(12, 11, 14, 18, 17, 13, 13) ) ), title = list( text = \"Average High & Low Temperature\", align = \"left\" ), xaxis = list( categories = month.abb[1:7] ), yaxis = list( title = list(text = \"Temperature\"), labels = list( formatter = htmlwidgets::JS(\"function(value) {return value + '\\u00b0C';}\") ) ) ))"},{"path":"https://dreamrs.github.io/apexcharter/index.html","id":"development","dir":"","previous_headings":"","what":"Development","title":"Create Interactive Chart with the JavaScript ApexCharts Library","text":"package use {packer} manage JavaScript assets, see packers documentation . Install nodes modules : Modify srcjs/widgets/apexcharter.js, run: Re-install R package try apexcharter() apex() functions.","code":"packer::npm_install() packer::bundle()"},{"path":"https://dreamrs.github.io/apexcharter/reference/add-line.html","id":null,"dir":"Reference","previous_headings":"","what":"Add a line to a chart — add-line","title":"Add a line to a chart — add-line","text":"Add line existing chart (bar, scatter line types supported). scatter charts can also add smooth line.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-line.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add a line to a chart — add-line","text":"","code":"add_line( ax, mapping, data = NULL, type = c(\"line\", \"spline\"), serie_name = NULL ) add_smooth_line( ax, formula = y ~ x, model = c(\"lm\", \"loess\"), n = 100, ..., type = c(\"line\", \"spline\"), serie_name = NULL )"},{"path":"https://dreamrs.github.io/apexcharter/reference/add-line.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add a line to a chart — add-line","text":"ax apexchart() htmlwidget object. mapping Default list aesthetic mappings use chart. data data.frame use add line, NULL (default), data.frame provided apex() used. type Type line. serie_name Name serie displayed tooltip legend. formula Formula passed method, default y ~ x main aesthetics. model Model use lm loess. n Number points used predictions. ... Arguments passed model.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-line.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add a line to a chart — add-line","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-line.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add a line to a chart — add-line","text":"","code":"library(apexcharter) # Bar ---- data(\"climate_paris\") # Add a line on a column's chart apex(climate_paris, aes(month, precipitation), type = \"column\") %>% add_line(aes(month, temperature)) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"precipitation\",\"type\":\"bar\",\"data\":[{\"x\":\"Jan\",\"y\":53.7},{\"x\":\"Feb\",\"y\":43.7},{\"x\":\"Mar\",\"y\":48.5},{\"x\":\"Apr\",\"y\":53},{\"x\":\"May\",\"y\":65},{\"x\":\"Jun\",\"y\":54.6},{\"x\":\"Jul\",\"y\":63.2},{\"x\":\"Aug\",\"y\":43},{\"x\":\"Sep\",\"y\":54.7},{\"x\":\"Oct\",\"y\":59.7},{\"x\":\"Nov\",\"y\":52},{\"x\":\"Dec\",\"y\":58.7}]},{\"name\":\"temperature\",\"type\":\"line\",\"data\":[{\"x\":\"Jan\",\"y\":4.7},{\"x\":\"Feb\",\"y\":5.5},{\"x\":\"Mar\",\"y\":8.4},{\"x\":\"Apr\",\"y\":10.8},{\"x\":\"May\",\"y\":14.8},{\"x\":\"Jun\",\"y\":17.6},{\"x\":\"Jul\",\"y\":20},{\"x\":\"Aug\",\"y\":20},{\"x\":\"Sep\",\"y\":16.7},{\"x\":\"Oct\",\"y\":12.6},{\"x\":\"Nov\",\"y\":7.9},{\"x\":\"Dec\",\"y\":5.7}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"stroke\":{\"width\":[0,4],\"curve\":\"straight\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Apr\",\"max\":\"Sep\"},\"type\":\"column\",\"mixed_type\":\"bar\"},\"evals\":[],\"jsHooks\":[]} # Add secondary axis apex(climate_paris, aes(month, precipitation), type = \"column\") %>% add_line(aes(month, temperature)) %>% ax_yaxis( title = list(text = \"Precipitation (in mm)\") ) %>% ax_yaxis2( opposite = TRUE, decimalsInFloat = 0, title = list(text = \"Temperature (in degree celsius)\") ) %>% ax_dataLabels( enabled = TRUE, enabledOnSeries = list(1) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"precipitation\",\"type\":\"bar\",\"data\":[{\"x\":\"Jan\",\"y\":53.7},{\"x\":\"Feb\",\"y\":43.7},{\"x\":\"Mar\",\"y\":48.5},{\"x\":\"Apr\",\"y\":53},{\"x\":\"May\",\"y\":65},{\"x\":\"Jun\",\"y\":54.6},{\"x\":\"Jul\",\"y\":63.2},{\"x\":\"Aug\",\"y\":43},{\"x\":\"Sep\",\"y\":54.7},{\"x\":\"Oct\",\"y\":59.7},{\"x\":\"Nov\",\"y\":52},{\"x\":\"Dec\",\"y\":58.7}]},{\"name\":\"temperature\",\"type\":\"line\",\"data\":[{\"x\":\"Jan\",\"y\":4.7},{\"x\":\"Feb\",\"y\":5.5},{\"x\":\"Mar\",\"y\":8.4},{\"x\":\"Apr\",\"y\":10.8},{\"x\":\"May\",\"y\":14.8},{\"x\":\"Jun\",\"y\":17.6},{\"x\":\"Jul\",\"y\":20},{\"x\":\"Aug\",\"y\":20},{\"x\":\"Sep\",\"y\":16.7},{\"x\":\"Oct\",\"y\":12.6},{\"x\":\"Nov\",\"y\":7.9},{\"x\":\"Dec\",\"y\":5.7}]}],\"dataLabels\":{\"enabled\":true,\"enabledOnSeries\":[1]},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"stroke\":{\"width\":[0,4],\"curve\":\"straight\"},\"yaxis\":[{\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"title\":{\"text\":\"Precipitation (in mm)\"}},{\"opposite\":true,\"decimalsInFloat\":0,\"title\":{\"text\":\"Temperature (in degree celsius)\"}}]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Apr\",\"max\":\"Sep\"},\"type\":\"column\",\"mixed_type\":\"bar\"},\"evals\":[],\"jsHooks\":[]} # Scatter ---- # add smooth line on scatter plot apex(cars, aes(speed, dist), type = \"scatter\") %>% add_line(aes(x, y), data = lowess(cars), serie_name = \"lowess\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]},{\"name\":\"lowess\",\"type\":\"line\",\"data\":[{\"x\":4,\"y\":4.965459277186882},{\"x\":4,\"y\":4.965459277186882},{\"x\":7,\"y\":13.12449503966645},{\"x\":7,\"y\":13.12449503966645},{\"x\":8,\"y\":15.85863338209832},{\"x\":9,\"y\":18.57969051421773},{\"x\":10,\"y\":21.28031257852845},{\"x\":10,\"y\":21.28031257852845},{\"x\":10,\"y\":21.28031257852845},{\"x\":11,\"y\":24.12927714892649},{\"x\":11,\"y\":24.12927714892649},{\"x\":12,\"y\":27.11954855060354},{\"x\":12,\"y\":27.11954855060354},{\"x\":12,\"y\":27.11954855060354},{\"x\":12,\"y\":27.11954855060354},{\"x\":13,\"y\":30.02727633115396},{\"x\":13,\"y\":30.02727633115396},{\"x\":13,\"y\":30.02727633115396},{\"x\":13,\"y\":30.02727633115396},{\"x\":14,\"y\":32.96250613615763},{\"x\":14,\"y\":32.96250613615763},{\"x\":14,\"y\":32.96250613615763},{\"x\":14,\"y\":32.96250613615763},{\"x\":15,\"y\":36.75772834164972},{\"x\":15,\"y\":36.75772834164972},{\"x\":15,\"y\":36.75772834164972},{\"x\":16,\"y\":40.43507456198874},{\"x\":16,\"y\":40.43507456198874},{\"x\":17,\"y\":43.46349178181757},{\"x\":17,\"y\":43.46349178181757},{\"x\":17,\"y\":43.46349178181757},{\"x\":18,\"y\":46.88547894602397},{\"x\":18,\"y\":46.88547894602397},{\"x\":18,\"y\":46.88547894602397},{\"x\":18,\"y\":46.88547894602397},{\"x\":19,\"y\":50.79315172542057},{\"x\":19,\"y\":50.79315172542057},{\"x\":19,\"y\":50.79315172542057},{\"x\":20,\"y\":56.49122409287715},{\"x\":20,\"y\":56.49122409287715},{\"x\":20,\"y\":56.49122409287715},{\"x\":20,\"y\":56.49122409287715},{\"x\":20,\"y\":56.49122409287715},{\"x\":22,\"y\":67.58582423143133},{\"x\":23,\"y\":73.07969526937005},{\"x\":24,\"y\":78.64316355439986},{\"x\":24,\"y\":78.64316355439986},{\"x\":24,\"y\":78.64316355439986},{\"x\":24,\"y\":78.64316355439986},{\"x\":25,\"y\":84.32869809683419}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"markers\":{\"size\":[6,0]},\"stroke\":{\"curve\":\"straight\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\",\"mixed_type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # or directly apex(cars, aes(speed, dist), type = \"scatter\") %>% add_smooth_line() {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]},{\"name\":\"smooth\",\"type\":\"line\",\"data\":[{\"x\":4,\"y\":-1.849459854014587},{\"x\":4.212121212121212,\"y\":-1.015312541473115},{\"x\":4.424242424242424,\"y\":-0.1811652289316434},{\"x\":4.636363636363637,\"y\":0.6529820836098352},{\"x\":4.848484848484849,\"y\":1.487129396151307},{\"x\":5.060606060606061,\"y\":2.321276708692778},{\"x\":5.272727272727272,\"y\":3.15542402123425},{\"x\":5.484848484848484,\"y\":3.989571333775721},{\"x\":5.696969696969697,\"y\":4.823718646317197},{\"x\":5.909090909090909,\"y\":5.657865958858672},{\"x\":6.121212121212121,\"y\":6.492013271400143},{\"x\":6.333333333333334,\"y\":7.326160583941618},{\"x\":6.545454545454545,\"y\":8.160307896483086},{\"x\":6.757575757575758,\"y\":8.994455209024562},{\"x\":6.96969696969697,\"y\":9.828602521566037},{\"x\":7.181818181818182,\"y\":10.66274983410751},{\"x\":7.393939393939394,\"y\":11.49689714664898},{\"x\":7.606060606060606,\"y\":12.33104445919045},{\"x\":7.818181818181818,\"y\":13.16519177173193},{\"x\":8.030303030303031,\"y\":13.9993390842734},{\"x\":8.242424242424242,\"y\":14.83348639681487},{\"x\":8.454545454545455,\"y\":15.66763370935635},{\"x\":8.666666666666668,\"y\":16.50178102189782},{\"x\":8.878787878787879,\"y\":17.33592833443929},{\"x\":9.09090909090909,\"y\":18.17007564698076},{\"x\":9.303030303030303,\"y\":19.00422295952223},{\"x\":9.515151515151516,\"y\":19.83837027206371},{\"x\":9.727272727272727,\"y\":20.67251758460518},{\"x\":9.939393939393939,\"y\":21.50666489714666},{\"x\":10.15151515151515,\"y\":22.34081220968813},{\"x\":10.36363636363636,\"y\":23.1749595222296},{\"x\":10.57575757575758,\"y\":24.00910683477108},{\"x\":10.78787878787879,\"y\":24.84325414731255},{\"x\":11,\"y\":25.67740145985402},{\"x\":11.21212121212121,\"y\":26.51154877239549},{\"x\":11.42424242424243,\"y\":27.34569608493697},{\"x\":11.63636363636364,\"y\":28.17984339747844},{\"x\":11.84848484848485,\"y\":29.01399071001991},{\"x\":12.06060606060606,\"y\":29.84813802256138},{\"x\":12.27272727272727,\"y\":30.68228533510286},{\"x\":12.48484848484848,\"y\":31.51643264764433},{\"x\":12.6969696969697,\"y\":32.35057996018581},{\"x\":12.90909090909091,\"y\":33.18472727272729},{\"x\":13.12121212121212,\"y\":34.01887458526875},{\"x\":13.33333333333333,\"y\":34.85302189781022},{\"x\":13.54545454545454,\"y\":35.6871692103517},{\"x\":13.75757575757576,\"y\":36.52131652289317},{\"x\":13.96969696969697,\"y\":37.35546383543465},{\"x\":14.18181818181818,\"y\":38.18961114797611},{\"x\":14.39393939393939,\"y\":39.02375846051758},{\"x\":14.60606060606061,\"y\":39.85790577305906},{\"x\":14.81818181818182,\"y\":40.69205308560053},{\"x\":15.03030303030303,\"y\":41.52620039814201},{\"x\":15.24242424242424,\"y\":42.36034771068348},{\"x\":15.45454545454546,\"y\":43.19449502322496},{\"x\":15.66666666666667,\"y\":44.02864233576643},{\"x\":15.87878787878788,\"y\":44.8627896483079},{\"x\":16.09090909090909,\"y\":45.69693696084938},{\"x\":16.3030303030303,\"y\":46.53108427339086},{\"x\":16.51515151515152,\"y\":47.36523158593232},{\"x\":16.72727272727273,\"y\":48.1993788984738},{\"x\":16.93939393939394,\"y\":49.03352621101526},{\"x\":17.15151515151515,\"y\":49.86767352355675},{\"x\":17.36363636363636,\"y\":50.70182083609821},{\"x\":17.57575757575758,\"y\":51.5359681486397},{\"x\":17.78787878787879,\"y\":52.37011546118116},{\"x\":18,\"y\":53.20426277372263},{\"x\":18.21212121212121,\"y\":54.03841008626411},{\"x\":18.42424242424242,\"y\":54.87255739880557},{\"x\":18.63636363636364,\"y\":55.70670471134706},{\"x\":18.84848484848485,\"y\":56.54085202388853},{\"x\":19.06060606060606,\"y\":57.37499933643001},{\"x\":19.27272727272727,\"y\":58.20914664897147},{\"x\":19.48484848484848,\"y\":59.04329396151294},{\"x\":19.6969696969697,\"y\":59.87744127405441},{\"x\":19.90909090909091,\"y\":60.71158858659589},{\"x\":20.12121212121212,\"y\":61.54573589913736},{\"x\":20.33333333333333,\"y\":62.37988321167883},{\"x\":20.54545454545455,\"y\":63.21403052422032},{\"x\":20.75757575757576,\"y\":64.04817783676178},{\"x\":20.96969696969697,\"y\":64.88232514930326},{\"x\":21.18181818181818,\"y\":65.71647246184473},{\"x\":21.39393939393939,\"y\":66.55061977438621},{\"x\":21.60606060606061,\"y\":67.38476708692767},{\"x\":21.81818181818182,\"y\":68.21891439946916},{\"x\":22.03030303030303,\"y\":69.05306171201062},{\"x\":22.24242424242424,\"y\":69.88720902455209},{\"x\":22.45454545454546,\"y\":70.72135633709357},{\"x\":22.66666666666667,\"y\":71.55550364963504},{\"x\":22.87878787878788,\"y\":72.38965096217652},{\"x\":23.09090909090909,\"y\":73.22379827471798},{\"x\":23.3030303030303,\"y\":74.05794558725947},{\"x\":23.51515151515152,\"y\":74.89209289980093},{\"x\":23.72727272727273,\"y\":75.7262402123424},{\"x\":23.93939393939394,\"y\":76.56038752488388},{\"x\":24.15151515151515,\"y\":77.39453483742535},{\"x\":24.36363636363636,\"y\":78.22868214996682},{\"x\":24.57575757575758,\"y\":79.0628294625083},{\"x\":24.78787878787879,\"y\":79.89697677504977},{\"x\":25,\"y\":80.73112408759124}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"markers\":{\"size\":[6,0]},\"stroke\":{\"curve\":\"straight\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\",\"mixed_type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} apex(cars, aes(speed, dist), type = \"scatter\") %>% add_smooth_line(model = \"loess\", span = 1) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]},{\"name\":\"smooth\",\"type\":\"line\",\"data\":[{\"x\":4,\"y\":4.068501654078753},{\"x\":4.212121212121212,\"y\":4.688779871430851},{\"x\":4.424242424242424,\"y\":5.312317879562883},{\"x\":4.636363636363637,\"y\":5.939113342918606},{\"x\":4.848484848484849,\"y\":6.56916392594178},{\"x\":5.060606060606061,\"y\":7.202467293076166},{\"x\":5.272727272727272,\"y\":7.839021108765521},{\"x\":5.484848484848484,\"y\":8.47882303745361},{\"x\":5.696969696969697,\"y\":9.121870743584193},{\"x\":5.909090909090909,\"y\":9.768161891601022},{\"x\":6.121212121212121,\"y\":10.41769414594786},{\"x\":6.333333333333334,\"y\":11.07046517106848},{\"x\":6.545454545454545,\"y\":11.72647263140661},{\"x\":6.757575757575758,\"y\":12.38571419140605},{\"x\":6.96969696969697,\"y\":13.04818751551053},{\"x\":7.181818181818182,\"y\":13.71389026816382},{\"x\":7.393939393939394,\"y\":14.38282011380969},{\"x\":7.606060606060606,\"y\":15.05497471689188},{\"x\":7.818181818181818,\"y\":15.73035174185416},{\"x\":8.030303030303031,\"y\":16.40894885314029},{\"x\":8.242424242424242,\"y\":17.09076371519403},{\"x\":8.454545454545455,\"y\":17.77579399245913},{\"x\":8.666666666666668,\"y\":18.46403734937937},{\"x\":8.878787878787879,\"y\":19.1554914503985},{\"x\":9.09090909090909,\"y\":19.85015395996026},{\"x\":9.303030303030303,\"y\":20.54802254250845},{\"x\":9.515151515151516,\"y\":21.2490948624868},{\"x\":9.727272727272727,\"y\":21.95336858433907},{\"x\":9.939393939393939,\"y\":22.66084137250904},{\"x\":10.15151515151515,\"y\":23.37261009625128},{\"x\":10.36363636363636,\"y\":24.09114183563184},{\"x\":10.57575757575758,\"y\":24.81547350980789},{\"x\":10.78787878787879,\"y\":25.54445048767638},{\"x\":11,\"y\":26.27691813813431},{\"x\":11.21212121212121,\"y\":27.01172183007865},{\"x\":11.42424242424243,\"y\":27.7477069324064},{\"x\":11.63636363636364,\"y\":28.4837188140145},{\"x\":11.84848484848485,\"y\":29.21860284379995},{\"x\":12.06060606060606,\"y\":29.95265315652944},{\"x\":12.27272727272727,\"y\":30.70822730743365},{\"x\":12.48484848484848,\"y\":31.4883136286001},{\"x\":12.6969696969697,\"y\":32.2863891762583},{\"x\":12.90909090909091,\"y\":33.09593100663775},{\"x\":13.12121212121212,\"y\":33.91041617596795},{\"x\":13.33333333333333,\"y\":34.7233217404784},{\"x\":13.54545454545454,\"y\":35.52812475639863},{\"x\":13.75757575757576,\"y\":36.3183022799581},{\"x\":13.96969696969697,\"y\":37.08733136738635},{\"x\":14.18181818181818,\"y\":37.79504906365921},{\"x\":14.39393939393939,\"y\":38.41554455754869},{\"x\":14.60606060606061,\"y\":39.00657162015801},{\"x\":14.81818181818182,\"y\":39.62704103103226},{\"x\":15.03030303030303,\"y\":40.33355174478542},{\"x\":15.24242424242424,\"y\":41.03570208465078},{\"x\":15.45454545454546,\"y\":41.6757534926082},{\"x\":15.66666666666667,\"y\":42.27452934442941},{\"x\":15.87878787878788,\"y\":42.85285301588612},{\"x\":16.09090909090909,\"y\":43.43154788275009},{\"x\":16.3030303030303,\"y\":44.03143732079302},{\"x\":16.51515151515152,\"y\":44.67334470578665},{\"x\":16.72727272727273,\"y\":45.37809341350271},{\"x\":16.93939393939394,\"y\":46.16650681971291},{\"x\":17.15151515151515,\"y\":47.02901049899855},{\"x\":17.36363636363636,\"y\":47.89437412607851},{\"x\":17.57575757575758,\"y\":48.76213261441983},{\"x\":17.78787878787879,\"y\":49.63645797651972},{\"x\":18,\"y\":50.5215222248755},{\"x\":18.21212121212121,\"y\":51.42149737198441},{\"x\":18.42424242424242,\"y\":52.34055543034371},{\"x\":18.63636363636364,\"y\":53.28286841245071},{\"x\":18.84848484848485,\"y\":54.25260833080266},{\"x\":19.06060606060606,\"y\":55.25298214302099},{\"x\":19.27272727272727,\"y\":56.27056306737203},{\"x\":19.48484848484848,\"y\":57.30033127941984},{\"x\":19.6969696969697,\"y\":58.34300484473201},{\"x\":19.90909090909091,\"y\":59.39930182887616},{\"x\":20.12121212121212,\"y\":60.46994029741986},{\"x\":20.33333333333333,\"y\":61.5556383159307},{\"x\":20.54545454545455,\"y\":62.65711394997627},{\"x\":20.75757575757576,\"y\":63.77508526512418},{\"x\":20.96969696969697,\"y\":64.91027032694198},{\"x\":21.18181818181818,\"y\":66.06338720099734},{\"x\":21.39393939393939,\"y\":67.2351539528578},{\"x\":21.60606060606061,\"y\":68.42628864809095},{\"x\":21.81818181818182,\"y\":69.6375093522644},{\"x\":22.03030303030303,\"y\":70.86955119312252},{\"x\":22.24242424242424,\"y\":72.12388735076721},{\"x\":22.45454545454546,\"y\":73.40069848868409},{\"x\":22.66666666666667,\"y\":74.69939033797804},{\"x\":22.87878787878788,\"y\":76.01936862975418},{\"x\":23.09090909090909,\"y\":77.36003909511749},{\"x\":23.3030303030303,\"y\":78.720807465173},{\"x\":23.51515151515152,\"y\":80.10107947102563},{\"x\":23.72727272727273,\"y\":81.5002608437805},{\"x\":23.93939393939394,\"y\":82.91775731454261},{\"x\":24.15151515151515,\"y\":84.35297461441689},{\"x\":24.36363636363636,\"y\":85.80531847450841},{\"x\":24.57575757575758,\"y\":87.27419462592221},{\"x\":24.78787878787879,\"y\":88.75900879976324},{\"x\":25,\"y\":90.25916672713653}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"markers\":{\"size\":[6,0]},\"stroke\":{\"curve\":\"straight\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\",\"mixed_type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} apex(cars, aes(speed, dist), type = \"scatter\") %>% add_smooth_line(model = \"loess\", degree = 1) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]},{\"name\":\"smooth\",\"type\":\"line\",\"data\":[{\"x\":4,\"y\":3.27234011670773},{\"x\":4.212121212121212,\"y\":3.95644616944284},{\"x\":4.424242424242424,\"y\":4.635328991566799},{\"x\":4.636363636363637,\"y\":5.30978514143675},{\"x\":4.848484848484849,\"y\":5.980611177409829},{\"x\":5.060606060606061,\"y\":6.648603657843183},{\"x\":5.272727272727272,\"y\":7.314559141093953},{\"x\":5.484848484848484,\"y\":7.979274185519277},{\"x\":5.696969696969697,\"y\":8.643545349476305},{\"x\":5.909090909090909,\"y\":9.308169191322172},{\"x\":6.121212121212121,\"y\":9.973942269414021},{\"x\":6.333333333333334,\"y\":10.64166114210899},{\"x\":6.545454545454545,\"y\":11.31212236776423},{\"x\":6.757575757575758,\"y\":11.98612250473689},{\"x\":6.96969696969697,\"y\":12.66445811138408},{\"x\":7.181818181818182,\"y\":13.34792574606297},{\"x\":7.393939393939394,\"y\":14.0373219671307},{\"x\":7.606060606060606,\"y\":14.7334433329444},{\"x\":7.818181818181818,\"y\":15.43708640186122},{\"x\":8.030303030303031,\"y\":16.14864409351407},{\"x\":8.242424242424242,\"y\":16.8457288923785},{\"x\":8.454545454545455,\"y\":17.52040284993576},{\"x\":8.666666666666668,\"y\":18.18006782390649},{\"x\":8.878787878787879,\"y\":18.83212567201134},{\"x\":9.09090909090909,\"y\":19.48397825197097},{\"x\":9.303030303030303,\"y\":20.14302742150604},{\"x\":9.515151515151516,\"y\":20.81667503833722},{\"x\":9.727272727272727,\"y\":21.51232296018514},{\"x\":9.939393939393939,\"y\":22.23737304477048},{\"x\":10.15151515151515,\"y\":22.98267247955477},{\"x\":10.36363636363636,\"y\":23.70953501207556},{\"x\":10.57575757575758,\"y\":24.42191379532787},{\"x\":10.78787878787879,\"y\":25.12639969565184},{\"x\":11,\"y\":25.82958357938761},{\"x\":11.21212121212121,\"y\":26.53805631287532},{\"x\":11.42424242424243,\"y\":27.25840876245515},{\"x\":11.63636363636364,\"y\":27.99723179446719},{\"x\":11.84848484848485,\"y\":28.76111627525162},{\"x\":12.06060606060606,\"y\":29.55338034616417},{\"x\":12.27272727272727,\"y\":30.32799355352833},{\"x\":12.48484848484848,\"y\":31.08382219579632},{\"x\":12.6969696969697,\"y\":31.84137018466075},{\"x\":12.90909090909091,\"y\":32.62114143181417},{\"x\":13.12121212121212,\"y\":33.43290657582531},{\"x\":13.33333333333333,\"y\":34.24202105965291},{\"x\":13.54545454545454,\"y\":35.04840005298755},{\"x\":13.75757575757576,\"y\":35.85753667767714},{\"x\":13.96969696969697,\"y\":36.6749240555696},{\"x\":14.18181818181818,\"y\":37.54178377863914},{\"x\":14.39393939393939,\"y\":38.48718163819591},{\"x\":14.60606060606061,\"y\":39.45351208455126},{\"x\":14.81818181818182,\"y\":40.38195836945836},{\"x\":15.03030303030303,\"y\":41.21453082709676},{\"x\":15.24242424242424,\"y\":41.95798534764276},{\"x\":15.45454545454546,\"y\":42.64423511092274},{\"x\":15.66666666666667,\"y\":43.2839236727686},{\"x\":15.87878787878788,\"y\":43.88769458901223},{\"x\":16.09090909090909,\"y\":44.46619141548552},{\"x\":16.3030303030303,\"y\":45.03005770802037},{\"x\":16.51515151515152,\"y\":45.58993702244866},{\"x\":16.72727272727273,\"y\":46.1564729146023},{\"x\":16.93939393939394,\"y\":46.74030894031319},{\"x\":17.15151515151515,\"y\":47.35885911422699},{\"x\":17.36363636363636,\"y\":48.0320169938337},{\"x\":17.57575757575758,\"y\":48.7525054170305},{\"x\":17.78787878787879,\"y\":49.51170182428572},{\"x\":18,\"y\":50.3009836560678},{\"x\":18.21212121212121,\"y\":51.11172835284508},{\"x\":18.42424242424242,\"y\":51.93531335508598},{\"x\":18.63636363636364,\"y\":52.76311610325887},{\"x\":18.84848484848485,\"y\":53.58651403783215},{\"x\":19.06060606060606,\"y\":54.40260120473538},{\"x\":19.27272727272727,\"y\":55.29986395073585},{\"x\":19.48484848484848,\"y\":56.30041859059518},{\"x\":19.6969696969697,\"y\":57.39018890867492},{\"x\":19.90909090909091,\"y\":58.5550986893366},{\"x\":20.12121212121212,\"y\":59.78107171694171},{\"x\":20.33333333333333,\"y\":61.05403177585178},{\"x\":20.54545454545455,\"y\":62.35990265042832},{\"x\":20.75757575757576,\"y\":63.68460812503286},{\"x\":20.96969696969697,\"y\":65.0140719840269},{\"x\":21.18181818181818,\"y\":66.33421801177197},{\"x\":21.39393939393939,\"y\":67.63096999262957},{\"x\":21.60606060606061,\"y\":68.89025171096125},{\"x\":21.81818181818182,\"y\":70.09798695112852},{\"x\":22.03030303030303,\"y\":71.24116957903946},{\"x\":22.24242424242424,\"y\":72.37339793247195},{\"x\":22.45454545454546,\"y\":73.52879203460289},{\"x\":22.66666666666667,\"y\":74.7042987361594},{\"x\":22.87878787878788,\"y\":75.89686488786869},{\"x\":23.09090909090909,\"y\":77.1034373404579},{\"x\":23.3030303030303,\"y\":78.32096294465433},{\"x\":23.51515151515152,\"y\":79.54638855118499},{\"x\":23.72727272727273,\"y\":80.77666101077716},{\"x\":23.93939393939394,\"y\":82.00872717415804},{\"x\":24.15151515151515,\"y\":83.23953389205474},{\"x\":24.36363636363636,\"y\":84.46602801519447},{\"x\":24.57575757575758,\"y\":85.68515639430443},{\"x\":24.78787878787879,\"y\":86.89386588011176},{\"x\":25,\"y\":88.08910332334366}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"markers\":{\"size\":[6,0]},\"stroke\":{\"curve\":\"straight\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\",\"mixed_type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} apex(cars, aes(speed, dist), type = \"scatter\") %>% add_smooth_line(formula = y ~ poly(x, 2)) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]},{\"name\":\"smooth\",\"type\":\"line\",\"data\":[{\"x\":4,\"y\":7.722637075154104},{\"x\":4.212121212121212,\"y\":8.09049036708848},{\"x\":4.424242424242424,\"y\":8.467339078309205},{\"x\":4.636363636363637,\"y\":8.853183208816295},{\"x\":4.848484848484849,\"y\":9.248022758609753},{\"x\":5.060606060606061,\"y\":9.651857727689556},{\"x\":5.272727272727272,\"y\":10.06468811605571},{\"x\":5.484848484848484,\"y\":10.48651392370824},{\"x\":5.696969696969697,\"y\":10.91733515064713},{\"x\":5.909090909090909,\"y\":11.35715179687237},{\"x\":6.121212121212121,\"y\":11.80596386238397},{\"x\":6.333333333333334,\"y\":12.26377134718193},{\"x\":6.545454545454545,\"y\":12.73057425126625},{\"x\":6.757575757575758,\"y\":13.20637257463692},{\"x\":6.96969696969697,\"y\":13.69116631729397},{\"x\":7.181818181818182,\"y\":14.18495547923736},{\"x\":7.393939393939394,\"y\":14.68774006046711},{\"x\":7.606060606060606,\"y\":15.19952006098323},{\"x\":7.818181818181818,\"y\":15.7202954807857},{\"x\":8.030303030303031,\"y\":16.25006631987453},{\"x\":8.242424242424242,\"y\":16.78883257824971},{\"x\":8.454545454545455,\"y\":17.33659425591127},{\"x\":8.666666666666668,\"y\":17.89335135285917},{\"x\":8.878787878787879,\"y\":18.45910386909344},{\"x\":9.09090909090909,\"y\":19.03385180461406},{\"x\":9.303030303030303,\"y\":19.61759515942104},{\"x\":9.515151515151516,\"y\":20.21033393351439},{\"x\":9.727272727272727,\"y\":20.81206812689408},{\"x\":9.939393939393939,\"y\":21.42279773956015},{\"x\":10.15151515151515,\"y\":22.04252277151256},{\"x\":10.36363636363636,\"y\":22.67124322275134},{\"x\":10.57575757575758,\"y\":23.30895909327647},{\"x\":10.78787878787879,\"y\":23.95567038308797},{\"x\":11,\"y\":24.61137709218582},{\"x\":11.21212121212121,\"y\":25.27607922057003},{\"x\":11.42424242424243,\"y\":25.94977676824061},{\"x\":11.63636363636364,\"y\":26.63246973519754},{\"x\":11.84848484848485,\"y\":27.32415812144082},{\"x\":12.06060606060606,\"y\":28.02484192697047},{\"x\":12.27272727272727,\"y\":28.73452115178647},{\"x\":12.48484848484848,\"y\":29.45319579588883},{\"x\":12.6969696969697,\"y\":30.18086585927757},{\"x\":12.90909090909091,\"y\":30.91753134195265},{\"x\":13.12121212121212,\"y\":31.66319224391409},{\"x\":13.33333333333333,\"y\":32.41784856516189},{\"x\":13.54545454545454,\"y\":33.18150030569604},{\"x\":13.75757575757576,\"y\":33.95414746551656},{\"x\":13.96969696969697,\"y\":34.73579004462344},{\"x\":14.18181818181818,\"y\":35.52642804301667},{\"x\":14.39393939393939,\"y\":36.32606146069627},{\"x\":14.60606060606061,\"y\":37.13469029766222},{\"x\":14.81818181818182,\"y\":37.95231455391453},{\"x\":15.03030303030303,\"y\":38.7789342294532},{\"x\":15.24242424242424,\"y\":39.61454932427822},{\"x\":15.45454545454546,\"y\":40.45915983838961},{\"x\":15.66666666666667,\"y\":41.31276577178736},{\"x\":15.87878787878788,\"y\":42.17536712447146},{\"x\":16.09090909090909,\"y\":43.04696389644194},{\"x\":16.3030303030303,\"y\":43.92755608769875},{\"x\":16.51515151515152,\"y\":44.81714369824194},{\"x\":16.72727272727273,\"y\":45.71572672807147},{\"x\":16.93939393939394,\"y\":46.62330517718736},{\"x\":17.15151515151515,\"y\":47.53987904558963},{\"x\":17.36363636363636,\"y\":48.46544833327825},{\"x\":17.57575757575758,\"y\":49.40001304025323},{\"x\":17.78787878787879,\"y\":50.34357316651456},{\"x\":18,\"y\":51.29612871206224},{\"x\":18.21212121212121,\"y\":52.25767967689629},{\"x\":18.42424242424242,\"y\":53.22822606101669},{\"x\":18.63636363636364,\"y\":54.20776786442347},{\"x\":18.84848484848485,\"y\":55.19630508711662},{\"x\":19.06060606060606,\"y\":56.1938377290961},{\"x\":19.27272727272727,\"y\":57.20036579036194},{\"x\":19.48484848484848,\"y\":58.21588927091413},{\"x\":19.6969696969697,\"y\":59.24040817075269},{\"x\":19.90909090909091,\"y\":60.27392248987763},{\"x\":20.12121212121212,\"y\":61.3164322282889},{\"x\":20.33333333333333,\"y\":62.36793738598654},{\"x\":20.54545454545455,\"y\":63.42843796297054},{\"x\":20.75757575757576,\"y\":64.4979339592409},{\"x\":20.96969696969697,\"y\":65.57642537479761},{\"x\":21.18181818181818,\"y\":66.66391220964069},{\"x\":21.39393939393939,\"y\":67.76039446377013},{\"x\":21.60606060606061,\"y\":68.8658721371859},{\"x\":21.81818181818182,\"y\":69.98034522988807},{\"x\":22.03030303030303,\"y\":71.10381374187656},{\"x\":22.24242424242424,\"y\":72.23627767315143},{\"x\":22.45454545454546,\"y\":73.37773702371267},{\"x\":22.66666666666667,\"y\":74.52819179356025},{\"x\":22.87878787878788,\"y\":75.6876419826942},{\"x\":23.09090909090909,\"y\":76.85608759111449},{\"x\":23.3030303030303,\"y\":78.03352861882117},{\"x\":23.51515151515152,\"y\":79.21996506581418},{\"x\":23.72727272727273,\"y\":80.41539693209356},{\"x\":23.93939393939394,\"y\":81.6198242176593},{\"x\":24.15151515151515,\"y\":82.83324692251139},{\"x\":24.36363636363636,\"y\":84.05566504664985},{\"x\":24.57575757575758,\"y\":85.28707859007467},{\"x\":24.78787878787879,\"y\":86.52748755278584},{\"x\":25,\"y\":87.77689193478336}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"markers\":{\"size\":[6,0]},\"stroke\":{\"curve\":\"straight\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\",\"mixed_type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} apex(cars, aes(speed, dist), type = \"scatter\") %>% add_smooth_line(model = \"lm\", serie_name = \"lm\") %>% add_smooth_line(model = \"loess\", serie_name = \"loess\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]},{\"name\":\"lm\",\"type\":\"line\",\"data\":[{\"x\":4,\"y\":-1.849459854014587},{\"x\":4.212121212121212,\"y\":-1.015312541473115},{\"x\":4.424242424242424,\"y\":-0.1811652289316434},{\"x\":4.636363636363637,\"y\":0.6529820836098352},{\"x\":4.848484848484849,\"y\":1.487129396151307},{\"x\":5.060606060606061,\"y\":2.321276708692778},{\"x\":5.272727272727272,\"y\":3.15542402123425},{\"x\":5.484848484848484,\"y\":3.989571333775721},{\"x\":5.696969696969697,\"y\":4.823718646317197},{\"x\":5.909090909090909,\"y\":5.657865958858672},{\"x\":6.121212121212121,\"y\":6.492013271400143},{\"x\":6.333333333333334,\"y\":7.326160583941618},{\"x\":6.545454545454545,\"y\":8.160307896483086},{\"x\":6.757575757575758,\"y\":8.994455209024562},{\"x\":6.96969696969697,\"y\":9.828602521566037},{\"x\":7.181818181818182,\"y\":10.66274983410751},{\"x\":7.393939393939394,\"y\":11.49689714664898},{\"x\":7.606060606060606,\"y\":12.33104445919045},{\"x\":7.818181818181818,\"y\":13.16519177173193},{\"x\":8.030303030303031,\"y\":13.9993390842734},{\"x\":8.242424242424242,\"y\":14.83348639681487},{\"x\":8.454545454545455,\"y\":15.66763370935635},{\"x\":8.666666666666668,\"y\":16.50178102189782},{\"x\":8.878787878787879,\"y\":17.33592833443929},{\"x\":9.09090909090909,\"y\":18.17007564698076},{\"x\":9.303030303030303,\"y\":19.00422295952223},{\"x\":9.515151515151516,\"y\":19.83837027206371},{\"x\":9.727272727272727,\"y\":20.67251758460518},{\"x\":9.939393939393939,\"y\":21.50666489714666},{\"x\":10.15151515151515,\"y\":22.34081220968813},{\"x\":10.36363636363636,\"y\":23.1749595222296},{\"x\":10.57575757575758,\"y\":24.00910683477108},{\"x\":10.78787878787879,\"y\":24.84325414731255},{\"x\":11,\"y\":25.67740145985402},{\"x\":11.21212121212121,\"y\":26.51154877239549},{\"x\":11.42424242424243,\"y\":27.34569608493697},{\"x\":11.63636363636364,\"y\":28.17984339747844},{\"x\":11.84848484848485,\"y\":29.01399071001991},{\"x\":12.06060606060606,\"y\":29.84813802256138},{\"x\":12.27272727272727,\"y\":30.68228533510286},{\"x\":12.48484848484848,\"y\":31.51643264764433},{\"x\":12.6969696969697,\"y\":32.35057996018581},{\"x\":12.90909090909091,\"y\":33.18472727272729},{\"x\":13.12121212121212,\"y\":34.01887458526875},{\"x\":13.33333333333333,\"y\":34.85302189781022},{\"x\":13.54545454545454,\"y\":35.6871692103517},{\"x\":13.75757575757576,\"y\":36.52131652289317},{\"x\":13.96969696969697,\"y\":37.35546383543465},{\"x\":14.18181818181818,\"y\":38.18961114797611},{\"x\":14.39393939393939,\"y\":39.02375846051758},{\"x\":14.60606060606061,\"y\":39.85790577305906},{\"x\":14.81818181818182,\"y\":40.69205308560053},{\"x\":15.03030303030303,\"y\":41.52620039814201},{\"x\":15.24242424242424,\"y\":42.36034771068348},{\"x\":15.45454545454546,\"y\":43.19449502322496},{\"x\":15.66666666666667,\"y\":44.02864233576643},{\"x\":15.87878787878788,\"y\":44.8627896483079},{\"x\":16.09090909090909,\"y\":45.69693696084938},{\"x\":16.3030303030303,\"y\":46.53108427339086},{\"x\":16.51515151515152,\"y\":47.36523158593232},{\"x\":16.72727272727273,\"y\":48.1993788984738},{\"x\":16.93939393939394,\"y\":49.03352621101526},{\"x\":17.15151515151515,\"y\":49.86767352355675},{\"x\":17.36363636363636,\"y\":50.70182083609821},{\"x\":17.57575757575758,\"y\":51.5359681486397},{\"x\":17.78787878787879,\"y\":52.37011546118116},{\"x\":18,\"y\":53.20426277372263},{\"x\":18.21212121212121,\"y\":54.03841008626411},{\"x\":18.42424242424242,\"y\":54.87255739880557},{\"x\":18.63636363636364,\"y\":55.70670471134706},{\"x\":18.84848484848485,\"y\":56.54085202388853},{\"x\":19.06060606060606,\"y\":57.37499933643001},{\"x\":19.27272727272727,\"y\":58.20914664897147},{\"x\":19.48484848484848,\"y\":59.04329396151294},{\"x\":19.6969696969697,\"y\":59.87744127405441},{\"x\":19.90909090909091,\"y\":60.71158858659589},{\"x\":20.12121212121212,\"y\":61.54573589913736},{\"x\":20.33333333333333,\"y\":62.37988321167883},{\"x\":20.54545454545455,\"y\":63.21403052422032},{\"x\":20.75757575757576,\"y\":64.04817783676178},{\"x\":20.96969696969697,\"y\":64.88232514930326},{\"x\":21.18181818181818,\"y\":65.71647246184473},{\"x\":21.39393939393939,\"y\":66.55061977438621},{\"x\":21.60606060606061,\"y\":67.38476708692767},{\"x\":21.81818181818182,\"y\":68.21891439946916},{\"x\":22.03030303030303,\"y\":69.05306171201062},{\"x\":22.24242424242424,\"y\":69.88720902455209},{\"x\":22.45454545454546,\"y\":70.72135633709357},{\"x\":22.66666666666667,\"y\":71.55550364963504},{\"x\":22.87878787878788,\"y\":72.38965096217652},{\"x\":23.09090909090909,\"y\":73.22379827471798},{\"x\":23.3030303030303,\"y\":74.05794558725947},{\"x\":23.51515151515152,\"y\":74.89209289980093},{\"x\":23.72727272727273,\"y\":75.7262402123424},{\"x\":23.93939393939394,\"y\":76.56038752488388},{\"x\":24.15151515151515,\"y\":77.39453483742535},{\"x\":24.36363636363636,\"y\":78.22868214996682},{\"x\":24.57575757575758,\"y\":79.0628294625083},{\"x\":24.78787878787879,\"y\":79.89697677504977},{\"x\":25,\"y\":80.73112408759124}]},{\"name\":\"loess\",\"type\":\"line\",\"data\":[{\"x\":4,\"y\":5.893627990291625},{\"x\":4.212121212121212,\"y\":6.271843465271707},{\"x\":4.424242424242424,\"y\":6.663921462067189},{\"x\":4.636363636363637,\"y\":7.06977889431489},{\"x\":4.848484848484849,\"y\":7.489332675651621},{\"x\":5.060606060606061,\"y\":7.9224997197142},{\"x\":5.272727272727272,\"y\":8.369196940139444},{\"x\":5.484848484848484,\"y\":8.829341250564166},{\"x\":5.696969696969697,\"y\":9.302849564625189},{\"x\":5.909090909090909,\"y\":9.789638795959322},{\"x\":6.121212121212121,\"y\":10.28962585820338},{\"x\":6.333333333333334,\"y\":10.80272766499419},{\"x\":6.545454545454545,\"y\":11.32886112996855},{\"x\":6.757575757575758,\"y\":11.86794316676329},{\"x\":6.96969696969697,\"y\":12.41989068901522},{\"x\":7.181818181818182,\"y\":12.98462061036116},{\"x\":7.393939393939394,\"y\":13.56204984443792},{\"x\":7.606060606060606,\"y\":14.15209530488232},{\"x\":7.818181818181818,\"y\":14.75467390533117},{\"x\":8.030303030303031,\"y\":15.36985421142177},{\"x\":8.242424242424242,\"y\":16.00608304754009},{\"x\":8.454545454545455,\"y\":16.66583082730757},{\"x\":8.666666666666668,\"y\":17.3457030078592},{\"x\":8.878787878787879,\"y\":18.04230504632998},{\"x\":9.09090909090909,\"y\":18.75224239985491},{\"x\":9.303030303030303,\"y\":19.47212052556901},{\"x\":9.515151515151516,\"y\":20.19854488060726},{\"x\":9.727272727272727,\"y\":20.92812092210468},{\"x\":9.939393939393939,\"y\":21.65745410719626},{\"x\":10.15151515151515,\"y\":22.39099921763204},{\"x\":10.36363636363636,\"y\":23.14680865897256},{\"x\":10.57575757575758,\"y\":23.92230638877425},{\"x\":10.78787878787879,\"y\":24.71365443966867},{\"x\":11,\"y\":25.51701484428737},{\"x\":11.21212121212121,\"y\":26.32854963526191},{\"x\":11.42424242424243,\"y\":27.14442084522389},{\"x\":11.63636363636364,\"y\":27.96079050680483},{\"x\":11.84848484848485,\"y\":28.77382065263631},{\"x\":12.06060606060606,\"y\":29.58067272831152},{\"x\":12.27272727272727,\"y\":30.3946689534406},{\"x\":12.48484848484848,\"y\":31.21795305341941},{\"x\":12.6969696969697,\"y\":32.04639782800125},{\"x\":12.90909090909091,\"y\":32.87587607693933},{\"x\":13.12121212121212,\"y\":33.70440747121001},{\"x\":13.33333333333333,\"y\":34.53816804356539},{\"x\":13.54545454545454,\"y\":35.37543505111437},{\"x\":13.75757575757576,\"y\":36.21331593092264},{\"x\":13.96969696969697,\"y\":37.04891812005587},{\"x\":14.18181818181818,\"y\":37.8973531514232},{\"x\":14.39393939393939,\"y\":38.77334058682903},{\"x\":14.60606060606061,\"y\":39.65213187696995},{\"x\":14.81818181818182,\"y\":40.50840205808606},{\"x\":15.03030303030303,\"y\":41.31786690028051},{\"x\":15.24242424242424,\"y\":42.12158704788996},{\"x\":15.45454545454546,\"y\":42.94339797735125},{\"x\":15.66666666666667,\"y\":43.77130046990919},{\"x\":15.87878787878788,\"y\":44.59329530680863},{\"x\":16.09090909090909,\"y\":45.39738326929437},{\"x\":16.3030303030303,\"y\":46.17156513861128},{\"x\":16.51515151515152,\"y\":46.90384169600416},{\"x\":16.72727272727273,\"y\":47.58221372271785},{\"x\":16.93939393939394,\"y\":48.19468199999719},{\"x\":17.15151515151515,\"y\":48.71017434422385},{\"x\":17.36363636363636,\"y\":49.09073232839681},{\"x\":17.57575757575758,\"y\":49.3750399946966},{\"x\":17.78787878787879,\"y\":49.60557423120336},{\"x\":18,\"y\":49.8248119259973},{\"x\":18.21212121212121,\"y\":50.07522996715857},{\"x\":18.42424242424242,\"y\":50.39930524276738},{\"x\":18.63636363636364,\"y\":50.83951464090387},{\"x\":18.84848484848485,\"y\":51.43833504964825},{\"x\":19.06060606060606,\"y\":52.23035518889834},{\"x\":19.27272727272727,\"y\":53.11050800119276},{\"x\":19.48484848484848,\"y\":54.03386748467438},{\"x\":19.6969696969697,\"y\":55.00126762554041},{\"x\":19.90909090909091,\"y\":56.01354240998803},{\"x\":20.12121212121212,\"y\":57.0715258242144},{\"x\":20.33333333333333,\"y\":58.17605185441669},{\"x\":20.54545454545455,\"y\":59.32795448679211},{\"x\":20.75757575757576,\"y\":60.52806770753782},{\"x\":20.96969696969697,\"y\":61.77722550285098},{\"x\":21.18181818181818,\"y\":63.07626185892882},{\"x\":21.39393939393939,\"y\":64.42601076196846},{\"x\":21.60606060606061,\"y\":65.82730619816712},{\"x\":21.81818181818182,\"y\":67.28098215372199},{\"x\":22.03030303030303,\"y\":68.78781933752917},{\"x\":22.24242424242424,\"y\":70.34535859397313},{\"x\":22.45454545454546,\"y\":71.95234166978462},{\"x\":22.66666666666667,\"y\":73.60940397965237},{\"x\":22.87878787878788,\"y\":75.31718093826511},{\"x\":23.09090909090909,\"y\":77.07630796031157},{\"x\":23.3030303030303,\"y\":78.88742046048054},{\"x\":23.51515151515152,\"y\":80.75115385346068},{\"x\":23.72727272727273,\"y\":82.66814355394077},{\"x\":23.93939393939394,\"y\":84.63902497660959},{\"x\":24.15151515151515,\"y\":86.66443353615577},{\"x\":24.36363636363636,\"y\":88.74500464726809},{\"x\":24.57575757575758,\"y\":90.88137372463538},{\"x\":24.78787878787879,\"y\":93.07417618294625},{\"x\":25,\"y\":95.32404743688947}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"markers\":{\"size\":[6,0,0]},\"stroke\":{\"curve\":\"straight\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\",\"mixed_type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/add-shade.html","id":null,"dir":"Reference","previous_headings":"","what":"Add a shaded area to a chart — add-shade","title":"Add a shaded area to a chart — add-shade","text":"add_shade() allow add shaded area specified range, add_shade_weekend() add shadow every week-end.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-shade.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add a shaded area to a chart — add-shade","text":"","code":"add_shade(ax, from, to, color = \"#848484\", opacity = 0.2, label = NULL, ...) add_shade_weekend(ax, color = \"#848484\", opacity = 0.2, label = NULL, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/add-shade.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add a shaded area to a chart — add-shade","text":"ax apexchart() htmlwidget object. Vector position start shadow. Vector position end shadow. color Color shadow. opacity Opacity shadow. label Add label shade, use character see label controls. ... Additional arguments, see https://apexcharts.com/docs/options/annotations/ possible options.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-shade.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add a shaded area to a chart — add-shade","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-shade.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Add a shaded area to a chart — add-shade","text":"add_shade_weekend works variable used x-axis class Date POSIXt.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-shade.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add a shaded area to a chart — add-shade","text":"","code":"library(apexcharter) data(\"consumption\") # specify from and to date apex(consumption, aes(date, value, group = type), \"spline\") %>% add_shade(from = \"2020-01-06\", to = \"2020-01-20\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-06').getTime()\",\"x2\":\"new Date('2020-01-20').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.0.x2\"],\"jsHooks\":[]} # you can add several shadows apex(consumption, aes(date, value, group = type), \"spline\") %>% add_shade(from = \"2020-01-06\", to = \"2020-01-20\") %>% add_shade(from = \"2020-02-04\", to = \"2020-02-10\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-02-04').getTime()\",\"x2\":\"new Date('2020-02-10').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-01-06').getTime()\",\"x2\":\"new Date('2020-01-20').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.0.x2\",\"ax_opts.annotations.xaxis.1.x\",\"ax_opts.annotations.xaxis.1.x2\"],\"jsHooks\":[]} # or use a vector apex(consumption, aes(date, value, group = type), \"spline\") %>% add_shade( from = c(\"2020-01-06\", \"2020-02-04\"), to = c(\"2020-01-20\", \"2020-02-10\") ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-06').getTime()\",\"x2\":\"new Date('2020-01-20').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-02-04').getTime()\",\"x2\":\"new Date('2020-02-10').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.0.x2\",\"ax_opts.annotations.xaxis.1.x\",\"ax_opts.annotations.xaxis.1.x2\"],\"jsHooks\":[]} # Add a label apex(consumption, aes(date, value, group = type), \"spline\") %>% add_shade( from = \"2020-01-06\", to = \"2020-01-20\", label = \"interesting period\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-06').getTime()\",\"x2\":\"new Date('2020-01-20').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2,\"label\":{\"text\":\"interesting period\"}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.0.x2\"],\"jsHooks\":[]} # add label with more options apex(consumption, aes(date, value, group = type), \"spline\") %>% add_shade( from = \"2020-01-06\", to = \"2020-01-20\", color = \"firebrick\", label = label( text = \"something happened\", background = \"firebrick\", color = \"white\", fontWeight = \"bold\", padding = c(3, 5, 3, 5) ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-06').getTime()\",\"x2\":\"new Date('2020-01-20').getTime()\",\"fillColor\":\"firebrick\",\"opacity\":0.2,\"label\":{\"text\":\"something happened\",\"style\":{\"background\":\"firebrick\",\"color\":\"white\",\"fontWeight\":\"bold\",\"padding\":{\"top\":3,\"right\":5,\"bottom\":3,\"left\":5}}}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.0.x2\"],\"jsHooks\":[]} # automatically add shadow on week-ends apex(consumption, aes(date, value, group = type), \"spline\") %>% add_shade_weekend() {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-03 12:00:00').getTime()\",\"x2\":\"new Date('2020-01-05 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-01-10 12:00:00').getTime()\",\"x2\":\"new Date('2020-01-12 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-01-17 12:00:00').getTime()\",\"x2\":\"new Date('2020-01-19 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-01-24 12:00:00').getTime()\",\"x2\":\"new Date('2020-01-26 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-01-31 12:00:00').getTime()\",\"x2\":\"new Date('2020-02-02 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-02-07 12:00:00').getTime()\",\"x2\":\"new Date('2020-02-09 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-02-14 12:00:00').getTime()\",\"x2\":\"new Date('2020-02-16 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-02-21 12:00:00').getTime()\",\"x2\":\"new Date('2020-02-23 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-02-28 12:00:00').getTime()\",\"x2\":\"new Date('2020-03-01 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.0.x2\",\"ax_opts.annotations.xaxis.1.x\",\"ax_opts.annotations.xaxis.1.x2\",\"ax_opts.annotations.xaxis.2.x\",\"ax_opts.annotations.xaxis.2.x2\",\"ax_opts.annotations.xaxis.3.x\",\"ax_opts.annotations.xaxis.3.x2\",\"ax_opts.annotations.xaxis.4.x\",\"ax_opts.annotations.xaxis.4.x2\",\"ax_opts.annotations.xaxis.5.x\",\"ax_opts.annotations.xaxis.5.x2\",\"ax_opts.annotations.xaxis.6.x\",\"ax_opts.annotations.xaxis.6.x2\",\"ax_opts.annotations.xaxis.7.x\",\"ax_opts.annotations.xaxis.7.x2\",\"ax_opts.annotations.xaxis.8.x\",\"ax_opts.annotations.xaxis.8.x2\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/add-vh-lines.html","id":null,"dir":"Reference","previous_headings":"","what":"Add horizontal or vertical line — add-vh-lines","title":"Add horizontal or vertical line — add-vh-lines","text":"Add horizontal vertical line","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-vh-lines.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add horizontal or vertical line — add-vh-lines","text":"","code":"add_hline(ax, value, color = \"#000\", dash = 0, label = NULL, ...) add_vline(ax, value, color = \"#000\", dash = 0, label = NULL, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/add-vh-lines.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add horizontal or vertical line — add-vh-lines","text":"ax apexchart() htmlwidget object. value Vector position line(s). color Color(s) line(s). dash Creates dashes borders SVG path. higher number creates space dashes border. Use 0 plain line. label Add label shade, use character see label controls. ... Additional arguments, see https://apexcharts.com/docs/options/annotations/ possible options.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-vh-lines.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add horizontal or vertical line — add-vh-lines","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-vh-lines.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add horizontal or vertical line — add-vh-lines","text":"","code":"library(apexcharter) # On a column chart unhcr_ts %>% subset(year == 2017 & population_type == \"Asylum-seekers\") %>% apex( aes(continent_origin, n), \"column\" ) %>% add_hline(value = 5e5) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"n\",\"type\":\"bar\",\"data\":[{\"x\":\"Africa\",\"y\":964124},{\"x\":\"Asia\",\"y\":1353541},{\"x\":\"Europe\",\"y\":130065},{\"x\":\"North America\",\"y\":384104},{\"x\":\"Oceania\",\"y\":1315},{\"x\":\"South America\",\"y\":210425}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"front\",\"yaxis\":[{\"y\":500000,\"borderColor\":\"#000\",\"strokeDashArray\":0}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Africa\",\"max\":\"South America\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # On a scatter chart apex( data = cars, aes(speed, dist), \"scatter\" ) %>% add_hline(value = mean(cars$dist)) %>% add_vline(value = mean(cars$speed)) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"annotations\":{\"position\":\"front\",\"yaxis\":[{\"y\":42.98,\"borderColor\":\"#000\",\"strokeDashArray\":0}],\"xaxis\":[{\"x\":15.4,\"borderColor\":\"#000\",\"strokeDashArray\":0}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # With labels apex( data = cars, aes(speed, dist), \"scatter\" ) %>% add_hline( value = mean(cars$dist), label = \"Mean of dist\" ) %>% add_vline( value = mean(cars$speed), label = label( text = \"Mean of speed\", borderColor = \"red\" ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"annotations\":{\"position\":\"front\",\"yaxis\":[{\"y\":42.98,\"borderColor\":\"#000\",\"strokeDashArray\":0,\"label\":{\"text\":\"Mean of dist\"}}],\"xaxis\":[{\"x\":15.4,\"borderColor\":\"#000\",\"strokeDashArray\":0,\"label\":{\"borderColor\":\"red\",\"text\":\"Mean of speed\",\"style\":{\"padding\":{\"top\":2,\"right\":5,\"bottom\":2,\"left\":5}}}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event.html","id":null,"dir":"Reference","previous_headings":"","what":"Add an event to a chart — add_event","title":"Add an event to a chart — add_event","text":"Add vertical line mark special event chart.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add an event to a chart — add_event","text":"","code":"add_event(ax, when, color = \"#E41A1C\", dash = 4, label = NULL, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add an event to a chart — add_event","text":"ax apexchart() htmlwidget object. Vector position place event. color Color line. dash Creates dashes borders SVG path. higher number creates space dashes border. Use 0 plain line. label Add label shade, use character see label controls. ... Additional arguments, see https://apexcharts.com/docs/options/annotations/ possible options.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add an event to a chart — add_event","text":"apexchart() htmlwidget object.","code":""},{"path":[]},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add an event to a chart — add_event","text":"","code":"library(apexcharter) data(\"consumption\") # specify from and to date apex(consumption, aes(date, value, group = type), \"spline\") %>% add_event(when = \"2020-01-11\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-11').getTime()\",\"borderColor\":\"#E41A1C\",\"strokeDashArray\":4}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\"],\"jsHooks\":[]} # several events apex(consumption, aes(date, value, group = type), \"spline\") %>% add_event(when = c(\"2020-01-11\", \"2020-01-29\")) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-11').getTime()\",\"borderColor\":\"#E41A1C\",\"strokeDashArray\":4},{\"x\":\"new Date('2020-01-29').getTime()\",\"borderColor\":\"#E41A1C\",\"strokeDashArray\":4}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.1.x\"],\"jsHooks\":[]} # Add labels on events apex(consumption, aes(date, value, group = type), \"spline\") %>% add_event( when = c(\"2020-01-11\", \"2020-01-29\"), label = label(text = c(\"Am\", \"Ar\")) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-11').getTime()\",\"borderColor\":\"#E41A1C\",\"strokeDashArray\":4,\"label\":{\"text\":\"Am\",\"style\":{\"padding\":{\"top\":2,\"right\":5,\"bottom\":2,\"left\":5}}}},{\"x\":\"new Date('2020-01-29').getTime()\",\"borderColor\":\"#E41A1C\",\"strokeDashArray\":4,\"label\":{\"text\":\"Ar\",\"style\":{\"padding\":{\"top\":2,\"right\":5,\"bottom\":2,\"left\":5}}}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.1.x\"],\"jsHooks\":[]} # can be combined with shade apex(consumption, aes(date, value, group = type), \"spline\") %>% add_shade(from = \"2020-01-06\", to = \"2020-01-20\")%>% add_event(when = c(\"2020-01-11\", \"2020-01-29\")) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-11').getTime()\",\"borderColor\":\"#E41A1C\",\"strokeDashArray\":4},{\"x\":\"new Date('2020-01-29').getTime()\",\"borderColor\":\"#E41A1C\",\"strokeDashArray\":4},{\"x\":\"new Date('2020-01-06').getTime()\",\"x2\":\"new Date('2020-01-20').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.1.x\",\"ax_opts.annotations.xaxis.2.x\",\"ax_opts.annotations.xaxis.2.x2\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event_marker.html","id":null,"dir":"Reference","previous_headings":"","what":"Add an event marker to a chart — add_event_marker","title":"Add an event marker to a chart — add_event_marker","text":"Add point label based datetime.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event_marker.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add an event marker to a chart — add_event_marker","text":"","code":"add_event_marker( ax, when, y, size = 5, color = \"#000\", fill = \"#FFF\", width = 2, shape = \"circle\", radius = 2, label = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event_marker.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add an event marker to a chart — add_event_marker","text":"ax apexchart() htmlwidget object. Vector position place event. y Coordinate(s) y-axis. size Size marker. color Stroke Color marker point. fill Fill Color marker point. width Stroke Size marker point. shape Shape marker: \"circle\" \"square\". radius Radius marker (applies square shape). label Add label shade, use character see label controls. ... Additional arguments, see https://apexcharts.com/docs/options/annotations/ possible options.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event_marker.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add an event marker to a chart — add_event_marker","text":"apexchart() htmlwidget object.","code":""},{"path":[]},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event_marker.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add an event marker to a chart — add_event_marker","text":"","code":"library(apexcharter) data(\"consumption\") # add a marker apex(consumption, aes(date, value, group = type), \"spline\") %>% add_event_marker(when = \"2020-01-22\", y = 1805) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"front\",\"points\":[{\"x\":\"new Date('2020-01-22').getTime()\",\"y\":1805,\"marker\":{\"size\":5,\"fillColor\":\"#FFF\",\"strokeColor\":\"#000\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.points.0.x\"],\"jsHooks\":[]} # with a label apex(consumption, aes(date, value, group = type), \"spline\") %>% add_event_marker(when = \"2020-01-22\", y = 1805, label = \"Consumption peak\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"front\",\"points\":[{\"x\":\"new Date('2020-01-22').getTime()\",\"y\":1805,\"marker\":{\"size\":5,\"fillColor\":\"#FFF\",\"strokeColor\":\"#000\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2},\"label\":{\"text\":\"Consumption peak\"}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.points.0.x\"],\"jsHooks\":[]} # add several markers apex(consumption, aes(date, value, group = type), \"spline\") %>% add_event_marker( when = c(\"2020-01-02\", \"2020-01-06\", \"2020-01-13\", \"2020-01-22\", \"2020-01-28\", \"2020-02-06\", \"2020-02-13\", \"2020-02-19\", \"2020-02-27\"), y = c(1545, 1659, 1614, 1805, 1637, 1636, 1597, 1547, 1631), size = 10, color = \"firebrick\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"front\",\"points\":[{\"x\":\"new Date('2020-01-02').getTime()\",\"y\":1545,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-01-06').getTime()\",\"y\":1659,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-01-13').getTime()\",\"y\":1614,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-01-22').getTime()\",\"y\":1805,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-01-28').getTime()\",\"y\":1637,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-02-06').getTime()\",\"y\":1636,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-02-13').getTime()\",\"y\":1597,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-02-19').getTime()\",\"y\":1547,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-02-27').getTime()\",\"y\":1631,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.points.0.x\",\"ax_opts.annotations.points.1.x\",\"ax_opts.annotations.points.2.x\",\"ax_opts.annotations.points.3.x\",\"ax_opts.annotations.points.4.x\",\"ax_opts.annotations.points.5.x\",\"ax_opts.annotations.points.6.x\",\"ax_opts.annotations.points.7.x\",\"ax_opts.annotations.points.8.x\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/add_point.html","id":null,"dir":"Reference","previous_headings":"","what":"Add an annotation point — add_point","title":"Add an annotation point — add_point","text":"Add annotation point","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add_point.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add an annotation point — add_point","text":"","code":"add_point( ax, x, y, size = 5, color = \"#000\", fill = \"#FFF\", width = 2, shape = \"circle\", radius = 2, label = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/add_point.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add an annotation point — add_point","text":"ax apexchart() htmlwidget object. x Coordinate(s) x-axis. y Coordinate(s) y-axis. size Size marker. color Stroke Color marker point. fill Fill Color marker point. width Stroke Size marker point. shape Shape marker: \"circle\" \"square\". radius Radius marker (applies square shape). label Add label shade, use character see label controls. ... Additional arguments, see https://apexcharts.com/docs/options/annotations/ possible options.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add_point.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add an annotation point — add_point","text":"apexchart() htmlwidget object.","code":""},{"path":[]},{"path":"https://dreamrs.github.io/apexcharter/reference/add_point.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add an annotation point — add_point","text":"","code":"library(apexcharter) # On scatter chart apex( data = iris, aes(Sepal.Length, Sepal.Width), \"scatter\" ) %>% add_point( x = mean(iris$Sepal.Length), y = mean(iris$Sepal.Width) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"Sepal.Width\",\"type\":\"scatter\",\"data\":[{\"x\":5.1,\"y\":3.5},{\"x\":4.9,\"y\":3},{\"x\":4.7,\"y\":3.2},{\"x\":4.6,\"y\":3.1},{\"x\":5,\"y\":3.6},{\"x\":5.4,\"y\":3.9},{\"x\":4.6,\"y\":3.4},{\"x\":5,\"y\":3.4},{\"x\":4.4,\"y\":2.9},{\"x\":4.9,\"y\":3.1},{\"x\":5.4,\"y\":3.7},{\"x\":4.8,\"y\":3.4},{\"x\":4.8,\"y\":3},{\"x\":4.3,\"y\":3},{\"x\":5.8,\"y\":4},{\"x\":5.7,\"y\":4.4},{\"x\":5.4,\"y\":3.9},{\"x\":5.1,\"y\":3.5},{\"x\":5.7,\"y\":3.8},{\"x\":5.1,\"y\":3.8},{\"x\":5.4,\"y\":3.4},{\"x\":5.1,\"y\":3.7},{\"x\":4.6,\"y\":3.6},{\"x\":5.1,\"y\":3.3},{\"x\":4.8,\"y\":3.4},{\"x\":5,\"y\":3},{\"x\":5,\"y\":3.4},{\"x\":5.2,\"y\":3.5},{\"x\":5.2,\"y\":3.4},{\"x\":4.7,\"y\":3.2},{\"x\":4.8,\"y\":3.1},{\"x\":5.4,\"y\":3.4},{\"x\":5.2,\"y\":4.1},{\"x\":5.5,\"y\":4.2},{\"x\":4.9,\"y\":3.1},{\"x\":5,\"y\":3.2},{\"x\":5.5,\"y\":3.5},{\"x\":4.9,\"y\":3.6},{\"x\":4.4,\"y\":3},{\"x\":5.1,\"y\":3.4},{\"x\":5,\"y\":3.5},{\"x\":4.5,\"y\":2.3},{\"x\":4.4,\"y\":3.2},{\"x\":5,\"y\":3.5},{\"x\":5.1,\"y\":3.8},{\"x\":4.8,\"y\":3},{\"x\":5.1,\"y\":3.8},{\"x\":4.6,\"y\":3.2},{\"x\":5.3,\"y\":3.7},{\"x\":5,\"y\":3.3},{\"x\":7,\"y\":3.2},{\"x\":6.4,\"y\":3.2},{\"x\":6.9,\"y\":3.1},{\"x\":5.5,\"y\":2.3},{\"x\":6.5,\"y\":2.8},{\"x\":5.7,\"y\":2.8},{\"x\":6.3,\"y\":3.3},{\"x\":4.9,\"y\":2.4},{\"x\":6.6,\"y\":2.9},{\"x\":5.2,\"y\":2.7},{\"x\":5,\"y\":2},{\"x\":5.9,\"y\":3},{\"x\":6,\"y\":2.2},{\"x\":6.1,\"y\":2.9},{\"x\":5.6,\"y\":2.9},{\"x\":6.7,\"y\":3.1},{\"x\":5.6,\"y\":3},{\"x\":5.8,\"y\":2.7},{\"x\":6.2,\"y\":2.2},{\"x\":5.6,\"y\":2.5},{\"x\":5.9,\"y\":3.2},{\"x\":6.1,\"y\":2.8},{\"x\":6.3,\"y\":2.5},{\"x\":6.1,\"y\":2.8},{\"x\":6.4,\"y\":2.9},{\"x\":6.6,\"y\":3},{\"x\":6.8,\"y\":2.8},{\"x\":6.7,\"y\":3},{\"x\":6,\"y\":2.9},{\"x\":5.7,\"y\":2.6},{\"x\":5.5,\"y\":2.4},{\"x\":5.5,\"y\":2.4},{\"x\":5.8,\"y\":2.7},{\"x\":6,\"y\":2.7},{\"x\":5.4,\"y\":3},{\"x\":6,\"y\":3.4},{\"x\":6.7,\"y\":3.1},{\"x\":6.3,\"y\":2.3},{\"x\":5.6,\"y\":3},{\"x\":5.5,\"y\":2.5},{\"x\":5.5,\"y\":2.6},{\"x\":6.1,\"y\":3},{\"x\":5.8,\"y\":2.6},{\"x\":5,\"y\":2.3},{\"x\":5.6,\"y\":2.7},{\"x\":5.7,\"y\":3},{\"x\":5.7,\"y\":2.9},{\"x\":6.2,\"y\":2.9},{\"x\":5.1,\"y\":2.5},{\"x\":5.7,\"y\":2.8},{\"x\":6.3,\"y\":3.3},{\"x\":5.8,\"y\":2.7},{\"x\":7.1,\"y\":3},{\"x\":6.3,\"y\":2.9},{\"x\":6.5,\"y\":3},{\"x\":7.6,\"y\":3},{\"x\":4.9,\"y\":2.5},{\"x\":7.3,\"y\":2.9},{\"x\":6.7,\"y\":2.5},{\"x\":7.2,\"y\":3.6},{\"x\":6.5,\"y\":3.2},{\"x\":6.4,\"y\":2.7},{\"x\":6.8,\"y\":3},{\"x\":5.7,\"y\":2.5},{\"x\":5.8,\"y\":2.8},{\"x\":6.4,\"y\":3.2},{\"x\":6.5,\"y\":3},{\"x\":7.7,\"y\":3.8},{\"x\":7.7,\"y\":2.6},{\"x\":6,\"y\":2.2},{\"x\":6.9,\"y\":3.2},{\"x\":5.6,\"y\":2.8},{\"x\":7.7,\"y\":2.8},{\"x\":6.3,\"y\":2.7},{\"x\":6.7,\"y\":3.3},{\"x\":7.2,\"y\":3.2},{\"x\":6.2,\"y\":2.8},{\"x\":6.1,\"y\":3},{\"x\":6.4,\"y\":2.8},{\"x\":7.2,\"y\":3},{\"x\":7.4,\"y\":2.8},{\"x\":7.9,\"y\":3.8},{\"x\":6.4,\"y\":2.8},{\"x\":6.3,\"y\":2.8},{\"x\":6.1,\"y\":2.6},{\"x\":7.7,\"y\":3},{\"x\":6.3,\"y\":3.4},{\"x\":6.4,\"y\":3.1},{\"x\":6,\"y\":3},{\"x\":6.9,\"y\":3.1},{\"x\":6.7,\"y\":3.1},{\"x\":6.9,\"y\":3.1},{\"x\":5.8,\"y\":2.7},{\"x\":6.8,\"y\":3.2},{\"x\":6.7,\"y\":3.3},{\"x\":6.7,\"y\":3},{\"x\":6.3,\"y\":2.5},{\"x\":6.5,\"y\":3},{\"x\":6.2,\"y\":3.4},{\"x\":5.9,\"y\":3}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":4,\"max\":8,\"tickAmount\":4,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":2,\"max\":4.5,\"tickAmount\":5,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"annotations\":{\"position\":\"front\",\"points\":[{\"x\":5.843333333333334,\"y\":3.057333333333333,\"marker\":{\"size\":5,\"fillColor\":\"#FFF\",\"strokeColor\":\"#000\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4.3,\"max\":7.9},\"type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # Some options apex( data = iris, aes(Sepal.Length, Sepal.Width), \"scatter\" ) %>% add_point( x = mean(iris$Sepal.Length), y = mean(iris$Sepal.Width), fill = \"firebrick\", color = \"firebrick\", size = 8, label = label(text = \"Mean\", offsetY = 0) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"Sepal.Width\",\"type\":\"scatter\",\"data\":[{\"x\":5.1,\"y\":3.5},{\"x\":4.9,\"y\":3},{\"x\":4.7,\"y\":3.2},{\"x\":4.6,\"y\":3.1},{\"x\":5,\"y\":3.6},{\"x\":5.4,\"y\":3.9},{\"x\":4.6,\"y\":3.4},{\"x\":5,\"y\":3.4},{\"x\":4.4,\"y\":2.9},{\"x\":4.9,\"y\":3.1},{\"x\":5.4,\"y\":3.7},{\"x\":4.8,\"y\":3.4},{\"x\":4.8,\"y\":3},{\"x\":4.3,\"y\":3},{\"x\":5.8,\"y\":4},{\"x\":5.7,\"y\":4.4},{\"x\":5.4,\"y\":3.9},{\"x\":5.1,\"y\":3.5},{\"x\":5.7,\"y\":3.8},{\"x\":5.1,\"y\":3.8},{\"x\":5.4,\"y\":3.4},{\"x\":5.1,\"y\":3.7},{\"x\":4.6,\"y\":3.6},{\"x\":5.1,\"y\":3.3},{\"x\":4.8,\"y\":3.4},{\"x\":5,\"y\":3},{\"x\":5,\"y\":3.4},{\"x\":5.2,\"y\":3.5},{\"x\":5.2,\"y\":3.4},{\"x\":4.7,\"y\":3.2},{\"x\":4.8,\"y\":3.1},{\"x\":5.4,\"y\":3.4},{\"x\":5.2,\"y\":4.1},{\"x\":5.5,\"y\":4.2},{\"x\":4.9,\"y\":3.1},{\"x\":5,\"y\":3.2},{\"x\":5.5,\"y\":3.5},{\"x\":4.9,\"y\":3.6},{\"x\":4.4,\"y\":3},{\"x\":5.1,\"y\":3.4},{\"x\":5,\"y\":3.5},{\"x\":4.5,\"y\":2.3},{\"x\":4.4,\"y\":3.2},{\"x\":5,\"y\":3.5},{\"x\":5.1,\"y\":3.8},{\"x\":4.8,\"y\":3},{\"x\":5.1,\"y\":3.8},{\"x\":4.6,\"y\":3.2},{\"x\":5.3,\"y\":3.7},{\"x\":5,\"y\":3.3},{\"x\":7,\"y\":3.2},{\"x\":6.4,\"y\":3.2},{\"x\":6.9,\"y\":3.1},{\"x\":5.5,\"y\":2.3},{\"x\":6.5,\"y\":2.8},{\"x\":5.7,\"y\":2.8},{\"x\":6.3,\"y\":3.3},{\"x\":4.9,\"y\":2.4},{\"x\":6.6,\"y\":2.9},{\"x\":5.2,\"y\":2.7},{\"x\":5,\"y\":2},{\"x\":5.9,\"y\":3},{\"x\":6,\"y\":2.2},{\"x\":6.1,\"y\":2.9},{\"x\":5.6,\"y\":2.9},{\"x\":6.7,\"y\":3.1},{\"x\":5.6,\"y\":3},{\"x\":5.8,\"y\":2.7},{\"x\":6.2,\"y\":2.2},{\"x\":5.6,\"y\":2.5},{\"x\":5.9,\"y\":3.2},{\"x\":6.1,\"y\":2.8},{\"x\":6.3,\"y\":2.5},{\"x\":6.1,\"y\":2.8},{\"x\":6.4,\"y\":2.9},{\"x\":6.6,\"y\":3},{\"x\":6.8,\"y\":2.8},{\"x\":6.7,\"y\":3},{\"x\":6,\"y\":2.9},{\"x\":5.7,\"y\":2.6},{\"x\":5.5,\"y\":2.4},{\"x\":5.5,\"y\":2.4},{\"x\":5.8,\"y\":2.7},{\"x\":6,\"y\":2.7},{\"x\":5.4,\"y\":3},{\"x\":6,\"y\":3.4},{\"x\":6.7,\"y\":3.1},{\"x\":6.3,\"y\":2.3},{\"x\":5.6,\"y\":3},{\"x\":5.5,\"y\":2.5},{\"x\":5.5,\"y\":2.6},{\"x\":6.1,\"y\":3},{\"x\":5.8,\"y\":2.6},{\"x\":5,\"y\":2.3},{\"x\":5.6,\"y\":2.7},{\"x\":5.7,\"y\":3},{\"x\":5.7,\"y\":2.9},{\"x\":6.2,\"y\":2.9},{\"x\":5.1,\"y\":2.5},{\"x\":5.7,\"y\":2.8},{\"x\":6.3,\"y\":3.3},{\"x\":5.8,\"y\":2.7},{\"x\":7.1,\"y\":3},{\"x\":6.3,\"y\":2.9},{\"x\":6.5,\"y\":3},{\"x\":7.6,\"y\":3},{\"x\":4.9,\"y\":2.5},{\"x\":7.3,\"y\":2.9},{\"x\":6.7,\"y\":2.5},{\"x\":7.2,\"y\":3.6},{\"x\":6.5,\"y\":3.2},{\"x\":6.4,\"y\":2.7},{\"x\":6.8,\"y\":3},{\"x\":5.7,\"y\":2.5},{\"x\":5.8,\"y\":2.8},{\"x\":6.4,\"y\":3.2},{\"x\":6.5,\"y\":3},{\"x\":7.7,\"y\":3.8},{\"x\":7.7,\"y\":2.6},{\"x\":6,\"y\":2.2},{\"x\":6.9,\"y\":3.2},{\"x\":5.6,\"y\":2.8},{\"x\":7.7,\"y\":2.8},{\"x\":6.3,\"y\":2.7},{\"x\":6.7,\"y\":3.3},{\"x\":7.2,\"y\":3.2},{\"x\":6.2,\"y\":2.8},{\"x\":6.1,\"y\":3},{\"x\":6.4,\"y\":2.8},{\"x\":7.2,\"y\":3},{\"x\":7.4,\"y\":2.8},{\"x\":7.9,\"y\":3.8},{\"x\":6.4,\"y\":2.8},{\"x\":6.3,\"y\":2.8},{\"x\":6.1,\"y\":2.6},{\"x\":7.7,\"y\":3},{\"x\":6.3,\"y\":3.4},{\"x\":6.4,\"y\":3.1},{\"x\":6,\"y\":3},{\"x\":6.9,\"y\":3.1},{\"x\":6.7,\"y\":3.1},{\"x\":6.9,\"y\":3.1},{\"x\":5.8,\"y\":2.7},{\"x\":6.8,\"y\":3.2},{\"x\":6.7,\"y\":3.3},{\"x\":6.7,\"y\":3},{\"x\":6.3,\"y\":2.5},{\"x\":6.5,\"y\":3},{\"x\":6.2,\"y\":3.4},{\"x\":5.9,\"y\":3}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":4,\"max\":8,\"tickAmount\":4,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":2,\"max\":4.5,\"tickAmount\":5,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"annotations\":{\"position\":\"front\",\"points\":[{\"x\":5.843333333333334,\"y\":3.057333333333333,\"marker\":{\"size\":8,\"fillColor\":\"firebrick\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2},\"label\":{\"text\":\"Mean\",\"offsetY\":0,\"style\":{\"padding\":{\"top\":2,\"right\":5,\"bottom\":2,\"left\":5}}}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4.3,\"max\":7.9},\"type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # Several points clusters <- kmeans(iris[, 1:2], 3) apex( data = iris, aes(Sepal.Length, Sepal.Width), \"scatter\" ) %>% add_point( x = clusters$centers[, 1], y = clusters$centers[, 2] ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"Sepal.Width\",\"type\":\"scatter\",\"data\":[{\"x\":5.1,\"y\":3.5},{\"x\":4.9,\"y\":3},{\"x\":4.7,\"y\":3.2},{\"x\":4.6,\"y\":3.1},{\"x\":5,\"y\":3.6},{\"x\":5.4,\"y\":3.9},{\"x\":4.6,\"y\":3.4},{\"x\":5,\"y\":3.4},{\"x\":4.4,\"y\":2.9},{\"x\":4.9,\"y\":3.1},{\"x\":5.4,\"y\":3.7},{\"x\":4.8,\"y\":3.4},{\"x\":4.8,\"y\":3},{\"x\":4.3,\"y\":3},{\"x\":5.8,\"y\":4},{\"x\":5.7,\"y\":4.4},{\"x\":5.4,\"y\":3.9},{\"x\":5.1,\"y\":3.5},{\"x\":5.7,\"y\":3.8},{\"x\":5.1,\"y\":3.8},{\"x\":5.4,\"y\":3.4},{\"x\":5.1,\"y\":3.7},{\"x\":4.6,\"y\":3.6},{\"x\":5.1,\"y\":3.3},{\"x\":4.8,\"y\":3.4},{\"x\":5,\"y\":3},{\"x\":5,\"y\":3.4},{\"x\":5.2,\"y\":3.5},{\"x\":5.2,\"y\":3.4},{\"x\":4.7,\"y\":3.2},{\"x\":4.8,\"y\":3.1},{\"x\":5.4,\"y\":3.4},{\"x\":5.2,\"y\":4.1},{\"x\":5.5,\"y\":4.2},{\"x\":4.9,\"y\":3.1},{\"x\":5,\"y\":3.2},{\"x\":5.5,\"y\":3.5},{\"x\":4.9,\"y\":3.6},{\"x\":4.4,\"y\":3},{\"x\":5.1,\"y\":3.4},{\"x\":5,\"y\":3.5},{\"x\":4.5,\"y\":2.3},{\"x\":4.4,\"y\":3.2},{\"x\":5,\"y\":3.5},{\"x\":5.1,\"y\":3.8},{\"x\":4.8,\"y\":3},{\"x\":5.1,\"y\":3.8},{\"x\":4.6,\"y\":3.2},{\"x\":5.3,\"y\":3.7},{\"x\":5,\"y\":3.3},{\"x\":7,\"y\":3.2},{\"x\":6.4,\"y\":3.2},{\"x\":6.9,\"y\":3.1},{\"x\":5.5,\"y\":2.3},{\"x\":6.5,\"y\":2.8},{\"x\":5.7,\"y\":2.8},{\"x\":6.3,\"y\":3.3},{\"x\":4.9,\"y\":2.4},{\"x\":6.6,\"y\":2.9},{\"x\":5.2,\"y\":2.7},{\"x\":5,\"y\":2},{\"x\":5.9,\"y\":3},{\"x\":6,\"y\":2.2},{\"x\":6.1,\"y\":2.9},{\"x\":5.6,\"y\":2.9},{\"x\":6.7,\"y\":3.1},{\"x\":5.6,\"y\":3},{\"x\":5.8,\"y\":2.7},{\"x\":6.2,\"y\":2.2},{\"x\":5.6,\"y\":2.5},{\"x\":5.9,\"y\":3.2},{\"x\":6.1,\"y\":2.8},{\"x\":6.3,\"y\":2.5},{\"x\":6.1,\"y\":2.8},{\"x\":6.4,\"y\":2.9},{\"x\":6.6,\"y\":3},{\"x\":6.8,\"y\":2.8},{\"x\":6.7,\"y\":3},{\"x\":6,\"y\":2.9},{\"x\":5.7,\"y\":2.6},{\"x\":5.5,\"y\":2.4},{\"x\":5.5,\"y\":2.4},{\"x\":5.8,\"y\":2.7},{\"x\":6,\"y\":2.7},{\"x\":5.4,\"y\":3},{\"x\":6,\"y\":3.4},{\"x\":6.7,\"y\":3.1},{\"x\":6.3,\"y\":2.3},{\"x\":5.6,\"y\":3},{\"x\":5.5,\"y\":2.5},{\"x\":5.5,\"y\":2.6},{\"x\":6.1,\"y\":3},{\"x\":5.8,\"y\":2.6},{\"x\":5,\"y\":2.3},{\"x\":5.6,\"y\":2.7},{\"x\":5.7,\"y\":3},{\"x\":5.7,\"y\":2.9},{\"x\":6.2,\"y\":2.9},{\"x\":5.1,\"y\":2.5},{\"x\":5.7,\"y\":2.8},{\"x\":6.3,\"y\":3.3},{\"x\":5.8,\"y\":2.7},{\"x\":7.1,\"y\":3},{\"x\":6.3,\"y\":2.9},{\"x\":6.5,\"y\":3},{\"x\":7.6,\"y\":3},{\"x\":4.9,\"y\":2.5},{\"x\":7.3,\"y\":2.9},{\"x\":6.7,\"y\":2.5},{\"x\":7.2,\"y\":3.6},{\"x\":6.5,\"y\":3.2},{\"x\":6.4,\"y\":2.7},{\"x\":6.8,\"y\":3},{\"x\":5.7,\"y\":2.5},{\"x\":5.8,\"y\":2.8},{\"x\":6.4,\"y\":3.2},{\"x\":6.5,\"y\":3},{\"x\":7.7,\"y\":3.8},{\"x\":7.7,\"y\":2.6},{\"x\":6,\"y\":2.2},{\"x\":6.9,\"y\":3.2},{\"x\":5.6,\"y\":2.8},{\"x\":7.7,\"y\":2.8},{\"x\":6.3,\"y\":2.7},{\"x\":6.7,\"y\":3.3},{\"x\":7.2,\"y\":3.2},{\"x\":6.2,\"y\":2.8},{\"x\":6.1,\"y\":3},{\"x\":6.4,\"y\":2.8},{\"x\":7.2,\"y\":3},{\"x\":7.4,\"y\":2.8},{\"x\":7.9,\"y\":3.8},{\"x\":6.4,\"y\":2.8},{\"x\":6.3,\"y\":2.8},{\"x\":6.1,\"y\":2.6},{\"x\":7.7,\"y\":3},{\"x\":6.3,\"y\":3.4},{\"x\":6.4,\"y\":3.1},{\"x\":6,\"y\":3},{\"x\":6.9,\"y\":3.1},{\"x\":6.7,\"y\":3.1},{\"x\":6.9,\"y\":3.1},{\"x\":5.8,\"y\":2.7},{\"x\":6.8,\"y\":3.2},{\"x\":6.7,\"y\":3.3},{\"x\":6.7,\"y\":3},{\"x\":6.3,\"y\":2.5},{\"x\":6.5,\"y\":3},{\"x\":6.2,\"y\":3.4},{\"x\":5.9,\"y\":3}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":4,\"max\":8,\"tickAmount\":4,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":2,\"max\":4.5,\"tickAmount\":5,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"annotations\":{\"position\":\"front\",\"points\":[{\"x\":5.773584905660377,\"y\":2.692452830188679,\"marker\":{\"size\":5,\"fillColor\":\"#FFF\",\"strokeColor\":\"#000\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":5.005999999999999,\"y\":3.428000000000001,\"marker\":{\"size\":5,\"fillColor\":\"#FFF\",\"strokeColor\":\"#000\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":6.812765957446806,\"y\":3.074468085106382,\"marker\":{\"size\":5,\"fillColor\":\"#FFF\",\"strokeColor\":\"#000\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4.3,\"max\":7.9},\"type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/apex-facets.html","id":null,"dir":"Reference","previous_headings":"","what":"Facets for ApexCharts — apex-facets","title":"Facets for ApexCharts — apex-facets","text":"Create matrix charts row column faceting variable (ax_facet_grid), specified number row column faceting variable(s) (ax_facet_wrap).","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex-facets.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Facets for ApexCharts — apex-facets","text":"","code":"ax_facet_wrap( ax, facets, nrow = NULL, ncol = NULL, scales = c(\"fixed\", \"free\", \"free_y\", \"free_x\"), labeller = label_value, chart_height = \"300px\", grid_width = \"100%\" ) ax_facet_grid( ax, rows = NULL, cols = NULL, scales = c(\"fixed\", \"free\", \"free_y\", \"free_x\"), labeller = label_value, chart_height = \"300px\", grid_width = \"100%\" )"},{"path":"https://dreamrs.github.io/apexcharter/reference/apex-facets.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Facets for ApexCharts — apex-facets","text":"ax apexchart() htmlwidget object. facets Variable(s) use facetting, wrapped vars(...). nrow, ncol Number row column output matrix. scales scales fixed (\"fixed\", default), free (\"free\"), free one dimension (\"free_x\", \"free_y\")? labeller function one argument containing facet value faceting variable. chart_height Individual chart height, ignored height defined apex() apexcharter(). grid_width Total width grid, regardless number column. rows, cols set variables expressions quoted vars() defining faceting groups rows columns dimension.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex-facets.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Facets for ApexCharts — apex-facets","text":"apexchart() htmlwidget object additionnal class \"apex_facet\".","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex-facets.html","id":"warning","dir":"Reference","previous_headings":"","what":"Warning","title":"Facets for ApexCharts — apex-facets","text":"properly render Shiny applications, use apexfacetOutput() (UI) renderApexfacet() (Server).","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex-facets.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Facets for ApexCharts — apex-facets","text":"","code":"### Wrap -------- if (interactive()) { library(apexcharter) # Scatter ---- data(\"mpg\", package = \"ggplot2\") # Create facets apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_wrap(vars(drv)) # Change number of columns apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_wrap(vars(drv), ncol = 2) # Free axis apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_wrap(vars(drv), ncol = 2, scales = \"free\") # labels apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_wrap( vars(drv), ncol = 2, labeller = function(x) { switch( x, \"f\" = \"front-wheel drive\", \"r\" = \"rear wheel drive\", \"4\" = \"4wd\" ) } ) # Title and subtitle are treated as global apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_labs( title = \"Facet wrap example\", subtitle = \"mpg data from ggplot2\" ) %>% ax_facet_wrap(vars(drv), ncol = 2) # Multiple variables apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_wrap(vars(year, drv)) apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_wrap(vars(year, drv), ncol = 2, nrow = 3) apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_chart(toolbar = list(show = FALSE)) %>% ax_facet_wrap( vars(year, drv), labeller = function(x) { paste(x, collapse = \" / \") } ) # Lines ---- data(\"unhcr_ts\") refugees <- unhcr_ts %>% subset(population_type == \"Refugees (incl. refugee-like situations)\") %>% transform(date = as.Date(paste0(year, \"-01-01\"))) apex(refugees, aes(date, n), type = \"line\") %>% ax_yaxis(tickAmount = 5) %>% ax_facet_wrap(vars(continent_origin)) # Free y-axis and synchronize apex(refugees, aes(date, n), type = \"line\", synchronize = \"my-id\") %>% ax_yaxis(tickAmount = 5) %>% ax_xaxis(tooltip = list(enabled = FALSE)) %>% ax_tooltip(x = list(format = \"yyyy\")) %>% ax_facet_wrap(vars(continent_origin), scales = \"free_y\") # Bars ---- data(\"unhcr_ts\") refugees <- unhcr_ts %>% subset(year == 2017) apex(refugees, aes(continent_origin, n), type = \"column\") %>% ax_yaxis( labels = list( formatter = format_num(\"~s\") ), tickAmount = 5 ) %>% ax_facet_wrap(vars(population_type), ncol = 2) } ### Grid -------- if (interactive()) { library(apexcharter) # Scatter ---- data(\"mpg\", package = \"ggplot2\") # Only rows apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_grid(rows = vars(drv), chart_height = \"200px\") # Only cols apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_grid(cols = vars(year)) # Rows and Cols apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_grid(rows = vars(drv), cols = vars(year)) apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_chart(toolbar = list(show = FALSE)) %>% ax_facet_grid(vars(drv), vars(cyl)) # Labels apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_grid( vars(drv), labeller = function(x) { switch( x, \"f\" = \"front-wheel drive\", \"r\" = \"rear wheel drive\", \"4\" = \"4wd\" ) } ) # Title and subtitle are treated as global apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_labs( title = \"Facet grid example\", subtitle = \"mpg data from ggplot2\" ) %>% ax_facet_grid(rows = vars(drv), cols = vars(year)) }"},{"path":"https://dreamrs.github.io/apexcharter/reference/apex.html","id":null,"dir":"Reference","previous_headings":"","what":"Quick ApexCharts — apex","title":"Quick ApexCharts — apex","text":"Initialize chart three main parameters : data, mapping type chart.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Quick ApexCharts — apex","text":"","code":"apex( data, mapping, type = \"column\", ..., auto_update = TRUE, synchronize = NULL, serie_name = NULL, width = NULL, height = NULL, elementId = NULL )"},{"path":"https://dreamrs.github.io/apexcharter/reference/apex.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Quick ApexCharts — apex","text":"data Default dataset use chart. already data.frame, coerced .data.frame. mapping Default list aesthetic mappings use chart type Specify chart type. Available options: \"column\", \"bar\", \"line\", \"step\", \"spline\", \"area\", \"area-step\", \"area-spline\", \"pie\", \"donut\", \"radialBar\", \"radar\", \"scatter\", \"heatmap\", \"treemap\", \"timeline\", \"dumbbell\" \"slope\". ... arguments passed methods. currently used. auto_update Shiny application, update existing chart rather generating new one. Can TRUE/FALSE use config_update() control. synchronize Give common id charts synchronize (tooltip zoom). serie_name Name serie displayed tooltip, used single serie. width, height numeric input pixels. elementId Use explicit element ID widget.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Quick ApexCharts — apex","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Quick ApexCharts — apex","text":"","code":"library(ggplot2) library(apexcharter) # make a barchart with a frequency table data(\"mpg\", package = \"ggplot2\") apex(mpg, aes(manufacturer), type = \"bar\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":true,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":false}},\"xaxis\":{\"lines\":{\"show\":true}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"bar\"},\"evals\":[],\"jsHooks\":[]} # timeseries data(\"economics\", package = \"ggplot2\") apex( data = economics, mapping = aes(x = date, y = uempmed), type = \"line\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,4.5],[-76377600000,4.7],[-73699200000,4.6],[-71107200000,4.9],[-68428800000,4.7],[-65836800000,4.8],[-63158400000,5.1],[-60480000000,4.5],[-57974400000,4.1],[-55296000000,4.6],[-52704000000,4.4],[-50025600000,4.4],[-47433600000,4.5],[-44755200000,4.2],[-42076800000,4.6],[-39484800000,4.8],[-36806400000,4.4],[-34214400000,4.4],[-31536000000,4.4],[-28857600000,4.9],[-26438400000,4],[-23760000000,4],[-21168000000,4.2],[-18489600000,4.4],[-15897600000,4.4],[-13219200000,4.4],[-10540800000,4.7],[-7948800000,4.5],[-5270400000,4.8],[-2678400000,4.6],[0,4.6],[2678400000,4.5],[5097600000,4.6],[7776000000,4.1],[10368000000,4.7],[13046400000,4.9],[15638400000,5.1],[18316800000,5.4],[20995200000,5.2],[23587200000,5.2],[26265600000,5.6],[28857600000,5.9],[31536000000,6.2],[34214400000,6.3],[36633600000,6.4],[39312000000,6.5],[41904000000,6.7],[44582400000,5.7],[47174400000,6.2],[49852800000,6.4],[52531200000,5.8],[55123200000,6.5],[57801600000,6.4],[60393600000,6.2],[63072000000,6.2],[65750400000,6.6],[68256000000,6.6],[70934400000,6.7],[73526400000,6.6],[76204800000,5.4],[78796800000,6.1],[81475200000,6],[84153600000,5.6],[86745600000,5.7],[89424000000,5.7],[92016000000,6.1],[94694400000,5.7],[97372800000,5.2],[99792000000,5.5],[102470400000,5],[105062400000,4.9],[107740800000,5],[110332800000,5.2],[113011200000,4.9],[115689600000,5.4],[118281600000,5.5],[120960000000,5.1],[123552000000,4.7],[126230400000,5],[128908800000,5.1],[131328000000,4.8],[134006400000,5],[136598400000,4.6],[139276800000,5.3],[141868800000,5.7],[144547200000,5],[147225600000,5.3],[149817600000,5.5],[152496000000,5.2],[155088000000,5.7],[157766400000,6.3],[160444800000,7.1],[162864000000,7.2],[165542400000,8.699999999999999],[168134400000,9.4],[170812800000,8.800000000000001],[173404800000,8.6],[176083200000,9.199999999999999],[178761600000,9.199999999999999],[181353600000,8.6],[184032000000,9.5],[186624000000,9],[189302400000,9],[191980800000,8.199999999999999],[194486400000,8.699999999999999],[197164800000,8.199999999999999],[199756800000,8.300000000000001],[202435200000,7.8],[205027200000,7.7],[207705600000,7.9],[210384000000,7.8],[212976000000,7.7],[215654400000,8.4],[218246400000,8],[220924800000,7.5],[223603200000,7.2],[226022400000,7.2],[228700800000,7.3],[231292800000,7.9],[233971200000,6.2],[236563200000,7.1],[239241600000,7],[241920000000,6.7],[244512000000,6.9],[247190400000,7],[249782400000,6.8],[252460800000,6.5],[255139200000,6.7],[257558400000,6.2],[260236800000,6.1],[262828800000,5.7],[265507200000,6],[268099200000,5.8],[270777600000,5.8],[273456000000,5.6],[276048000000,5.9],[278726400000,5.5],[281318400000,5.6],[283996800000,5.9],[286675200000,5.9],[289094400000,5.9],[291772800000,5.4],[294364800000,5.6],[297043200000,5.6],[299635200000,5.9],[302313600000,4.8],[304992000000,5.5],[307584000000,5.5],[310262400000,5.3],[312854400000,5.7],[315532800000,5.3],[318211200000,5.8],[320716800000,6],[323395200000,5.8],[325987200000,5.7],[328665600000,6.4],[331257600000,7],[333936000000,7.5],[336614400000,7.7],[339206400000,7.5],[341884800000,7.7],[344476800000,7.5],[347155200000,7.4],[349833600000,7.1],[352252800000,7.1],[354931200000,7.4],[357523200000,6.9],[360201600000,6.6],[362793600000,7.1],[365472000000,7.2],[368150400000,6.8],[370742400000,6.8],[373420800000,6.9],[376012800000,6.9],[378691200000,7.1],[381369600000,7.5],[383788800000,7.7],[386467200000,8.1],[389059200000,8.5],[391737600000,9.5],[394329600000,8.5],[397008000000,8.699999999999999],[399686400000,9.5],[402278400000,9.699999999999999],[404956800000,10],[407548800000,10.2],[410227200000,11.1],[412905600000,9.800000000000001],[415324800000,10.4],[418003200000,10.9],[420595200000,12.3],[423273600000,11.3],[425865600000,10.1],[428544000000,9.300000000000001],[431222400000,9.300000000000001],[433814400000,9.4],[436492800000,9.300000000000001],[439084800000,8.699999999999999],[441763200000,9.1],[444441600000,8.300000000000001],[446947200000,8.300000000000001],[449625600000,8.199999999999999],[452217600000,9.1],[454896000000,7.5],[457488000000,7.5],[460166400000,7.3],[462844800000,7.6],[465436800000,7.2],[468115200000,7.2],[470707200000,7.3],[473385600000,6.8],[476064000000,7.1],[478483200000,7.1],[481161600000,6.9],[483753600000,6.9],[486432000000,6.6],[489024000000,6.9],[491702400000,7.1],[494380800000,6.9],[496972800000,7.1],[499651200000,7],[502243200000,6.8],[504921600000,6.7],[507600000000,6.9],[510019200000,6.8],[512697600000,6.7],[515289600000,6.8],[517968000000,7],[520560000000,6.9],[523238400000,7.1],[525916800000,7.4],[528508800000,7],[531187200000,7.1],[533779200000,7.1],[536457600000,6.9],[539136000000,6.6],[541555200000,6.6],[544233600000,7.1],[546825600000,6.6],[549504000000,6.5],[552096000000,6.5],[554774400000,6.4],[557452800000,6],[560044800000,6.3],[562723200000,6.2],[565315200000,6],[567993600000,6.2],[570672000000,6.3],[573177600000,6.4],[575856000000,5.9],[578448000000,5.9],[581126400000,5.8],[583718400000,6.1],[586396800000,5.9],[589075200000,5.7],[591667200000,5.6],[594345600000,5.7],[596937600000,5.9],[599616000000,5.6],[602294400000,5.4],[604713600000,5.4],[607392000000,5.4],[609984000000,5.3],[612662400000,5.4],[615254400000,5.6],[617932800000,5],[620611200000,4.9],[623203200000,4.9],[625881600000,4.8],[628473600000,4.9],[631152000000,5.1],[633830400000,5.3],[636249600000,5.1],[638928000000,4.8],[641520000000,5.2],[644198400000,5.2],[646790400000,5.4],[649468800000,5.4],[652147200000,5.6],[654739200000,5.8],[657417600000,5.7],[660009600000,5.9],[662688000000,6],[665366400000,6.2],[667785600000,6.7],[670464000000,6.6],[673056000000,6.4],[675734400000,6.9],[678326400000,7],[681004800000,7.3],[683683200000,6.8],[686275200000,7.2],[688953600000,7.5],[691545600000,7.8],[694224000000,8.1],[696902400000,8.199999999999999],[699408000000,8.300000000000001],[702086400000,8.5],[704678400000,8.800000000000001],[707356800000,8.699999999999999],[709948800000,8.6],[712627200000,8.800000000000001],[715305600000,8.6],[717897600000,9],[720576000000,9],[723168000000,9.300000000000001],[725846400000,8.6],[728524800000,8.5],[730944000000,8.5],[733622400000,8.4],[736214400000,8.1],[738892800000,8.300000000000001],[741484800000,8.199999999999999],[744163200000,8.199999999999999],[746841600000,8.300000000000001],[749433600000,8],[752112000000,8.300000000000001],[754704000000,8.300000000000001],[757382400000,8.6],[760060800000,9.199999999999999],[762480000000,9.300000000000001],[765158400000,9.1],[767750400000,9.199999999999999],[770428800000,9.300000000000001],[773020800000,9],[775699200000,8.9],[778377600000,9.199999999999999],[780969600000,10],[783648000000,9],[786240000000,8.699999999999999],[788918400000,8],[791596800000,8.1],[794016000000,8.300000000000001],[796694400000,8.300000000000001],[799286400000,9.1],[801964800000,7.9],[804556800000,8.5],[807235200000,8.300000000000001],[809913600000,7.9],[812505600000,8.199999999999999],[815184000000,8],[817776000000,8.300000000000001],[820454400000,8.300000000000001],[823132800000,7.8],[825638400000,8.300000000000001],[828316800000,8.6],[830908800000,8.6],[833587200000,8.300000000000001],[836179200000,8.300000000000001],[838857600000,8.4],[841536000000,8.5],[844128000000,8.300000000000001],[846806400000,7.7],[849398400000,7.8],[852076800000,7.8],[854755200000,8.1],[857174400000,7.9],[859852800000,8.300000000000001],[862444800000,8],[865123200000,8],[867715200000,8.300000000000001],[870393600000,7.8],[873072000000,8.199999999999999],[875664000000,7.7],[878342400000,7.6],[880934400000,7.5],[883612800000,7.4],[886291200000,7],[888710400000,6.8],[891388800000,6.7],[893980800000,6],[896659200000,6.9],[899251200000,6.7],[901929600000,6.8],[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.199999999999999],[1009843200000,8.4],[1012521600000,8.300000000000001],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.300000000000001],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.699999999999999],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.199999999999999],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.699999999999999],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.199999999999999],[1109635200000,9.300000000000001],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.800000000000001],[1122854400000,9.199999999999999],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.699999999999999],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.699999999999999],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.300000000000001],[1164931200000,7.5],[1167609600000,8.300000000000001],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.199999999999999],[1180656000000,7.7],[1183248000000,8.699999999999999],[1185926400000,8.800000000000001],[1188604800000,8.699999999999999],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.699999999999999],[1204329600000,8.699999999999999],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.699999999999999],[1217548800000,9.699999999999999],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.800000000000001],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # you can add option to apex result : apex( data = economics, mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_stroke(width = 1) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,4.5],[-76377600000,4.7],[-73699200000,4.6],[-71107200000,4.9],[-68428800000,4.7],[-65836800000,4.8],[-63158400000,5.1],[-60480000000,4.5],[-57974400000,4.1],[-55296000000,4.6],[-52704000000,4.4],[-50025600000,4.4],[-47433600000,4.5],[-44755200000,4.2],[-42076800000,4.6],[-39484800000,4.8],[-36806400000,4.4],[-34214400000,4.4],[-31536000000,4.4],[-28857600000,4.9],[-26438400000,4],[-23760000000,4],[-21168000000,4.2],[-18489600000,4.4],[-15897600000,4.4],[-13219200000,4.4],[-10540800000,4.7],[-7948800000,4.5],[-5270400000,4.8],[-2678400000,4.6],[0,4.6],[2678400000,4.5],[5097600000,4.6],[7776000000,4.1],[10368000000,4.7],[13046400000,4.9],[15638400000,5.1],[18316800000,5.4],[20995200000,5.2],[23587200000,5.2],[26265600000,5.6],[28857600000,5.9],[31536000000,6.2],[34214400000,6.3],[36633600000,6.4],[39312000000,6.5],[41904000000,6.7],[44582400000,5.7],[47174400000,6.2],[49852800000,6.4],[52531200000,5.8],[55123200000,6.5],[57801600000,6.4],[60393600000,6.2],[63072000000,6.2],[65750400000,6.6],[68256000000,6.6],[70934400000,6.7],[73526400000,6.6],[76204800000,5.4],[78796800000,6.1],[81475200000,6],[84153600000,5.6],[86745600000,5.7],[89424000000,5.7],[92016000000,6.1],[94694400000,5.7],[97372800000,5.2],[99792000000,5.5],[102470400000,5],[105062400000,4.9],[107740800000,5],[110332800000,5.2],[113011200000,4.9],[115689600000,5.4],[118281600000,5.5],[120960000000,5.1],[123552000000,4.7],[126230400000,5],[128908800000,5.1],[131328000000,4.8],[134006400000,5],[136598400000,4.6],[139276800000,5.3],[141868800000,5.7],[144547200000,5],[147225600000,5.3],[149817600000,5.5],[152496000000,5.2],[155088000000,5.7],[157766400000,6.3],[160444800000,7.1],[162864000000,7.2],[165542400000,8.699999999999999],[168134400000,9.4],[170812800000,8.800000000000001],[173404800000,8.6],[176083200000,9.199999999999999],[178761600000,9.199999999999999],[181353600000,8.6],[184032000000,9.5],[186624000000,9],[189302400000,9],[191980800000,8.199999999999999],[194486400000,8.699999999999999],[197164800000,8.199999999999999],[199756800000,8.300000000000001],[202435200000,7.8],[205027200000,7.7],[207705600000,7.9],[210384000000,7.8],[212976000000,7.7],[215654400000,8.4],[218246400000,8],[220924800000,7.5],[223603200000,7.2],[226022400000,7.2],[228700800000,7.3],[231292800000,7.9],[233971200000,6.2],[236563200000,7.1],[239241600000,7],[241920000000,6.7],[244512000000,6.9],[247190400000,7],[249782400000,6.8],[252460800000,6.5],[255139200000,6.7],[257558400000,6.2],[260236800000,6.1],[262828800000,5.7],[265507200000,6],[268099200000,5.8],[270777600000,5.8],[273456000000,5.6],[276048000000,5.9],[278726400000,5.5],[281318400000,5.6],[283996800000,5.9],[286675200000,5.9],[289094400000,5.9],[291772800000,5.4],[294364800000,5.6],[297043200000,5.6],[299635200000,5.9],[302313600000,4.8],[304992000000,5.5],[307584000000,5.5],[310262400000,5.3],[312854400000,5.7],[315532800000,5.3],[318211200000,5.8],[320716800000,6],[323395200000,5.8],[325987200000,5.7],[328665600000,6.4],[331257600000,7],[333936000000,7.5],[336614400000,7.7],[339206400000,7.5],[341884800000,7.7],[344476800000,7.5],[347155200000,7.4],[349833600000,7.1],[352252800000,7.1],[354931200000,7.4],[357523200000,6.9],[360201600000,6.6],[362793600000,7.1],[365472000000,7.2],[368150400000,6.8],[370742400000,6.8],[373420800000,6.9],[376012800000,6.9],[378691200000,7.1],[381369600000,7.5],[383788800000,7.7],[386467200000,8.1],[389059200000,8.5],[391737600000,9.5],[394329600000,8.5],[397008000000,8.699999999999999],[399686400000,9.5],[402278400000,9.699999999999999],[404956800000,10],[407548800000,10.2],[410227200000,11.1],[412905600000,9.800000000000001],[415324800000,10.4],[418003200000,10.9],[420595200000,12.3],[423273600000,11.3],[425865600000,10.1],[428544000000,9.300000000000001],[431222400000,9.300000000000001],[433814400000,9.4],[436492800000,9.300000000000001],[439084800000,8.699999999999999],[441763200000,9.1],[444441600000,8.300000000000001],[446947200000,8.300000000000001],[449625600000,8.199999999999999],[452217600000,9.1],[454896000000,7.5],[457488000000,7.5],[460166400000,7.3],[462844800000,7.6],[465436800000,7.2],[468115200000,7.2],[470707200000,7.3],[473385600000,6.8],[476064000000,7.1],[478483200000,7.1],[481161600000,6.9],[483753600000,6.9],[486432000000,6.6],[489024000000,6.9],[491702400000,7.1],[494380800000,6.9],[496972800000,7.1],[499651200000,7],[502243200000,6.8],[504921600000,6.7],[507600000000,6.9],[510019200000,6.8],[512697600000,6.7],[515289600000,6.8],[517968000000,7],[520560000000,6.9],[523238400000,7.1],[525916800000,7.4],[528508800000,7],[531187200000,7.1],[533779200000,7.1],[536457600000,6.9],[539136000000,6.6],[541555200000,6.6],[544233600000,7.1],[546825600000,6.6],[549504000000,6.5],[552096000000,6.5],[554774400000,6.4],[557452800000,6],[560044800000,6.3],[562723200000,6.2],[565315200000,6],[567993600000,6.2],[570672000000,6.3],[573177600000,6.4],[575856000000,5.9],[578448000000,5.9],[581126400000,5.8],[583718400000,6.1],[586396800000,5.9],[589075200000,5.7],[591667200000,5.6],[594345600000,5.7],[596937600000,5.9],[599616000000,5.6],[602294400000,5.4],[604713600000,5.4],[607392000000,5.4],[609984000000,5.3],[612662400000,5.4],[615254400000,5.6],[617932800000,5],[620611200000,4.9],[623203200000,4.9],[625881600000,4.8],[628473600000,4.9],[631152000000,5.1],[633830400000,5.3],[636249600000,5.1],[638928000000,4.8],[641520000000,5.2],[644198400000,5.2],[646790400000,5.4],[649468800000,5.4],[652147200000,5.6],[654739200000,5.8],[657417600000,5.7],[660009600000,5.9],[662688000000,6],[665366400000,6.2],[667785600000,6.7],[670464000000,6.6],[673056000000,6.4],[675734400000,6.9],[678326400000,7],[681004800000,7.3],[683683200000,6.8],[686275200000,7.2],[688953600000,7.5],[691545600000,7.8],[694224000000,8.1],[696902400000,8.199999999999999],[699408000000,8.300000000000001],[702086400000,8.5],[704678400000,8.800000000000001],[707356800000,8.699999999999999],[709948800000,8.6],[712627200000,8.800000000000001],[715305600000,8.6],[717897600000,9],[720576000000,9],[723168000000,9.300000000000001],[725846400000,8.6],[728524800000,8.5],[730944000000,8.5],[733622400000,8.4],[736214400000,8.1],[738892800000,8.300000000000001],[741484800000,8.199999999999999],[744163200000,8.199999999999999],[746841600000,8.300000000000001],[749433600000,8],[752112000000,8.300000000000001],[754704000000,8.300000000000001],[757382400000,8.6],[760060800000,9.199999999999999],[762480000000,9.300000000000001],[765158400000,9.1],[767750400000,9.199999999999999],[770428800000,9.300000000000001],[773020800000,9],[775699200000,8.9],[778377600000,9.199999999999999],[780969600000,10],[783648000000,9],[786240000000,8.699999999999999],[788918400000,8],[791596800000,8.1],[794016000000,8.300000000000001],[796694400000,8.300000000000001],[799286400000,9.1],[801964800000,7.9],[804556800000,8.5],[807235200000,8.300000000000001],[809913600000,7.9],[812505600000,8.199999999999999],[815184000000,8],[817776000000,8.300000000000001],[820454400000,8.300000000000001],[823132800000,7.8],[825638400000,8.300000000000001],[828316800000,8.6],[830908800000,8.6],[833587200000,8.300000000000001],[836179200000,8.300000000000001],[838857600000,8.4],[841536000000,8.5],[844128000000,8.300000000000001],[846806400000,7.7],[849398400000,7.8],[852076800000,7.8],[854755200000,8.1],[857174400000,7.9],[859852800000,8.300000000000001],[862444800000,8],[865123200000,8],[867715200000,8.300000000000001],[870393600000,7.8],[873072000000,8.199999999999999],[875664000000,7.7],[878342400000,7.6],[880934400000,7.5],[883612800000,7.4],[886291200000,7],[888710400000,6.8],[891388800000,6.7],[893980800000,6],[896659200000,6.9],[899251200000,6.7],[901929600000,6.8],[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.199999999999999],[1009843200000,8.4],[1012521600000,8.300000000000001],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.300000000000001],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.699999999999999],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.199999999999999],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.699999999999999],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.199999999999999],[1109635200000,9.300000000000001],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.800000000000001],[1122854400000,9.199999999999999],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.699999999999999],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.699999999999999],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.300000000000001],[1164931200000,7.5],[1167609600000,8.300000000000001],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.199999999999999],[1180656000000,7.7],[1183248000000,8.699999999999999],[1185926400000,8.800000000000001],[1188604800000,8.699999999999999],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.699999999999999],[1204329600000,8.699999999999999],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.699999999999999],[1217548800000,9.699999999999999],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.800000000000001],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":1},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # with group variable data(\"economics_long\", package = \"ggplot2\") apex( data = economics_long, mapping = aes(x = date, y = value01, group = variable), type = \"line\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,0],[-76377600000,0.0002652497197765077],[-73699200000,0.0007615233890357775],[-71107200000,0.0004706043415389667],[-68428800000,0.0009155393553576157],[-65836800000,0.001574385433512166],[-63158400000,0.002070659102771431],[-60480000000,0.002301683052254198],[-57974400000,0.003217222407611809],[-55296000000,0.003191553079891505],[-52704000000,0.00368782674915077],[-50025600000,0.004243995516424089],[-47433600000,0.004834390053991158],[-44755200000,0.00515953487178171],[-42076800000,0.005262212182662942],[-39484800000,0.005553131230159753],[-36806400000,0.005989509801404973],[-34214400000,0.005972396916258099],[-31536000000,0.006571347896398595],[-28857600000,0.007016282910217254],[-26438400000,0.00703339579536412],[-23760000000,0.007461217924035903],[-21168000000,0.008008830248735783],[-18489600000,0.0080601689041764],[-15897600000,0.008214184870498248],[-13219200000,0.00883024873578561],[-10540800000,0.009112611340708994],[-7948800000,0.00956610279710108],[-5270400000,0.009737231648569792],[-2678400000,0.00993402982775881],[0,0.01043885993959152],[2678400000,0.01089235139598361],[5097600000,0.0107468918722352],[7776000000,0.01106348024745232],[10368000000,0.0116110925721522],[13046400000,0.01194479383251619],[15638400000,0.01213303556913178],[18316800000,0.01250951904236295],[20995200000,0.01304001848191596],[23587200000,0.01297156694132847],[26265600000,0.01282610741758007],[28857600000,0.01359618724918928],[31536000000,0.01449461371940003],[34214400000,0.0147769763243234],[36633600000,0.01499944383123273],[39312000000,0.01558128192622635],[41904000000,0.01577808010541538],[44582400000,0.01652249060930427],[47174400000,0.01644548262614336],[49852800000,0.0169588691805495],[52531200000,0.01765194102899779],[55123200000,0.01789152142105398],[57801600000,0.0183278999922992],[60393600000,0.01896963318530688],[63072000000,0.01923488290508338],[65750400000,0.01963703570603487],[68256000000,0.0207493732405815],[70934400000,0.02103173584550488],[73526400000,0.02150234018704384],[76204800000,0.02181037211968753],[78796800000,0.02252055685328268],[81475200000,0.02306816917798256],[84153600000,0.02347887842150748],[86745600000,0.0246596674966416],[89424000000,0.025138828280754],[92016000000,0.0256179890648664],[94694400000,0.0265078590925037],[97372800000,0.02730360825183322],[99792000000,0.02790255923197371],[102470400000,0.02815069606660336],[105062400000,0.02865552617843606],[107740800000,0.02888655012791882],[110332800000,0.02972508150011552],[113011200000,0.02965662995952803],[115689600000,0.03101710432870431],[118281600000,0.03093153990296995],[120960000000,0.03167595040685885],[123552000000,0.03165028107913855],[126230400000,0.03232624004243996],[128908800000,0.03277117505625862],[131328000000,0.03377227883735059],[134006400000,0.03457658443925354],[136598400000,0.03556913177777208],[139276800000,0.03604829256188448],[141868800000,0.03689538037665461],[144547200000,0.03834141917156523],[147225600000,0.03836708849928554],[149817600000,0.03871790264479641],[152496000000,0.03846120936759334],[155088000000,0.03894037015170573],[157766400000,0.04012115922683986],[160444800000,0.04130194830197398],[162864000000,0.0414046256128552],[165542400000,0.04178110908608638],[168134400000,0.0438260988611375],[170812800000,0.04450205782443891],[173404800000,0.04561439535898554],[176083200000,0.04623045922427292],[178761600000,0.04689786174500089],[181353600000,0.04741980474198049],[184032000000,0.04869471468542239],[186624000000,0.0500894148248924],[189302400000,0.05137288121090774],[191980800000,0.05142421986634838],[194486400000,0.05204028373163574],[197164800000,0.05293871020184649],[199756800000,0.05270768625236372],[202435200000,0.05423073303043527],[205027200000,0.05500936930461791],[207705600000,0.05572811048078651],[210384000000,0.05665220627871756],[212976000000,0.05733672168459241],[215654400000,0.05838060767855157],[218246400000,0.0603058072575746],[220924800000,0.06060528274764485],[223603200000,0.06199998288711486],[226022400000,0.06259893386725535],[228700800000,0.06336901369886457],[231292800000,0.06420754507106124],[233971200000,0.06476371383833457],[236563200000,0.0662097526332452],[239241600000,0.06665468764706386],[241920000000,0.0674076545935262],[244512000000,0.06885369338843683],[247190400000,0.07018849842989279],[249782400000,0.07095857826150201],[252460800000,0.07040240949422868],[255139200000,0.07259285879302821],[257558400000,0.07450950192947781],[260236800000,0.07612666957585716],[262828800000,0.07746147461731311],[265507200000,0.07864226369244723],[268099200000,0.07872782811818159],[270777600000,0.08045622951801559],[273456000000,0.08096105962984831],[276048000000,0.0821589615901293],[278726400000,0.08333119422268997],[281318400000,0.08469166859186625],[283996800000,0.08519649870369897],[286675200000,0.08651419086000804],[289094400000,0.08766075416484843],[291772800000,0.0882768180301358],[294364800000,0.09002233231511667],[297043200000,0.09146837111002731],[299635200000,0.09235824113766461],[302313600000,0.09488239169682813],[304992000000,0.09644822068776687],[307584000000,0.0971070667659214],[310262400000,0.0984504282499508],[312854400000,0.09922050808156002],[315532800000,0.1018730052793251],[318211200000,0.102223819424836],[320716800000,0.1028056575198296],[323395200000,0.1016933199852829],[325987200000,0.1021125856713813],[328665600000,0.1037126404326137],[331257600000,0.106134113680896],[333936000000,0.1075630395906598],[336614400000,0.1089919655004236],[339206400000,0.112123623482301],[341884800000,0.1129535984119243],[344476800000,0.1150841526127098],[347155200000,0.1166499816036485],[349833600000,0.1178649964490763],[352252800000,0.1194650512103088],[354931200000,0.1195933978489104],[357523200000,0.1203977034508133],[360201600000,0.1221688870635145],[362793600000,0.1228191766990956],[365472000000,0.1249155051295873],[368150400000,0.1248213842612795],[370742400000,0.1246844811801046],[373420800000,0.1252577628325248],[376012800000,0.1268150353808901],[378691200000,0.1275252201144852],[381369600000,0.1295873227746832],[383788800000,0.1298354596093128],[386467200000,0.1300237013459284],[389059200000,0.1315809738942937],[391737600000,0.1318890058269374],[394329600000,0.1339511084871354],[397008000000,0.1346270674504368],[399686400000,0.1367233958809285],[402278400000,0.1385373617064969],[404956800000,0.1405481257112543],[407548800000,0.1416005681477869],[410227200000,0.1426615670268929],[412905600000,0.142918260304096],[415324800000,0.1451258224880424],[418003200000,0.1471451429353732],[420595200000,0.1488136492371932],[423273600000,0.1513891384517973],[425865600000,0.153819168142653],[428544000000,0.1551881989544028],[431222400000,0.1564288831275509],[433814400000,0.1583711955917208],[436492800000,0.1591156060956097],[439084800000,0.1614515149181576],[441763200000,0.1636590771021041],[444441600000,0.1622986027329278],[446947200000,0.1647029630960632],[449625600000,0.166919081722583],[452217600000,0.1683736769600671],[454896000000,0.170179086343062],[457488000000,0.1700935219173277],[460166400000,0.1715994558102523],[462844800000,0.1734476474061145],[465436800000,0.1732337363417786],[468115200000,0.1766648698137263],[470707200000,0.1776231913819511],[473385600000,0.1807206235935348],[476064000000,0.1826030409596907],[478483200000,0.1832618870378452],[481161600000,0.1842030957209231],[483753600000,0.1873604230305209],[486432000000,0.1867614720503804],[489024000000,0.1890118164471939],[491702400000,0.1921263615439245],[494380800000,0.1957714060802081],[496972800000,0.1924429499191417],[499651200000,0.1937520856328773],[502243200000,0.1971917755473985],[504921600000,0.1985436934740013],[507600000000,0.1979532989364342],[510019200000,0.198244217983931],[512697600000,0.1992367653224495],[515289600000,0.2011448520163257],[517968000000,0.20150422260441],[520560000000,0.20317272890623],[523238400000,0.2046615499140078],[525916800000,0.2109248658777627],[528508800000,0.2075964097166962],[531187200000,0.2072113698008916],[533779200000,0.2130896458488419],[536457600000,0.2078188772236056],[539136000000,0.21348324220722],[541555200000,0.2144757895457385],[544233600000,0.2166576824019646],[546825600000,0.2174791008890144],[549504000000,0.2195668728769327],[552096000000,0.2214407338005151],[554774400000,0.2245296095695254],[557452800000,0.2241616825388677],[560044800000,0.2248461979447425],[562723200000,0.2256761728743658],[565315200000,0.2282345492038231],[567993600000,0.2316229004629036],[570672000000,0.2322817465410582],[573177600000,0.2356273155872715],[575856000000,0.2358412266516074],[578448000000,0.2384594980790787],[581126400000,0.2405900522798642],[583718400000,0.2426607113826356],[586396800000,0.2448254913537148],[589075200000,0.2454244423338553],[591667200000,0.2487357856097749],[594345600000,0.2501475986343918],[596937600000,0.2526717491935553],[599616000000,0.2547252954111799],[602294400000,0.2550932224418376],[604713600000,0.2560173182397687],[607392000000,0.2597992658572272],[609984000000,0.2605522328036896],[612662400000,0.2618185863045581],[615254400000,0.2634528668360843],[617932800000,0.2664390652942133],[620611200000,0.266550299047668],[623203200000,0.2675514028287599],[625881600000,0.2683813777583832],[628473600000,0.2718809627709184],[631152000000,0.275859708567566],[633830400000,0.2756457975032301],[636249600000,0.2779303676703375],[638928000000,0.2792223904989262],[641520000000,0.2797186641681855],[644198400000,0.2821743631867615],[646790400000,0.2836460713093925],[649468800000,0.2859220850339264],[652147200000,0.2877873895149353],[654739200000,0.2878301717278025],[657417600000,0.2879414054812572],[660009600000,0.287034422568473],[662688000000,0.2852974647260655],[665366400000,0.2874964704674385],[667785600000,0.2914581033789392],[670464000000,0.2909532732671065],[673056000000,0.2931865047787732],[675734400000,0.293811125086634],[678326400000,0.2959930179428601],[681004800000,0.2962582676626366],[683683200000,0.2975930727040926],[686275200000,0.2968486622002037],[688953600000,0.2992102403504719],[691545600000,0.3006562791453826],[694224000000,0.3061495152775283],[696902400000,0.3074158687783968],[699408000000,0.308913246228748],[702086400000,0.3101539304018961],[704678400000,0.3124556134541503],[707356800000,0.3140556682153828],[709948800000,0.3164258028082245],[712627200000,0.3178033900625476],[715305600000,0.3207468063078096],[717897600000,0.3232624004243996],[720576000000,0.3246143183510025],[723168000000,0.3276860812348658],[725846400000,0.3280540082655236],[728524800000,0.3293032488812452],[730944000000,0.329063668489189],[733622400000,0.3325632535017242],[736214400000,0.3350446218480205],[738892800000,0.3365505557409452],[741484800000,0.3390233676446681],[744163200000,0.3400672536386273],[746841600000,0.3426684121809517],[749433600000,0.3444909344490935],[752112000000,0.3463134567172353],[754704000000,0.3477680519547194],[757382400000,0.3489659539150004],[760060800000,0.3530302641373823],[762480000000,0.3541768274422227],[765158400000,0.3563244945281551],[767750400000,0.3561875914469801],[770428800000,0.3595588298209137],[773020800000,0.3605599336020057],[775699200000,0.3641536394828487],[778377600000,0.3652146383619547],[780969600000,0.3684575300972868],[783648000000,0.3695441983041132],[786240000000,0.3709132291158629],[788918400000,0.3717346476029126],[791596800000,0.3717004218326189],[794016000000,0.3746609509630277],[796694400000,0.3750716602065526],[799286400000,0.3787423740705565],[801964800000,0.3825414345731619],[804556800000,0.3819168142653011],[807235200000,0.3849201256085771],[809913600000,0.3862207048797393],[812505600000,0.3856559796698925],[815184000000,0.3892240162230152],[817776000000,0.3928091656612847],[820454400000,0.3917995054376193],[823132800000,0.3958295898897075],[825638400000,0.399294949131949],[828316800000,0.4022640347049312],[830908800000,0.403615952631534],[833587200000,0.4041293391859401],[836179200000,0.4060203129946694],[838857600000,0.407996851229133],[841536000000,0.4098450428249952],[844128000000,0.4125745480059211],[846806400000,0.414516860470091],[849398400000,0.4168613257352125],[852076800000,0.419642169571579],[854755200000,0.4216015949208958],[857174400000,0.4233299963207298],[859852800000,0.423766374891975],[862444800000,0.4238433828751359],[865123200000,0.426752573350104],[867715200000,0.4314243909951999],[870393600000,0.4346929520582523],[873072000000,0.4359507491165474],[875664000000,0.4390310684429842],[878342400000,0.4410332760051682],[880934400000,0.4436857732029332],[883612800000,0.4434975314663176],[886291200000,0.4463981654987124],[888710400000,0.4486656227806728],[891388800000,0.4518999580734315],[893980800000,0.4561610664750024],[896659200000,0.4590531440648237],[899251200000,0.4606189730557624],[901929600000,0.4636137279564649],[904608000000,0.4670876436412798],[907200000000,0.4699283825756604],[909878400000,0.4713487520428507],[912470400000,0.4760633519008138],[915148800000,0.4762687065225762],[917827200000,0.4787415184262992],[920246400000,0.4814025720666376],[922924800000,0.4868188002156224],[925516800000,0.489342950774786],[928195200000,0.4917644240230682],[930787200000,0.494117445730763],[933465600000,0.4979678448888091],[936144000000,0.502442864354716],[938736000000,0.5044365154743266],[941414400000,0.5074997219156164],[944006400000,0.5161246160296395],[946684800000,0.5158336969821428],[949363200000,0.5230553345141224],[951868800000,0.5287111430551635],[954547200000,0.5274533459968684],[957139200000,0.5305764475361725],[959817600000,0.5336824361903295],[962409600000,0.5354108375901636],[965088000000,0.5384055924908661],[967766400000,0.5455758913674051],[970358400000,0.5460293828237972],[973036800000,0.5472443976692251],[975628800000,0.5509493373035228],[978307200000,0.5536275038290082],[980985600000,0.555236115032814],[983404800000,0.5545601560695126],[986083200000,0.5556981629317795],[988675200000,0.5596255700729865],[991353600000,0.5607892462629738],[993945600000,0.5617732371589189],[996624000000,0.5649134515833698],[999302400000,0.5566907102702982],[1001894400000,0.5734271119439383],[1004572800000,0.5699617527016968],[1007164800000,0.5682333513018628],[1009843200000,0.5705093650263967],[1012521600000,0.5742741997587084],[1014940800000,0.5758913674050877],[1017619200000,0.5817268612401708],[1020211200000,0.5797845487760009],[1022889600000,0.5828220858895706],[1025481600000,0.5881441931702476],[1028160000000,0.5899496025532426],[1030838400000,0.5890511760830318],[1033430400000,0.5924480837846857],[1036108800000,0.5949294521309821],[1038700800000,0.5994729231374765],[1041379200000,0.6012098809798839],[1044057600000,0.6014494613719401],[1046476800000,0.6067972379803374],[1049155200000,0.6087309940019339],[1051747200000,0.6093385014246478],[1054425600000,0.6136595049242328],[1057017600000,0.6187591446980004],[1059696000000,0.626998998896219],[1062374400000,0.6270417811090861],[1064966400000,0.6279573204644437],[1067644800000,0.6325692430115256],[1070236800000,0.6351019500132625],[1072915200000,0.6400817995910021],[1075593600000,0.6428540869847953],[1078099200000,0.6476628077110661],[1080777600000,0.6487409194753191],[1083369600000,0.6551240256351021],[1086048000000,0.6537549948233523],[1088640000000,0.6598899641485056],[1091318400000,0.6628162675086208],[1093996800000,0.668634648458557],[1096588800000,0.6732123452353451],[1099267200000,0.6771483088191255],[1101859200000,0.6823591823463477],[1104537600000,0.6813923043355496],[1107216000000,0.6864406054538766],[1109635200000,0.6898888518109711],[1112313600000,0.6964003046093558],[1114905600000,0.6962548450856073],[1117584000000,0.7031770071275166],[1120176000000,0.7121356025019039],[1122854400000,0.7123837393365334],[1125532800000,0.7169528796707481],[1128124800000,0.7204439082407099],[1130803200000,0.7214621249069487],[1133395200000,0.7241231785472872],[1136073600000,0.7318410897485261],[1138752000000,0.7344336918482772],[1141171200000,0.7371717534717767],[1143849600000,0.7416809987079771],[1146441600000,0.7451292450650718],[1149120000000,0.7473282508064447],[1151712000000,0.7543274208315152],[1154390400000,0.7542589692909276],[1157068800000,0.7570740388975881],[1159660800000,0.7586569807736736],[1162339200000,0.7592559317538141],[1164931200000,0.766854052759025],[1167609600000,0.77090125009626],[1170288000000,0.7735109650811578],[1172707200000,0.7767880825867838],[1175385600000,0.7794063540142552],[1177977600000,0.7824524475703981],[1180656000000,0.7838214783821478],[1183248000000,0.7874408535907111],[1185926400000,0.7912313576507432],[1188604800000,0.7949961923830549],[1191196800000,0.7974861171719246],[1193875200000,0.8035440785139171],[1196467200000,0.8044510614267012],[1199145600000,0.8062992530225633],[1201824000000,0.8048788835553731],[1204329600000,0.8088148471391534],[1207008000000,0.8120149566616184],[1209600000000,0.8168921289284766],[1212278400000,0.8215211643607054],[1214870400000,0.8212473581983556],[1217548800000,0.820391713941012],[1220227200000,0.8160108153434129],[1222819200000,0.8088918551223143],[1225497600000,0.7969556177323716],[1228089600000,0.7892462629737061],[1230768000000,0.7937897339802004],[1233446400000,0.7922666872021289],[1235865600000,0.7882023769797469],[1238544000000,0.7887414328618734],[1241136000000,0.7908035355220714],[1243814400000,0.795766272214664],[1246406400000,0.7987439142302197],[1249084800000,0.8089517502203284],[1251763200000,0.8023119507833423],[1254355200000,0.8064618254314586],[1257033600000,0.8071976794927741],[1259625600000,0.8121946419556605],[1262304000000,0.8124427787902901],[1264982400000,0.8149070342514397],[1267401600000,0.8199125531568996],[1270080000000,0.8219489864893772],[1272672000000,0.8234977025951691],[1275350400000,0.8252432168801499],[1277942400000,0.8280925122571041],[1280620800000,0.8318145647765486],[1283299200000,0.8335943048318232],[1285891200000,0.8383602433452269],[1288569600000,0.8426384646319447],[1291161600000,0.8458385741544097],[1293840000000,0.8495520702312807],[1296518400000,0.8525125993616894],[1298937600000,0.8593919791907317],[1301616000000,0.8625664193854764],[1304208000000,0.8646541913733946],[1306886400000,0.8667761891316066],[1309478400000,0.870258661258995],[1312156800000,0.8722351994934586],[1314835200000,0.8754438654584971],[1317427200000,0.8767273318445125],[1320105600000,0.8772749441692123],[1322697600000,0.8783616123760386],[1325376000000,0.8860538542495573],[1328054400000,0.8938744427616775],[1330560000000,0.8937289832379289],[1333238400000,0.8961162307159176],[1335830400000,0.8951664655902662],[1338508800000,0.89325837889639],[1341100800000,0.8959023196515817],[1343779200000,0.8982040027038359],[1346457600000,0.903115400740988],[1349049600000,0.9063925182466138],[1351728000000,0.909558401998785],[1354320000000,0.9098749903740021],[1356998400000,0.9152056540972525],[1359676800000,0.9183544249642769],[1362096000000,0.9172848696425975],[1364774400000,0.9154281216041619],[1367366400000,0.9187822470929488],[1370044800000,0.92085290619572],[1372636800000,0.9232401536737087],[1375315200000,0.9260209975100753],[1377993600000,0.9292467763602604],[1380585600000,0.9337731344816079],[1383264000000,0.9395744025463973],[1385856000000,0.9421670046461483],[1388534400000,0.9417049567471828],[1391212800000,0.9462997664091178],[1393632000000,0.9528711143055164],[1396310400000,0.9579707540792841],[1398902400000,0.9618896047779175],[1401580800000,0.9677593243832945],[1404172800000,0.9714813769027389],[1406851200000,0.978651675779278],[1409529600000,0.9797725697563981],[1412121600000,0.985385596084572],[1414800000000,0.9878156257754276],[1417392000000,0.9887226086882118],[1420070400000,0.9873535778764622],[1422748800000,0.9904681229731926],[1425168000000,0.9969624628864303],[1427846400000,1]]},{\"name\":\"pop\",\"type\":\"line\",\"data\":[[-79056000000,0],[-76377600000,0.001635298854358106],[-73699200000,0.003295250455264325],[-71107200000,0.004922331727439728],[-68428800000,0.006459019595605386],[-65836800000,0.00776561516265533],[-63158400000,0.009006470072243642],[-60480000000,0.009926839276706496],[-57974400000,0.01104443045355425],[-55296000000,0.01229350294532526],[-52704000000,0.01355079301927898],[-50025600000,0.01498886990125219],[-47433600000,0.01638585887231188],[-44755200000,0.01796363465139106],[-42076800000,0.01958249834138376],[-39484800000,0.02118492686701105],[-36806400000,0.02263122133116696],[-34214400000,0.02390494656948609],[-31536000000,0.02504719049288195],[-28857600000,0.02604151793698915],[-26438400000,0.02720841460693312],[-23760000000,0.02834244094814628],[-21168000000,0.02973942991920597],[-18489600000,0.03118572438336188],[-15897600000,0.03258271335442157],[-13219200000,0.03422622979096238],[-10540800000,0.03597657479587835],[-7948800000,0.0377187022186116],[-5270400000,0.039345783490787],[-2678400000,0.04078386037276022],[0,0.04221371967255072],[2678400000,0.04352031523960066],[5097600000,0.04473651740264087],[7776000000,0.04674982503740336],[10368000000,0.04844264696704039],[13046400000,0.0502751677937834],[15638400000,0.0520994710383437],[18316800000,0.05409634350874078],[20995200000,0.05610965114350328],[23587200000,0.05814761152481388],[26265600000,0.06008696091993204],[28857600000,0.0618455235070307],[31536000000,0.06371913224468723],[34214400000,0.06537908384559345],[36633600000,0.06691577171375911],[39312000000,0.06864146397212696],[41904000000,0.07024389249775424],[44582400000,0.07190384409866046],[47174400000,0.07353914295301857],[49852800000,0.07534701103321347],[52531200000,0.0772617076817835],[55123200000,0.07915996916598815],[57801600000,0.08088566142435599],[60393600000,0.08240591412815625],[63072000000,0.08386042617449486],[65750400000,0.08504375800880425],[68256000000,0.08628461291839255],[70934400000,0.08771447221818307],[73526400000,0.08902106778523301],[76204800000,0.09050023257811973],[78796800000,0.09190543913136213],[81475200000,0.09337638634206616],[84153600000,0.09504455552515507],[86745600000,0.0966962895438786],[89424000000,0.09815080159021722],[92016000000,0.09950670265036338],[94694400000,0.1008543861283268],[97372800000,0.1019637597229919],[99792000000,0.1030649157354742],[102470400000,0.1044290343778031],[105062400000,0.1057191947804876],[107740800000,0.1071079661693646],[110332800000,0.1084474320651454],[113011200000,0.1099512496045802],[115689600000,0.1115701132945729],[118281600000,0.1130985835805559],[120960000000,0.1144051791476058],[123552000000,0.1156460340571941],[126230400000,0.1168540186380516],[128908800000,0.1180209153079956],[131328000000,0.1191467240670261],[134006400000,0.1203793613944317],[136598400000,0.1216284338862027],[139276800000,0.1230500756038105],[141868800000,0.1244306294105048],[144547200000,0.1259755348608531],[147225600000,0.1276519216261248],[149817600000,0.1293365259735791],[152496000000,0.1307663852733696],[155088000000,0.1320565456760541],[157766400000,0.133280965421277],[160444800000,0.1343821214337594],[162864000000,0.135475059864059],[165542400000,0.1367487851023781],[168134400000,0.1381457740734378],[170812800000,0.1401590817082003],[173404800000,0.1418436860556547],[176083200000,0.143667989300215],[178761600000,0.1452950705723904],[181353600000,0.1468892815158349],[184032000000,0.1484013166374525],[186624000000,0.1497161297866851],[189302400000,0.1510638132646486],[191980800000,0.152329320920785],[194486400000,0.153414041768902],[197164800000,0.1546220263497595],[199756800000,0.155912186752444],[202435200000,0.1573584812165999],[205027200000,0.1587883405163904],[207705600000,0.1604154217885658],[210384000000,0.1621164613003856],[212976000000,0.1637928480656572],[215654400000,0.165354188680371],[218246400000,0.1667676128157961],[220924800000,0.1681892545334039],[223603200000,0.16954515559355],[226022400000,0.1708599687427827],[228700800000,0.1723391335356694],[231292800000,0.1737772104176426],[233971200000,0.1753138982858083],[236563200000,0.1768998916470702],[239241600000,0.1786995421450824],[241920000000,0.1805895860471043],[244512000000,0.1823645837985683],[247190400000,0.1840491881460227],[249782400000,0.1856433990894673],[252460800000,0.1870732583892578],[255139200000,0.1883223308810288],[257558400000,0.1896617967768096],[260236800000,0.1912970956311676],[262828800000,0.1928173483349679],[265507200000,0.1944855175180568],[268099200000,0.1961783394476939],[270777600000,0.1979862075278888],[273456000000,0.2000241679091994],[276048000000,0.2018156008250288],[278726400000,0.2035084227546659],[281318400000,0.2050944161159278],[283996800000,0.206696844641555],[286675200000,0.2082417500919034],[289094400000,0.2097373500491556],[291772800000,0.2114055192322445],[294364800000,0.2129997301756891],[297043200000,0.2147336400162396],[299635200000,0.2164757674389729],[302313600000,0.2184479871628218],[304992000000,0.2205188178728633],[307584000000,0.2226060837472701],[310262400000,0.2244632573205612],[312854400000,0.2262382550720253],[315532800000,0.2279475121660277],[318211200000,0.2296321165134821],[320716800000,0.2312181098747439],[323395200000,0.2329602372974772],[325987200000,0.234521577912191],[328665600000,0.2367485426837038],[331257600000,0.2384249294489754],[333936000000,0.2402903206044492],[336614400000,0.2422050172530193],[339206400000,0.2441032787372239],[341884800000,0.2457057072628512],[344476800000,0.2470780434873628],[347155200000,0.24837642147223],[349833600000,0.2494775774847124],[352252800000,0.2507348675586661],[354931200000,0.2522058147693701],[357523200000,0.2536192389047952],[360201600000,0.2551477091907782],[362793600000,0.2568323135382325],[365472000000,0.2586483992006101],[368150400000,0.2604973551917185],[370742400000,0.2623791815115577],[373420800000,0.2638665638866272],[376012800000,0.2652389001111387],[378691200000,0.266619453917833],[381369600000,0.2679013967383349],[383788800000,0.2691915571410194],[386467200000,0.2706296340229926],[389059200000,0.2719773175009561],[391737600000,0.2734811350403909],[394329600000,0.2750917811482009],[397008000000,0.2767681679134725],[399686400000,0.2784692074252922],[402278400000,0.280252422758939],[404956800000,0.2817069348052776],[407548800000,0.2830792710297892],[410227200000,0.2844105193433873],[412905600000,0.2856513742529756],[415324800000,0.2868018357585542],[418003200000,0.2881823895652484],[420595200000,0.2893410686530097],[423273600000,0.2909517147608197],[425865600000,0.2925048377933508],[428544000000,0.2940990487367954],[431222400000,0.2957425651733362],[433814400000,0.2974353871029732],[436492800000,0.2988405936562156],[439084800000,0.3001307540589002],[441763200000,0.3013633913863057],[444441600000,0.3025302880562497],[446947200000,0.3037464902192899],[449625600000,0.3050941736972534],[452217600000,0.3063596813533898],[454896000000,0.3077320175779014],[457488000000,0.3092769230282498],[460166400000,0.3109286570469733],[462844800000,0.3126625668875238],[465436800000,0.3144375646389879],[468115200000,0.3159413821784227],[470707200000,0.3172315425811073],[473385600000,0.3184806150728783],[476064000000,0.3195817710853606],[478483200000,0.3206500567691122],[481161600000,0.3220306105758065],[483753600000,0.323460469875597],[486432000000,0.3250711159834069],[489024000000,0.3266817620912169],[491702400000,0.3284321070961329],[494380800000,0.3302317575941451],[496972800000,0.3319985377634265],[499651200000,0.3335927487068711],[502243200000,0.3349897376779307],[504921600000,0.3363127684093461],[507600000000,0.3375454057367517],[510019200000,0.3386958672423303],[512697600000,0.3400599858846591],[515289600000,0.3415144979309978],[517968000000,0.3430594033813461],[520560000000,0.3446371791604253],[523238400000,0.3463053483435142],[525916800000,0.3480639109306129],[528508800000,0.3497567328602499],[531187200000,0.3513427262215118],[533779200000,0.3526000162954655],[536457600000,0.353947699773429],[539136000000,0.3551474667721038],[541555200000,0.3563718865173267],[544233600000,0.3577935282349345],[546825600000,0.3591987347881769],[549504000000,0.3607189874919771],[552096000000,0.3623296335997871],[554774400000,0.3640388906937896],[557452800000,0.3657728005343401],[560044800000,0.3676053213610831],[562723200000,0.369191314722345],[565315200000,0.3705883036934047],[567993600000,0.3720017278288298],[570672000000,0.3732343651562354],[573177600000,0.3744505673192756],[575856000000,0.3758146859616044],[578448000000,0.3771705870217507],[581126400000,0.3787812331295606],[583718400000,0.380548013298842],[586396800000,0.3823476637968542],[589075200000,0.3841884022057799],[591667200000,0.3860702285256191],[594345600000,0.3876397867225156],[596937600000,0.3890532108579407],[599616000000,0.390433764664635],[602294400000,0.3916992723207714],[604713600000,0.3929483448125424],[607392000000,0.3945179030094389],[609984000000,0.3960381557132391],[612662400000,0.3977474128072416],[615254400000,0.3996210215448981],[617932800000,0.4015192830291027],[620611200000,0.4035161554994998],[623203200000,0.4055787686273585],[625881600000,0.4073373312144572],[628473600000,0.4089644124866326],[631152000000,0.4104435772795194],[633830400000,0.4118241310862136],[636249600000,0.4133443837900139],[638928000000,0.4157603529517289],[641520000000,0.4178887067370492],[644198400000,0.4202225000769372],[646790400000,0.4225480758346424],[649468800000,0.4250708735647326],[652147200000,0.4276347592057362],[654739200000,0.4301493393536437],[657417600000,0.4325242206044451],[660009600000,0.4348251436156023],[662688000000,0.4369863677296534],[665366400000,0.4390078929465986],[667785600000,0.4409554599238995],[670464000000,0.4431824246954123],[673056000000,0.4454011718847424],[675734400000,0.4478171410464574],[678326400000,0.4501673695507107],[681004800000,0.4527476903560798],[683683200000,0.4553690990723624],[686275200000,0.457908331966818],[688953600000,0.4602339077245232],[691545600000,0.4622554329414684],[694224000000,0.4643098284871444],[696902400000,0.4662327427178972],[699408000000,0.4683282261744867],[702086400000,0.4707031074252881],[704678400000,0.4731108590048205],[707356800000,0.4756090039883625],[709948800000,0.4781153665540872],[712627200000,0.4808929093318412],[715305600000,0.4834896653015757],[717897600000,0.486061768524762],[720576000000,0.4884119970290154],[723168000000,0.4905978738896147],[725846400000,0.492783750750214],[728524800000,0.4947559704740629],[730944000000,0.496670667122633],[733622400000,0.4988236736545014],[736214400000,0.5010095505151008],[738892800000,0.503335126272806],[741484800000,0.5057346602701556],[744163200000,0.5082903283289765],[746841600000,0.5107638205659705],[749433600000,0.5131962248920509],[752112000000,0.5153492314239193],[754704000000,0.5173954093874126],[757382400000,0.5194087170221751],[760060800000,0.5210851037874468],[762480000000,0.5229669301072859],[765158400000,0.5252596355362604],[767750400000,0.5272811607532055],[770428800000,0.5295409958534492],[773020800000,0.5318747891933372],[775699200000,0.5342414528619559],[778377600000,0.5366492044414882],[780969600000,0.5389829977813761],[783648000000,0.5411031339845138],[786240000000,0.5431164416192763],[788918400000,0.5450886613431253],[791596800000,0.5469458349164164],[794016000000,0.5487947909075248],[796694400000,0.5509313622750278],[799286400000,0.552928234745425],[801964800000,0.5551634170991204],[804556800000,0.5575218631855565],[807235200000,0.5598720916898099],[809913600000,0.5624113245842653],[812505600000,0.5649094695678074],[815184000000,0.5670378233531278],[817776000000,0.5689114320907843],[820454400000,0.5706206891847867],[823132800000,0.5723710341897027],[825638400000,0.5742692956739074],[828316800000,0.5763894318770449],[830908800000,0.5784849153336346],[833587200000,0.5807694031804262],[836179200000,0.5830785437737661],[838857600000,0.5856177766682217],[841536000000,0.5881487919804945],[844128000000,0.5905894138887576],[846806400000,0.5930300357970207],[849398400000,0.5950597785961486],[852076800000,0.596990910409084],[854755200000,0.5988398664001925],[857174400000,0.6007792157953106],[859852800000,0.6029322223271791],[862444800000,0.6050605761124994],[865123200000,0.6073614991236566],[867715200000,0.6097445979566407],[870393600000,0.6124153121660195],[873072000000,0.615012068135754],[875664000000,0.6174691252083826],[878342400000,0.6197207427264435],[880934400000,0.6217422679433887],[883612800000,0.6238295338177955],[886291200000,0.6255716612405288],[888710400000,0.6272891359167139],[891388800000,0.6294010545376688],[893980800000,0.6315376259051719],[896659200000,0.6337728082588674],[899251200000,0.6360655136878418],[901929600000,0.6385554410892011],[904608000000,0.6409878454152815],[907200000000,0.6433627266660831],[909878400000,0.645614344184144],[912470400000,0.6476605221476373],[915148800000,0.6498299638438712],[917827200000,0.6514899154447773],[920246400000,0.6531827373744143],[922924800000,0.6552617856666385],[925516800000,0.6574476625272377],[928195200000,0.6597814558671258],[930787200000,0.6621974250288407],[933465600000,0.6647202227589308],[936144000000,0.6671937149959248],[938736000000,0.669658989650736],[941414400000,0.6718613016757007],[944006400000,0.6738746093104632],[946684800000,0.6760111806779663],[949363200000,0.6777697432650649],[951868800000,0.6795693937630771],[954547200000,0.6815744838156569],[957139200000,0.6834152222245826],[959817600000,0.6854614001880759],[962409600000,0.6875897539733963],[965088000000,0.689792065998361],[967766400000,0.6920847714273354],[970358400000,0.6942953010344828],[973036800000,0.6963661317445242],[975628800000,0.6983630042149213],[978307200000,0.700203742623847],[980985600000,0.7019869579574938],[983404800000,0.7037373029624097],[986083200000,0.7056355644466143],[988675200000,0.7075173907664536],[991353600000,0.709588221476495],[993945600000,0.7116179642756228],[996624000000,0.7137627532253087],[999302400000,0.7160061531611869],[1001894400000,0.7181016366177764],[1004572800000,0.7200985090881735],[1007164800000,0.7219803354080127],[1009843200000,0.7237717683238422],[1012521600000,0.7254645902534792],[1014940800000,0.7270752363612892],[1017619200000,0.728776275873109],[1020211200000,0.7306334494464001],[1022889600000,0.7326138867524318],[1025481600000,0.7345943240584635],[1028160000000,0.736689807515053],[1030838400000,0.7388099437181906],[1033430400000,0.7408807744282321],[1036108800000,0.7428201238233502],[1038700800000,0.7445211633351699],[1041379200000,0.7462057676826243],[1044057600000,0.7478164137904343],[1046476800000,0.7494352774804269],[1049155200000,0.7511938400675257],[1051747200000,0.7530099257299032],[1054425600000,0.7549657102893867],[1057017600000,0.7569050596845049],[1059696000000,0.7589758903945464],[1062374400000,0.7610220683580396],[1064966400000,0.7631011166502638],[1067644800000,0.7650158132988338],[1070236800000,0.7666675473175574],[1072915200000,0.7681795824391749],[1075593600000,0.7696258769033308],[1078099200000,0.7712118702645927],[1080777600000,0.7730033031804222],[1083369600000,0.7747947360962517],[1086048000000,0.7766519096695428],[1088640000000,0.7786241293933918],[1091318400000,0.780727830432164],[1093996800000,0.7827986611422054],[1096588800000,0.7849270149275257],[1099267200000,0.7868663643226439],[1101859200000,0.7887399730603004],[1104537600000,0.7905478411404954],[1107216000000,0.7921173993373918],[1109635200000,0.7936129992946439],[1112313600000,0.7952811684777329],[1114905600000,0.7970397310648315],[1117584000000,0.7989462101312189],[1120176000000,0.8010006056768949],[1122854400000,0.8030878715513017],[1125532800000,0.8052819659940837],[1128124800000,0.8074596252725003],[1130803200000,0.8093907570854357],[1133395200000,0.8112314954943615],[1136073600000,0.8130064932458255],[1138752000000,0.8147075327576453],[1141171200000,0.8164003546872822],[1143849600000,0.8182164403496599],[1146441600000,0.8199832205189412],[1149120000000,0.8219800929893384],[1151712000000,0.8240920116102932],[1154390400000,0.8262861060530753],[1157068800000,0.8286774224682422],[1159660800000,0.830986563061582],[1162339200000,0.8331149168469023],[1164931200000,0.8351364420638475],[1167609600000,0.8370593562946003],[1170288000000,0.8389329650322568],[1172707200000,0.840732615530269],[1175385600000,0.842647312178839],[1177977600000,0.8445291384986783],[1180656000000,0.8466328395374505],[1183248000000,0.8488104988158671],[1185926400000,0.8509717229299182],[1188604800000,0.8532644283588927],[1191196800000,0.8554092173085784],[1193875200000,0.8574389601077064],[1196467200000,0.8593536567562764],[1199145600000,0.8611533072542885],[1201824000000,0.8628379116017428],[1204329600000,0.8644485577095529],[1207008000000,0.8661742499679207],[1209600000000,0.8678670718975577],[1212278400000,0.8697817685461278],[1214870400000,0.8717704234343422],[1217548800000,0.8738001662334701],[1220227200000,0.8759696079297039],[1222819200000,0.8779829155644665],[1225497600000,0.8798893946308538],[1228089600000,0.8816808275466833],[1230768000000,0.8833572143119549],[1233446400000,0.8849514252553995],[1235865600000,0.8864798955413824],[1238544000000,0.8881151943957406],[1241136000000,0.8897340580857332],[1243814400000,0.8915583613302935],[1246406400000,0.8934730579788636],[1249084800000,0.8954945831958088],[1251763200000,0.8976393721454945],[1254355200000,0.8996362446158916],[1257033600000,0.9015180709357309],[1259625600000,0.9032848511050122],[1262304000000,0.904928367541553],[1264982400000,0.9065225784849976],[1267401600000,0.9080428311887979],[1270080000000,0.9078719958728018],[1272672000000,0.9093334271233382],[1275350400000,0.9108080640284419],[1277942400000,0.9124285383645424],[1280620800000,0.9141712985411042],[1283299200000,0.9159684098062219],[1285891200000,0.9178049736833985],[1288569600000,0.9194140255802654],[1291161600000,0.9209420110288995],[1293840000000,0.9224132458549796],[1296518400000,0.9236675447290189],[1298937600000,0.924916847313091],[1301616000000,0.9263206897476913],[1304208000000,0.9277245979229488],[1306886400000,0.9292378081588184],[1309478400000,0.9309292002291556],[1312156800000,0.9326410705142923],[1314835200000,0.9344797627452546],[1317427200000,0.9362468798354051],[1320105600000,0.9377701237391198],[1322697600000,0.9392508416550392],[1325376000000,0.9406763209835264],[1328054400000,0.9419566038524274],[1330560000000,0.9432746382938756],[1333238400000,0.9446532034456815],[1335830400000,0.9459959810270823],[1338508800000,0.9475331948205072],[1341100800000,0.9491207659575486],[1343779200000,0.9508592365562104],[1346457600000,0.9527033277386666],[1349049600000,0.9544062490768062],[1351728000000,0.9560488204913961],[1354320000000,0.9575188555504774],[1356998400000,0.9588077257927593],[1359676800000,0.959880514711547],[1362096000000,0.9610480770056479],[1364774400000,0.9623269875383242],[1367366400000,0.9636894544466343],[1370044800000,0.9652293307366872],[1372636800000,0.9667720667453391],[1375315200000,0.968592663860335],[1377993600000,0.9704481774820253],[1380585600000,0.972224366782906],[1383264000000,0.9739151836224904],[1385856000000,0.9754233153925709],[1388534400000,0.9769219722903952],[1391212800000,0.9782364567363403],[1393632000000,0.9795785522584196],[1396310400000,0.9809920996575775],[1398902400000,0.9824736228965508],[1401580800000,0.9840731506156676],[1404172800000,0.9857020068855945],[1406851200000,0.9876037033191516],[1409529600000,0.989506155770269],[1412121600000,0.9913833638089218],[1414800000000,0.9931129594188262],[1417392000000,0.9946081320618051],[1420070400000,0.9961077504167446],[1422748800000,0.9973064080418247],[1425168000000,0.9985906106974269],[1427846400000,1]]},{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[-79056000000,0.6887417218543045],[-76377600000,0.6887417218543045],[-73699200000,0.6423841059602647],[-71107200000,0.7086092715231787],[-68428800000,0.7019867549668874],[-65836800000,0.6357615894039735],[-63158400000,0.6291390728476821],[-60480000000,0.6688741721854305],[-57974400000,0.6291390728476821],[-55296000000,0.6688741721854305],[-52704000000,0.6490066225165563],[-50025600000,0.6291390728476821],[-47433600000,0.5629139072847682],[-44755200000,0.5496688741721855],[-42076800000,0.5562913907284767],[-39484800000,0.5695364238410596],[-36806400000,0.5562913907284767],[-34214400000,0.5894039735099337],[-31536000000,0.5364238410596027],[-28857600000,0.4966887417218542],[-26438400000,0.5298013245033112],[-23760000000,0.4966887417218542],[-21168000000,0.5231788079470198],[-18489600000,0.5894039735099337],[-15897600000,0.6357615894039735],[-13219200000,0.6158940397350994],[-10540800000,0.6225165562913906],[-7948800000,0.6092715231788078],[-5270400000,0.6225165562913906],[-2678400000,0.6357615894039735],[0,0.6357615894039735],[2678400000,0.6291390728476821],[5097600000,0.6754966887417218],[7776000000,0.7350993377483444],[10368000000,0.6754966887417218],[13046400000,0.6688741721854305],[15638400000,0.7483443708609271],[18316800000,0.7417218543046357],[20995200000,0.7086092715231787],[23587200000,0.7218543046357614],[26265600000,0.7549668874172184],[28857600000,0.7284768211920529],[31536000000,0.7350993377483444],[34214400000,0.7350993377483444],[36633600000,0.7483443708609271],[39312000000,0.7284768211920529],[41904000000,0.7549668874172184],[44582400000,0.8278145695364237],[47174400000,0.7682119205298014],[49852800000,0.7549668874172184],[52531200000,0.7350993377483444],[55123200000,0.7350993377483444],[57801600000,0.7218543046357614],[60393600000,0.7152317880794702],[63072000000,0.6821192052980132],[65750400000,0.7019867549668874],[68256000000,0.6357615894039735],[70934400000,0.6158940397350994],[73526400000,0.6291390728476821],[76204800000,0.6291390728476821],[78796800000,0.6291390728476821],[81475200000,0.6490066225165563],[84153600000,0.662251655629139],[86745600000,0.7152317880794702],[89424000000,0.7549668874172184],[92016000000,0.7615894039735098],[94694400000,0.6754966887417218],[97372800000,0.6821192052980132],[99792000000,0.6953642384105959],[102470400000,0.7284768211920529],[105062400000,0.7284768211920529],[107740800000,0.7549668874172184],[110332800000,0.7284768211920529],[113011200000,0.7748344370860926],[115689600000,0.7218543046357614],[118281600000,0.8079470198675496],[120960000000,0.8079470198675496],[123552000000,0.8344370860927153],[126230400000,0.8013245033112583],[128908800000,0.7947019867549668],[131328000000,0.7417218543046357],[134006400000,0.7218543046357614],[136598400000,0.7019867549668874],[139276800000,0.7019867549668874],[141868800000,0.7019867549668874],[144547200000,0.6556291390728475],[147225600000,0.7086092715231787],[149817600000,0.7417218543046357],[152496000000,0.7682119205298014],[155088000000,0.7814569536423841],[157766400000,0.7284768211920529],[160444800000,0.6821192052980132],[162864000000,0.6953642384105959],[165542400000,0.7947019867549668],[168134400000,1],[170812800000,0.8013245033112583],[173404800000,0.6887417218543045],[176083200000,0.7152317880794702],[178761600000,0.7152317880794702],[181353600000,0.7417218543046357],[184032000000,0.6953642384105959],[186624000000,0.6490066225165563],[189302400000,0.6291390728476821],[191980800000,0.6688741721854305],[194486400000,0.662251655629139],[197164800000,0.6291390728476821],[199756800000,0.6688741721854305],[202435200000,0.6092715231788078],[205027200000,0.6291390728476821],[207705600000,0.6291390728476821],[210384000000,0.6092715231788078],[212976000000,0.5894039735099337],[215654400000,0.6092715231788078],[218246400000,0.5562913907284767],[220924800000,0.5562913907284767],[223603200000,0.4701986754966888],[226022400000,0.5496688741721855],[228700800000,0.5496688741721855],[231292800000,0.5364238410596027],[233971200000,0.5562913907284767],[236563200000,0.5496688741721855],[239241600000,0.5761589403973509],[241920000000,0.5894039735099337],[244512000000,0.5827814569536424],[247190400000,0.5960264900662251],[249782400000,0.6092715231788078],[252460800000,0.6423841059602647],[255139200000,0.5894039735099337],[257558400000,0.5827814569536424],[260236800000,0.5695364238410596],[262828800000,0.5364238410596027],[265507200000,0.5165562913907285],[268099200000,0.5761589403973509],[270777600000,0.5496688741721855],[273456000000,0.5562913907284767],[276048000000,0.5629139072847682],[278726400000,0.5496688741721855],[281318400000,0.5430463576158939],[283996800000,0.5894039735099337],[286675200000,0.5894039735099337],[289094400000,0.5960264900662251],[291772800000,0.5827814569536424],[294364800000,0.5364238410596027],[297043200000,0.509933774834437],[299635200000,0.5562913907284767],[302313600000,0.4966887417218542],[304992000000,0.4768211920529801],[307584000000,0.4966887417218542],[310262400000,0.4966887417218542],[312854400000,0.5231788079470198],[315532800000,0.509933774834437],[318211200000,0.5231788079470198],[320716800000,0.5298013245033112],[323395200000,0.6026490066225166],[325987200000,0.6092715231788078],[328665600000,0.5960264900662251],[331257600000,0.6026490066225166],[333936000000,0.6026490066225166],[336614400000,0.6291390728476821],[339206400000,0.6026490066225166],[341884800000,0.6225165562913906],[344476800000,0.6092715231788078],[347155200000,0.5761589403973509],[349833600000,0.5695364238410596],[352252800000,0.5695364238410596],[354931200000,0.5761589403973509],[357523200000,0.5827814569536424],[360201600000,0.5695364238410596],[362793600000,0.6688741721854305],[365472000000,0.6490066225165563],[368150400000,0.6754966887417218],[370742400000,0.7152317880794702],[373420800000,0.7284768211920529],[376012800000,0.6821192052980132],[378691200000,0.6953642384105959],[381369600000,0.6556291390728475],[383788800000,0.662251655629139],[386467200000,0.7086092715231787],[389059200000,0.6688741721854305],[391737600000,0.6688741721854305],[394329600000,0.6821192052980132],[397008000000,0.6887417218543045],[399686400000,0.6357615894039735],[402278400000,0.6026490066225166],[404956800000,0.5761589403973509],[407548800000,0.5761589403973509],[410227200000,0.5894039735099337],[412905600000,0.5894039735099337],[415324800000,0.5562913907284767],[418003200000,0.5364238410596027],[420595200000,0.509933774834437],[423273600000,0.4569536423841059],[425865600000,0.4900662251655628],[428544000000,0.4635761589403973],[431222400000,0.4900662251655628],[433814400000,0.4966887417218542],[436492800000,0.5364238410596027],[439084800000,0.5231788079470198],[441763200000,0.5165562913907285],[444441600000,0.6291390728476821],[446947200000,0.6158940397350994],[449625600000,0.6158940397350994],[452217600000,0.5894039735099337],[454896000000,0.5894039735099337],[457488000000,0.6225165562913906],[460166400000,0.6357615894039735],[462844800000,0.6357615894039735],[465436800000,0.6291390728476821],[468115200000,0.5761589403973509],[470707200000,0.5960264900662251],[473385600000,0.5364238410596027],[476064000000,0.4569536423841059],[478483200000,0.4304635761589403],[481161600000,0.509933774834437],[483753600000,0.5894039735099337],[486432000000,0.4900662251655628],[489024000000,0.4569536423841059],[491702400000,0.3973509933774834],[494380800000,0.3377483443708609],[496972800000,0.4569536423841059],[499651200000,0.4503311258278145],[502243200000,0.423841059602649],[504921600000,0.423841059602649],[507600000000,0.4701986754966888],[510019200000,0.509933774834437],[512697600000,0.4966887417218542],[515289600000,0.4701986754966888],[517968000000,0.4768211920529801],[520560000000,0.4701986754966888],[523238400000,0.4503311258278145],[525916800000,0.3311258278145695],[528508800000,0.4105960264900662],[531187200000,0.4370860927152318],[533779200000,0.3178807947019867],[536457600000,0.4966887417218542],[539136000000,0.4172185430463576],[541555200000,0.4172185430463576],[544233600000,0.152317880794702],[546825600000,0.3973509933774834],[549504000000,0.3642384105960265],[552096000000,0.3509933774834437],[554774400000,0.3311258278145695],[557452800000,0.357615894039735],[560044800000,0.4039735099337748],[562723200000,0.4172185430463576],[565315200000,0.4304635761589403],[567993600000,0.390728476821192],[570672000000,0.423841059602649],[573177600000,0.3973509933774834],[575856000000,0.4370860927152318],[578448000000,0.4105960264900662],[581126400000,0.4105960264900662],[583718400000,0.423841059602649],[586396800000,0.4105960264900662],[589075200000,0.4437086092715232],[591667200000,0.423841059602649],[594345600000,0.4105960264900662],[596937600000,0.4039735099337748],[599616000000,0.4172185430463576],[602294400000,0.4503311258278145],[604713600000,0.4834437086092714],[607392000000,0.4105960264900662],[609984000000,0.390728476821192],[612662400000,0.3973509933774834],[615254400000,0.3973509933774834],[617932800000,0.357615894039735],[620611200000,0.390728476821192],[623203200000,0.4172185430463576],[625881600000,0.423841059602649],[628473600000,0.3708609271523178],[631152000000,0.3841059602649006],[633830400000,0.423841059602649],[636249600000,0.4039735099337748],[638928000000,0.4370860927152318],[641520000000,0.4304635761589403],[644198400000,0.423841059602649],[646790400000,0.4304635761589403],[649468800000,0.390728476821192],[652147200000,0.390728476821192],[654739200000,0.3708609271523178],[657417600000,0.3774834437086093],[660009600000,0.4370860927152318],[662688000000,0.4701986754966888],[665366400000,0.4370860927152318],[667785600000,0.3841059602649006],[670464000000,0.423841059602649],[673056000000,0.4105960264900662],[675734400000,0.4437086092715232],[678326400000,0.3973509933774834],[681004800000,0.423841059602649],[683683200000,0.4370860927152318],[686275200000,0.4701986754966888],[688953600000,0.4503311258278145],[691545600000,0.4966887417218542],[694224000000,0.4768211920529801],[696902400000,0.5033112582781457],[699408000000,0.4966887417218542],[702086400000,0.509933774834437],[704678400000,0.509933774834437],[707356800000,0.5231788079470198],[709948800000,0.4900662251655628],[712627200000,0.4966887417218542],[715305600000,0.4304635761589403],[717897600000,0.3841059602649006],[720576000000,0.3841059602649006],[723168000000,0.5562913907284767],[725846400000,0.423841059602649],[728524800000,0.4437086092715232],[730944000000,0.4437086092715232],[733622400000,0.4304635761589403],[736214400000,0.4039735099337748],[738892800000,0.3708609271523178],[741484800000,0.357615894039735],[744163200000,0.3642384105960265],[746841600000,0.3112582781456953],[749433600000,0.271523178807947],[752112000000,0.271523178807947],[754704000000,0.4569536423841059],[757382400000,0.3245033112582781],[760060800000,0.2847682119205298],[762480000000,0.3046357615894039],[765158400000,0.2781456953642384],[767750400000,0.357615894039735],[770428800000,0.3112582781456953],[773020800000,0.3178807947019867],[775699200000,0.2847682119205298],[778377600000,0.3046357615894039],[780969600000,0.3245033112582781],[783648000000,0.3178807947019867],[786240000000,0.3311258278145695],[788918400000,0.3509933774834437],[791596800000,0.3708609271523178],[794016000000,0.3509933774834437],[796694400000,0.3112582781456953],[799286400000,0.3245033112582781],[801964800000,0.2980132450331126],[804556800000,0.3245033112582781],[807235200000,0.2980132450331126],[809913600000,0.3046357615894039],[812505600000,0.3245033112582781],[815184000000,0.2913907284768211],[817776000000,0.2582781456953642],[820454400000,0.2980132450331126],[823132800000,0.2980132450331126],[825638400000,0.2913907284768211],[828316800000,0.2317880794701987],[830908800000,0.2980132450331126],[833587200000,0.3245033112582781],[836179200000,0.2980132450331126],[838857600000,0.2913907284768211],[841536000000,0.2980132450331126],[844128000000,0.2781456953642384],[846806400000,0.2781456953642384],[849398400000,0.2781456953642384],[852076800000,0.2649006622516556],[854755200000,0.2649006622516556],[857174400000,0.2781456953642384],[859852800000,0.2847682119205298],[862444800000,0.3046357615894039],[865123200000,0.2913907284768211],[867715200000,0.2582781456953642],[870393600000,0.2516556291390728],[873072000000,0.2649006622516556],[875664000000,0.2649006622516556],[878342400000,0.2781456953642384],[880934400000,0.2781456953642384],[883612800000,0.3443708609271523],[886291200000,0.3443708609271523],[888710400000,0.3509933774834437],[891388800000,0.3311258278145695],[893980800000,0.3112582781456953],[896659200000,0.3046357615894039],[899251200000,0.3112582781456953],[901929600000,0.3046357615894039],[904608000000,0.2781456953642384],[907200000000,0.2649006622516556],[909878400000,0.271523178807947],[912470400000,0.23841059602649],[915148800000,0.2781456953642384],[917827200000,0.2649006622516556],[920246400000,0.2450331125827815],[922924800000,0.1986754966887417],[925516800000,0.1788079470198675],[928195200000,0.1721854304635761],[930787200000,0.1721854304635761],[933465600000,0.1655629139072848],[936144000000,0.1324503311258278],[938736000000,0.1589403973509933],[941414400000,0.1721854304635761],[944006400000,0.1456953642384106],[946684800000,0.2119205298013245],[949363200000,0.1721854304635761],[951868800000,0.152317880794702],[954547200000,0.1854304635761589],[957139200000,0.1788079470198675],[959817600000,0.1788079470198675],[962409600000,0.1986754966887417],[965088000000,0.1986754966887417],[967766400000,0.152317880794702],[970358400000,0.1589403973509933],[973036800000,0.152317880794702],[975628800000,0.1324503311258278],[978307200000,0.1721854304635761],[980985600000,0.1788079470198675],[983404800000,0.2052980132450331],[986083200000,0.1854304635761589],[988675200000,0.152317880794702],[991353600000,0.152317880794702],[993945600000,0.2251655629139072],[996624000000,0.3046357615894039],[999302400000,0.3178807947019867],[1001894400000,0.07947019867549666],[1004572800000,0.1258278145695364],[1007164800000,0.152317880794702],[1009843200000,0.2582781456953642],[1012521600000,0.23841059602649],[1014940800000,0.2450331125827815],[1017619200000,0.23841059602649],[1020211200000,0.2847682119205298],[1022889600000,0.2781456953642384],[1025481600000,0.2185430463576159],[1028160000000,0.2119205298013245],[1030838400000,0.2317880794701987],[1033430400000,0.2317880794701987],[1036108800000,0.2317880794701987],[1038700800000,0.2185430463576159],[1041379200000,0.2185430463576159],[1044057600000,0.2251655629139072],[1046476800000,0.2052980132450331],[1049155200000,0.2052980132450331],[1051747200000,0.23841059602649],[1054425600000,0.2251655629139072],[1057017600000,0.271523178807947],[1059696000000,0.2516556291390728],[1062374400000,0.1986754966887417],[1064966400000,0.2052980132450331],[1067644800000,0.2119205298013245],[1070236800000,0.2119205298013245],[1072915200000,0.1854304635761589],[1075593600000,0.1854304635761589],[1078099200000,0.1788079470198675],[1080777600000,0.2052980132450331],[1083369600000,0.2052980132450331],[1086048000000,0.23841059602649],[1088640000000,0.2052980132450331],[1091318400000,0.1986754966887417],[1093996800000,0.1589403973509933],[1096588800000,0.152317880794702],[1099267200000,0.1258278145695364],[1101859200000,0.3112582781456953],[1104537600000,0.09933774834437085],[1107216000000,0.07947019867549666],[1109635200000,0.09271523178807946],[1112313600000,0.0596026490066225],[1114905600000,0.08609271523178806],[1117584000000,0.04635761589403972],[1120176000000,0],[1122854400000,0.03311258278145695],[1125532800000,0.03311258278145695],[1128124800000,0.0596026490066225],[1130803200000,0.08609271523178806],[1133395200000,0.09933774834437085],[1136073600000,0.1324503311258278],[1138752000000,0.1324503311258278],[1141171200000,0.1324503311258278],[1143849600000,0.119205298013245],[1146441600000,0.1059602649006622],[1149120000000,0.119205298013245],[1151712000000,0.07947019867549666],[1154390400000,0.09271523178807946],[1157068800000,0.09271523178807946],[1159660800000,0.09271523178807946],[1162339200000,0.1125827814569536],[1164931200000,0.09933774834437085],[1167609600000,0.09933774834437085],[1170288000000,0.1258278145695364],[1172707200000,0.1456953642384106],[1175385600000,0.1324503311258278],[1177977600000,0.119205298013245],[1180656000000,0.1059602649006622],[1183248000000,0.09933774834437085],[1185926400000,0.07947019867549666],[1188604800000,0.08609271523178806],[1191196800000,0.07947019867549666],[1193875200000,0.0596026490066225],[1196467200000,0.09271523178807946],[1199145600000,0.09933774834437085],[1201824000000,0.1258278145695364],[1204329600000,0.119205298013245],[1207008000000,0.07947019867549666],[1209600000000,0.3708609271523178],[1212278400000,0.2185430463576159],[1214870400000,0.1456953642384106],[1217548800000,0.1059602649006622],[1220227200000,0.1655629139072848],[1222819200000,0.2185430463576159],[1225497600000,0.2781456953642384],[1228089600000,0.2781456953642384],[1230768000000,0.2649006622516556],[1233446400000,0.2185430463576159],[1235865600000,0.2450331125827815],[1238544000000,0.3046357615894039],[1241136000000,0.3973509933774834],[1243814400000,0.2980132450331126],[1246406400000,0.2516556291390728],[1249084800000,0.1788079470198675],[1251763200000,0.2450331125827815],[1254355200000,0.2119205298013245],[1257033600000,0.2450331125827815],[1259625600000,0.2450331125827815],[1262304000000,0.2582781456953642],[1264982400000,0.23841059602649],[1267401600000,0.2317880794701987],[1270080000000,0.2781456953642384],[1272672000000,0.3178807947019867],[1275350400000,0.3112582781456953],[1277942400000,0.3046357615894039],[1280620800000,0.3112582781456953],[1283299200000,0.2980132450331126],[1285891200000,0.2913907284768211],[1288569600000,0.2913907284768211],[1291161600000,0.3245033112582781],[1293840000000,0.3443708609271523],[1296518400000,0.357615894039735],[1298937600000,0.3178807947019867],[1301616000000,0.3112582781456953],[1304208000000,0.3112582781456953],[1306886400000,0.3311258278145695],[1309478400000,0.3377483443708609],[1312156800000,0.3311258278145695],[1314835200000,0.3046357615894039],[1317427200000,0.3046357615894039],[1320105600000,0.3178807947019867],[1322697600000,0.3708609271523178],[1325376000000,0.3841059602649006],[1328054400000,0.3841059602649006],[1330560000000,0.4172185430463576],[1333238400000,0.4304635761589403],[1335830400000,0.4370860927152318],[1338508800000,0.4569536423841059],[1341100800000,0.3973509933774834],[1343779200000,0.3841059602649006],[1346457600000,0.3973509933774834],[1349049600000,0.4370860927152318],[1351728000000,0.4966887417218542],[1354320000000,0.6490066225165563],[1356998400000,0.271523178807947],[1359676800000,0.23841059602649],[1362096000000,0.2450331125827815],[1364774400000,0.2781456953642384],[1367366400000,0.2980132450331126],[1370044800000,0.3046357615894039],[1372636800000,0.2913907284768211],[1375315200000,0.2980132450331126],[1377993600000,0.3046357615894039],[1380585600000,0.271523178807947],[1383264000000,0.2649006622516556],[1385856000000,0.2781456953642384],[1388534400000,0.3245033112582781],[1391212800000,0.3377483443708609],[1393632000000,0.3443708609271523],[1396310400000,0.3443708609271523],[1398902400000,0.3443708609271523],[1401580800000,0.3443708609271523],[1404172800000,0.3509933774834437],[1406851200000,0.3311258278145695],[1409529600000,0.3443708609271523],[1412121600000,0.3311258278145695],[1414800000000,0.3377483443708609],[1417392000000,0.357615894039735],[1420070400000,0.3642384105960265],[1422748800000,0.3774834437086093],[1425168000000,0.3443708609271523],[1427846400000,0.357615894039735]]},{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,0.02358490566037736],[-76377600000,0.03301886792452831],[-73699200000,0.02830188679245281],[-71107200000,0.04245283018867926],[-68428800000,0.03301886792452831],[-65836800000,0.03773584905660377],[-63158400000,0.05188679245283017],[-60480000000,0.02358490566037736],[-57974400000,0.004716981132075455],[-55296000000,0.02830188679245281],[-52704000000,0.0188679245283019],[-50025600000,0.0188679245283019],[-47433600000,0.02358490566037736],[-44755200000,0.009433962264150952],[-42076800000,0.02830188679245281],[-39484800000,0.03773584905660377],[-36806400000,0.0188679245283019],[-34214400000,0.0188679245283019],[-31536000000,0.0188679245283019],[-28857600000,0.04245283018867926],[-26438400000,0],[-23760000000,0],[-21168000000,0.009433962264150952],[-18489600000,0.0188679245283019],[-15897600000,0.0188679245283019],[-13219200000,0.0188679245283019],[-10540800000,0.03301886792452831],[-7948800000,0.02358490566037736],[-5270400000,0.03773584905660377],[-2678400000,0.02830188679245281],[0,0.02830188679245281],[2678400000,0.02358490566037736],[5097600000,0.02830188679245281],[7776000000,0.004716981132075455],[10368000000,0.03301886792452831],[13046400000,0.04245283018867926],[15638400000,0.05188679245283017],[18316800000,0.06603773584905662],[20995200000,0.05660377358490567],[23587200000,0.05660377358490567],[26265600000,0.07547169811320753],[28857600000,0.08962264150943398],[31536000000,0.1037735849056604],[34214400000,0.1084905660377358],[36633600000,0.1132075471698113],[39312000000,0.1179245283018868],[41904000000,0.1273584905660377],[44582400000,0.08018867924528303],[47174400000,0.1037735849056604],[49852800000,0.1132075471698113],[52531200000,0.08490566037735849],[55123200000,0.1179245283018868],[57801600000,0.1132075471698113],[60393600000,0.1037735849056604],[63072000000,0.1037735849056604],[65750400000,0.1226415094339623],[68256000000,0.1226415094339623],[70934400000,0.1273584905660377],[73526400000,0.1226415094339623],[76204800000,0.06603773584905662],[78796800000,0.0990566037735849],[81475200000,0.09433962264150944],[84153600000,0.07547169811320753],[86745600000,0.08018867924528303],[89424000000,0.08018867924528303],[92016000000,0.0990566037735849],[94694400000,0.08018867924528303],[97372800000,0.05660377358490567],[99792000000,0.07075471698113207],[102470400000,0.04716981132075472],[105062400000,0.04245283018867926],[107740800000,0.04716981132075472],[110332800000,0.05660377358490567],[113011200000,0.04245283018867926],[115689600000,0.06603773584905662],[118281600000,0.07075471698113207],[120960000000,0.05188679245283017],[123552000000,0.03301886792452831],[126230400000,0.04716981132075472],[128908800000,0.05188679245283017],[131328000000,0.03773584905660377],[134006400000,0.04716981132075472],[136598400000,0.02830188679245281],[139276800000,0.06132075471698113],[141868800000,0.08018867924528303],[144547200000,0.04716981132075472],[147225600000,0.06132075471698113],[149817600000,0.07075471698113207],[152496000000,0.05660377358490567],[155088000000,0.08018867924528303],[157766400000,0.1084905660377358],[160444800000,0.1462264150943396],[162864000000,0.1509433962264151],[165542400000,0.2216981132075471],[168134400000,0.2547169811320755],[170812800000,0.2264150943396227],[173404800000,0.2169811320754717],[176083200000,0.2452830188679245],[178761600000,0.2452830188679245],[181353600000,0.2169811320754717],[184032000000,0.2594339622641509],[186624000000,0.2358490566037736],[189302400000,0.2358490566037736],[191980800000,0.1981132075471698],[194486400000,0.2216981132075471],[197164800000,0.1981132075471698],[199756800000,0.2028301886792453],[202435200000,0.1792452830188679],[205027200000,0.1745283018867925],[207705600000,0.1839622641509434],[210384000000,0.1792452830188679],[212976000000,0.1745283018867925],[215654400000,0.2075471698113208],[218246400000,0.1886792452830189],[220924800000,0.1650943396226415],[223603200000,0.1509433962264151],[226022400000,0.1509433962264151],[228700800000,0.1556603773584906],[231292800000,0.1839622641509434],[233971200000,0.1037735849056604],[236563200000,0.1462264150943396],[239241600000,0.1415094339622641],[241920000000,0.1273584905660377],[244512000000,0.1367924528301887],[247190400000,0.1415094339622641],[249782400000,0.1320754716981132],[252460800000,0.1179245283018868],[255139200000,0.1273584905660377],[257558400000,0.1037735849056604],[260236800000,0.0990566037735849],[262828800000,0.08018867924528303],[265507200000,0.09433962264150944],[268099200000,0.08490566037735849],[270777600000,0.08490566037735849],[273456000000,0.07547169811320753],[276048000000,0.08962264150943398],[278726400000,0.07075471698113207],[281318400000,0.07547169811320753],[283996800000,0.08962264150943398],[286675200000,0.08962264150943398],[289094400000,0.08962264150943398],[291772800000,0.06603773584905662],[294364800000,0.07547169811320753],[297043200000,0.07547169811320753],[299635200000,0.08962264150943398],[302313600000,0.03773584905660377],[304992000000,0.07075471698113207],[307584000000,0.07075471698113207],[310262400000,0.06132075471698113],[312854400000,0.08018867924528303],[315532800000,0.06132075471698113],[318211200000,0.08490566037735849],[320716800000,0.09433962264150944],[323395200000,0.08490566037735849],[325987200000,0.08018867924528303],[328665600000,0.1132075471698113],[331257600000,0.1415094339622641],[333936000000,0.1650943396226415],[336614400000,0.1745283018867925],[339206400000,0.1650943396226415],[341884800000,0.1745283018867925],[344476800000,0.1650943396226415],[347155200000,0.1603773584905661],[349833600000,0.1462264150943396],[352252800000,0.1462264150943396],[354931200000,0.1603773584905661],[357523200000,0.1367924528301887],[360201600000,0.1226415094339623],[362793600000,0.1462264150943396],[365472000000,0.1509433962264151],[368150400000,0.1320754716981132],[370742400000,0.1320754716981132],[373420800000,0.1367924528301887],[376012800000,0.1367924528301887],[378691200000,0.1462264150943396],[381369600000,0.1650943396226415],[383788800000,0.1745283018867925],[386467200000,0.1933962264150943],[389059200000,0.2122641509433962],[391737600000,0.2594339622641509],[394329600000,0.2122641509433962],[397008000000,0.2216981132075471],[399686400000,0.2594339622641509],[402278400000,0.2688679245283019],[404956800000,0.2830188679245283],[407548800000,0.2924528301886792],[410227200000,0.3349056603773585],[412905600000,0.2735849056603774],[415324800000,0.3018867924528302],[418003200000,0.3254716981132076],[420595200000,0.3915094339622642],[423273600000,0.3443396226415095],[425865600000,0.2877358490566038],[428544000000,0.2500000000000001],[431222400000,0.2500000000000001],[433814400000,0.2547169811320755],[436492800000,0.2500000000000001],[439084800000,0.2216981132075471],[441763200000,0.2405660377358491],[444441600000,0.2028301886792453],[446947200000,0.2028301886792453],[449625600000,0.1981132075471698],[452217600000,0.2405660377358491],[454896000000,0.1650943396226415],[457488000000,0.1650943396226415],[460166400000,0.1556603773584906],[462844800000,0.169811320754717],[465436800000,0.1509433962264151],[468115200000,0.1509433962264151],[470707200000,0.1556603773584906],[473385600000,0.1320754716981132],[476064000000,0.1462264150943396],[478483200000,0.1462264150943396],[481161600000,0.1367924528301887],[483753600000,0.1367924528301887],[486432000000,0.1226415094339623],[489024000000,0.1367924528301887],[491702400000,0.1462264150943396],[494380800000,0.1367924528301887],[496972800000,0.1462264150943396],[499651200000,0.1415094339622641],[502243200000,0.1320754716981132],[504921600000,0.1273584905660377],[507600000000,0.1367924528301887],[510019200000,0.1320754716981132],[512697600000,0.1273584905660377],[515289600000,0.1320754716981132],[517968000000,0.1415094339622641],[520560000000,0.1367924528301887],[523238400000,0.1462264150943396],[525916800000,0.1603773584905661],[528508800000,0.1415094339622641],[531187200000,0.1462264150943396],[533779200000,0.1462264150943396],[536457600000,0.1367924528301887],[539136000000,0.1226415094339623],[541555200000,0.1226415094339623],[544233600000,0.1462264150943396],[546825600000,0.1226415094339623],[549504000000,0.1179245283018868],[552096000000,0.1179245283018868],[554774400000,0.1132075471698113],[557452800000,0.09433962264150944],[560044800000,0.1084905660377358],[562723200000,0.1037735849056604],[565315200000,0.09433962264150944],[567993600000,0.1037735849056604],[570672000000,0.1084905660377358],[573177600000,0.1132075471698113],[575856000000,0.08962264150943398],[578448000000,0.08962264150943398],[581126400000,0.08490566037735849],[583718400000,0.0990566037735849],[586396800000,0.08962264150943398],[589075200000,0.08018867924528303],[591667200000,0.07547169811320753],[594345600000,0.08018867924528303],[596937600000,0.08962264150943398],[599616000000,0.07547169811320753],[602294400000,0.06603773584905662],[604713600000,0.06603773584905662],[607392000000,0.06603773584905662],[609984000000,0.06132075471698113],[612662400000,0.06603773584905662],[615254400000,0.07547169811320753],[617932800000,0.04716981132075472],[620611200000,0.04245283018867926],[623203200000,0.04245283018867926],[625881600000,0.03773584905660377],[628473600000,0.04245283018867926],[631152000000,0.05188679245283017],[633830400000,0.06132075471698113],[636249600000,0.05188679245283017],[638928000000,0.03773584905660377],[641520000000,0.05660377358490567],[644198400000,0.05660377358490567],[646790400000,0.06603773584905662],[649468800000,0.06603773584905662],[652147200000,0.07547169811320753],[654739200000,0.08490566037735849],[657417600000,0.08018867924528303],[660009600000,0.08962264150943398],[662688000000,0.09433962264150944],[665366400000,0.1037735849056604],[667785600000,0.1273584905660377],[670464000000,0.1226415094339623],[673056000000,0.1132075471698113],[675734400000,0.1367924528301887],[678326400000,0.1415094339622641],[681004800000,0.1556603773584906],[683683200000,0.1320754716981132],[686275200000,0.1509433962264151],[688953600000,0.1650943396226415],[691545600000,0.1792452830188679],[694224000000,0.1933962264150943],[696902400000,0.1981132075471698],[699408000000,0.2028301886792453],[702086400000,0.2122641509433962],[704678400000,0.2264150943396227],[707356800000,0.2216981132075471],[709948800000,0.2169811320754717],[712627200000,0.2264150943396227],[715305600000,0.2169811320754717],[717897600000,0.2358490566037736],[720576000000,0.2358490566037736],[723168000000,0.2500000000000001],[725846400000,0.2169811320754717],[728524800000,0.2122641509433962],[730944000000,0.2122641509433962],[733622400000,0.2075471698113208],[736214400000,0.1933962264150943],[738892800000,0.2028301886792453],[741484800000,0.1981132075471698],[744163200000,0.1981132075471698],[746841600000,0.2028301886792453],[749433600000,0.1886792452830189],[752112000000,0.2028301886792453],[754704000000,0.2028301886792453],[757382400000,0.2169811320754717],[760060800000,0.2452830188679245],[762480000000,0.2500000000000001],[765158400000,0.2405660377358491],[767750400000,0.2452830188679245],[770428800000,0.2500000000000001],[773020800000,0.2358490566037736],[775699200000,0.2311320754716981],[778377600000,0.2452830188679245],[780969600000,0.2830188679245283],[783648000000,0.2358490566037736],[786240000000,0.2216981132075471],[788918400000,0.1886792452830189],[791596800000,0.1933962264150943],[794016000000,0.2028301886792453],[796694400000,0.2028301886792453],[799286400000,0.2405660377358491],[801964800000,0.1839622641509434],[804556800000,0.2122641509433962],[807235200000,0.2028301886792453],[809913600000,0.1839622641509434],[812505600000,0.1981132075471698],[815184000000,0.1886792452830189],[817776000000,0.2028301886792453],[820454400000,0.2028301886792453],[823132800000,0.1792452830188679],[825638400000,0.2028301886792453],[828316800000,0.2169811320754717],[830908800000,0.2169811320754717],[833587200000,0.2028301886792453],[836179200000,0.2028301886792453],[838857600000,0.2075471698113208],[841536000000,0.2122641509433962],[844128000000,0.2028301886792453],[846806400000,0.1745283018867925],[849398400000,0.1792452830188679],[852076800000,0.1792452830188679],[854755200000,0.1933962264150943],[857174400000,0.1839622641509434],[859852800000,0.2028301886792453],[862444800000,0.1886792452830189],[865123200000,0.1886792452830189],[867715200000,0.2028301886792453],[870393600000,0.1792452830188679],[873072000000,0.1981132075471698],[875664000000,0.1745283018867925],[878342400000,0.169811320754717],[880934400000,0.1650943396226415],[883612800000,0.1603773584905661],[886291200000,0.1415094339622641],[888710400000,0.1320754716981132],[891388800000,0.1273584905660377],[893980800000,0.09433962264150944],[896659200000,0.1367924528301887],[899251200000,0.1273584905660377],[901929600000,0.1320754716981132],[904608000000,0.1273584905660377],[907200000000,0.08490566037735849],[909878400000,0.1226415094339623],[912470400000,0.1320754716981132],[915148800000,0.1367924528301887],[917827200000,0.1320754716981132],[920246400000,0.1320754716981132],[922924800000,0.1037735849056604],[925516800000,0.1179245283018868],[928195200000,0.1084905660377358],[930787200000,0.08490566037735849],[933465600000,0.1179245283018868],[936144000000,0.09433962264150944],[938736000000,0.0990566037735849],[941414400000,0.1037735849056604],[944006400000,0.08490566037735849],[946684800000,0.08490566037735849],[949363200000,0.0990566037735849],[951868800000,0.09433962264150944],[954547200000,0.0990566037735849],[957139200000,0.08490566037735849],[959817600000,0.08018867924528303],[962409600000,0.09433962264150944],[965088000000,0.1084905660377358],[967766400000,0.05660377358490567],[970358400000,0.0990566037735849],[973036800000,0.0990566037735849],[975628800000,0.09433962264150944],[978307200000,0.08490566037735849],[980985600000,0.0990566037735849],[983404800000,0.1226415094339623],[986083200000,0.08962264150943398],[988675200000,0.1084905660377358],[991353600000,0.09433962264150944],[993945600000,0.1320754716981132],[996624000000,0.1367924528301887],[999302400000,0.1509433962264151],[1001894400000,0.1556603773584906],[1004572800000,0.1745283018867925],[1007164800000,0.1981132075471698],[1009843200000,0.2075471698113208],[1012521600000,0.2028301886792453],[1014940800000,0.2075471698113208],[1017619200000,0.2311320754716981],[1020211200000,0.2594339622641509],[1022889600000,0.3301886792452831],[1025481600000,0.2311320754716981],[1028160000000,0.2358490566037736],[1030838400000,0.2594339622641509],[1033430400000,0.2641509433962264],[1036108800000,0.2500000000000001],[1038700800000,0.2641509433962264],[1041379200000,0.2641509433962264],[1044057600000,0.2594339622641509],[1046476800000,0.2688679245283019],[1049155200000,0.2924528301886792],[1051747200000,0.2783018867924529],[1054425600000,0.3537735849056604],[1057017600000,0.2971698113207548],[1059696000000,0.2877358490566038],[1062374400000,0.2924528301886792],[1064966400000,0.3018867924528302],[1067644800000,0.2971698113207548],[1070236800000,0.3018867924528302],[1072915200000,0.3113207547169811],[1075593600000,0.2924528301886792],[1078099200000,0.2924528301886792],[1080777600000,0.2594339622641509],[1083369600000,0.2783018867924529],[1086048000000,0.3301886792452831],[1088640000000,0.2311320754716981],[1091318400000,0.2452830188679245],[1093996800000,0.2641509433962264],[1096588800000,0.2594339622641509],[1099267200000,0.2688679245283019],[1101859200000,0.2594339622641509],[1104537600000,0.2547169811320755],[1107216000000,0.2452830188679245],[1109635200000,0.2500000000000001],[1112313600000,0.2358490566037736],[1114905600000,0.2405660377358491],[1117584000000,0.2358490566037736],[1120176000000,0.2264150943396227],[1122854400000,0.2452830188679245],[1125532800000,0.2075471698113208],[1128124800000,0.2169811320754717],[1130803200000,0.2122641509433962],[1133395200000,0.2216981132075471],[1136073600000,0.2169811320754717],[1138752000000,0.2405660377358491],[1141171200000,0.2216981132075471],[1143849600000,0.2075471698113208],[1146441600000,0.2122641509433962],[1149120000000,0.1556603773584906],[1151712000000,0.1886792452830189],[1154390400000,0.2075471698113208],[1157068800000,0.1886792452830189],[1159660800000,0.1839622641509434],[1162339200000,0.2028301886792453],[1164931200000,0.1650943396226415],[1167609600000,0.2028301886792453],[1170288000000,0.2122641509433962],[1172707200000,0.2405660377358491],[1175385600000,0.2169811320754717],[1177977600000,0.1981132075471698],[1180656000000,0.1745283018867925],[1183248000000,0.2216981132075471],[1185926400000,0.2264150943396227],[1188604800000,0.2216981132075471],[1191196800000,0.2075471698113208],[1193875200000,0.2169811320754717],[1196467200000,0.2075471698113208],[1199145600000,0.2358490566037736],[1201824000000,0.2216981132075471],[1204329600000,0.2216981132075471],[1207008000000,0.2547169811320755],[1209600000000,0.1839622641509434],[1212278400000,0.2358490566037736],[1214870400000,0.2688679245283019],[1217548800000,0.2688679245283019],[1220227200000,0.2924528301886792],[1222819200000,0.3018867924528302],[1225497600000,0.2735849056603774],[1228089600000,0.3066037735849056],[1230768000000,0.3160377358490566],[1233446400000,0.3632075471698113],[1235865600000,0.3915094339622642],[1238544000000,0.4292452830188679],[1241136000000,0.4811320754716981],[1243814400000,0.6226415094339622],[1246406400000,0.5660377358490566],[1249084800000,0.5801886792452831],[1251763200000,0.6509433962264152],[1254355200000,0.7028301886792453],[1257033600000,0.7452830188679246],[1259625600000,0.7594339622641511],[1262304000000,0.7547169811320755],[1264982400000,0.75],[1267401600000,0.7735849056603773],[1270080000000,0.8537735849056605],[1272672000000,0.8632075471698114],[1275350400000,1],[1277942400000,0.8632075471698114],[1280620800000,0.8018867924528302],[1283299200000,0.768867924528302],[1285891200000,0.8113207547169812],[1288569600000,0.8018867924528302],[1291161600000,0.8443396226415094],[1293840000000,0.8254716981132075],[1296518400000,0.8066037735849058],[1298937600000,0.8254716981132075],[1301616000000,0.7971698113207547],[1304208000000,0.8301886792452832],[1306886400000,0.8679245283018867],[1309478400000,0.8490566037735849],[1312156800000,0.8679245283018867],[1314835200000,0.8490566037735849],[1317427200000,0.7830188679245284],[1320105600000,0.7924528301886793],[1322697600000,0.7783018867924528],[1325376000000,0.7924528301886793],[1328054400000,0.7405660377358491],[1330560000000,0.7169811320754716],[1333238400000,0.7122641509433963],[1335830400000,0.75],[1338508800000,0.7735849056603773],[1341100800000,0.6367924528301887],[1343779200000,0.6792452830188679],[1346457600000,0.6981132075471699],[1349049600000,0.75],[1351728000000,0.6886792452830189],[1354320000000,0.6462264150943396],[1356998400000,0.5566037735849058],[1359676800000,0.6226415094339622],[1362096000000,0.6415094339622642],[1364774400000,0.6179245283018869],[1367366400000,0.6179245283018869],[1370044800000,0.6132075471698113],[1372636800000,0.5754716981132075],[1375315200000,0.589622641509434],[1377993600000,0.589622641509434],[1380585600000,0.5801886792452831],[1383264000000,0.6179245283018869],[1385856000000,0.6273584905660378],[1388534400000,0.5377358490566038],[1391212800000,0.5613207547169812],[1393632000000,0.5566037735849058],[1396310400000,0.5518867924528301],[1398902400000,0.5],[1401580800000,0.4622641509433963],[1404172800000,0.4292452830188679],[1406851200000,0.419811320754717],[1409529600000,0.4433962264150944],[1412121600000,0.4528301886792453],[1414800000000,0.4245283018867925],[1417392000000,0.419811320754717],[1420070400000,0.4339622641509434],[1422748800000,0.419811320754717],[1425168000000,0.3773584905660378],[1427846400000,0.3537735849056604]]},{\"name\":\"unemploy\",\"type\":\"line\",\"data\":[[-79056000000,0.02044683034656983],[-76377600000,0.02052577563748323],[-73699200000,0.02155206441935738],[-71107200000,0.03615694323833583],[-68428800000,0.03007815583800426],[-65836800000,0.02628878187416121],[-63158400000,0.01523644114628562],[-60480000000,0.02494671192863346],[-57974400000,0.01515749585537223],[-55296000000,0.001894686981921528],[-52704000000,0.004341991000236836],[-50025600000,0.01997315860108944],[-47433600000,0.01563116760085261],[-44755200000,0.006552459145811952],[-42076800000,7.894529091339702e-05],[-39484800000,0.0003157811636535881],[-36806400000,0.002368358727401911],[-34214400000,0],[-31536000000,0.002605194600142102],[-28857600000,0.0005526170363937791],[-26438400000,0.002131522854661719],[-23760000000,0.005763006236677982],[-21168000000,0.002210468145575116],[-18489600000,0.01034183310965501],[-15897600000,0.01444698823715165],[-13219200000,0.01349964474619089],[-10540800000,0.02802557827425594],[-7948800000,0.02873608589247651],[-5270400000,0.01349964474619089],[-2678400000,0.01571011289176601],[0,0.04073577011131286],[2678400000,0.06062998342148891],[5097600000,0.07499802636772716],[7776000000,0.08778716349569748],[10368000000,0.09741848898713192],[13046400000,0.1094181732059683],[15638400000,0.1176284834609616],[18316800000,0.1240230520249467],[20995200000,0.1398121102076261],[23587200000,0.1504697244809347],[26265600000,0.1747059287913476],[28857600000,0.1887581905739323],[31536000000,0.1816531143917265],[34214400000,0.1751006552459146],[36633600000,0.1817320596826399],[39312000000,0.1795215915370648],[41904000000,0.1824425673008605],[44582400000,0.1787321386279308],[47174400000,0.185521433646483],[49852800000,0.1933370174469093],[52531200000,0.1860740506828768],[55123200000,0.1791268650824978],[57801600000,0.195468540301571],[60393600000,0.1949159232651772],[63072000000,0.1842583089918686],[65750400000,0.1770742875187495],[68256000000,0.1857582695192232],[70934400000,0.1795215915370648],[73526400000,0.1766006157732691],[76204800000,0.1766795610641825],[78796800000,0.1758901081550485],[81475200000,0.1779426857187969],[84153600000,0.1708376095365911],[86745600000,0.1728901871003395],[89424000000,0.1513381226809821],[92016000000,0.1466803505170917],[94694400000,0.1295492223888845],[97372800000,0.1394963290439725],[99792000000,0.1349175021709955],[102470400000,0.1400489460803663],[105062400000,0.1297860582616247],[107740800000,0.1324701981526802],[110332800000,0.1278913712797032],[113011200000,0.1278913712797032],[115689600000,0.131443909370806],[118281600000,0.1151811794426462],[120960000000,0.1350753927528223],[123552000000,0.1424173048077682],[126230400000,0.1546538248993448],[128908800000,0.1615220652088103],[131328000000,0.1538643719902108],[134006400000,0.1526012473355964],[136598400000,0.159469487645062],[139276800000,0.1769953422278361],[141868800000,0.1877319017920581],[144547200000,0.1844951448646088],[147225600000,0.2172574405936686],[149817600000,0.2240467356122207],[152496000000,0.2727559801057867],[155088000000,0.3119128443988316],[157766400000,0.38020052103892],[160444800000,0.3817004815662746],[162864000000,0.4178574248046104],[165542400000,0.4361727322965185],[168134400000,0.4537775321702061],[170812800000,0.4369621852056525],[173404800000,0.4296202731507066],[176083200000,0.4139101602589406],[178761600000,0.4135154338043736],[181353600000,0.4114628562406252],[184032000000,0.4033314912765453],[186624000000,0.3993842267308755],[189302400000,0.3828057156390621],[191980800000,0.3663850951290756],[194486400000,0.3588063472013894],[197164800000,0.3667008762927291],[199756800000,0.3448330307097182],[202435200000,0.366069313965422],[205027200000,0.3793321228388727],[207705600000,0.3815425909844478],[210384000000,0.370648140838399],[212976000000,0.3745954053840688],[215654400000,0.3895950106576143],[218246400000,0.3836741138391095],[220924800000,0.3627536117470593],[223603200000,0.375621694165943],[226022400000,0.364885134601721],[228700800000,0.3453067024551986],[231292800000,0.3336227994000158],[233971200000,0.3512275992737033],[236563200000,0.3271492855451172],[239241600000,0.3347280334728033],[241920000000,0.3209915528538723],[244512000000,0.321938896344833],[247190400000,0.3260440514723297],[249782400000,0.2921765216704824],[252460800000,0.3003078866345623],[255139200000,0.2868082418883713],[257558400000,0.2883082024157259],[260236800000,0.2759137917423226],[262828800000,0.2717296913239125],[265507200000,0.2639141075234862],[268099200000,0.2860977342701508],[270777600000,0.2680192626509829],[273456000000,0.2715718007420858],[276048000000,0.2575195389595011],[278726400000,0.2677824267782427],[281318400000,0.2797031657061656],[283996800000,0.2703086760874714],[286675200000,0.2753611747059288],[289094400000,0.2703086760874714],[291772800000,0.2671508644509355],[294364800000,0.2490723928317676],[297043200000,0.2584668824504618],[299635200000,0.2613878582142575],[302313600000,0.2869661324701981],[304992000000,0.2767032446514565],[307584000000,0.2850714454882766],[310262400000,0.2804926186152996],[312854400000,0.2873608589247652],[315532800000,0.3156232730717612],[318211200000,0.3171232335991158],[320716800000,0.3192547564537775],[323395200000,0.3689113444383043],[325987200000,0.4183310965500908],[328665600000,0.427330859714218],[331257600000,0.4482513618062682],[333936000000,0.4417778479513697],[336614400000,0.4212520723138864],[339206400000,0.4265414068050841],[341884800000,0.4214099628957133],[344476800000,0.3973316491671272],[347155200000,0.4251993368595564],[349833600000,0.4236204310412884],[352252800000,0.418173205968264],[354931200000,0.4092523880950502],[357523200000,0.4333307018236362],[360201600000,0.427330859714218],[362793600000,0.4087787163495697],[365472000000,0.4224362516775874],[368150400000,0.4377516381147865],[370742400000,0.4705928791347596],[373420800000,0.5008289255545907],[376012800000,0.5196179047919791],[378691200000,0.5298807926107207],[381369600000,0.554195942212047],[383788800000,0.5691955474855925],[386467200000,0.596747454014368],[389059200000,0.6039314754874872],[391737600000,0.6199573695429068],[394329600000,0.6445093550169733],[397008000000,0.647035604326202],[399686400000,0.6735612220731033],[402278400000,0.6981921528380832],[404956800000,0.7304807768216626],[407548800000,0.7394015946948764],[410227200000,0.6985868792926502],[412905600000,0.6994552774926975],[415324800000,0.6886397726375622],[418003200000,0.6775874319096866],[420595200000,0.6685876687455593],[423273600000,0.6758506355095919],[425865600000,0.6207468224520407],[428544000000,0.6266677192705455],[431222400000,0.5997473750690772],[433814400000,0.5685639851582853],[436492800000,0.5379332122838872],[439084800000,0.5246704034104366],[441763200000,0.4991710744454093],[444441600000,0.4820399463172022],[446947200000,0.4784874082260993],[449625600000,0.4797505328807137],[452217600000,0.4555932738612142],[454896000000,0.4374358569511329],[457488000000,0.4619878424251994],[460166400000,0.4605668271887582],[462844800000,0.4485671429699218],[465436800000,0.4496723770427094],[468115200000,0.4352253888055577],[470707200000,0.4478566353517013],[473385600000,0.4529880792610721],[476064000000,0.4449356595879056],[478483200000,0.4463566748243467],[481161600000,0.450777611115497],[483753600000,0.443435699060551],[486432000000,0.4559090550248678],[489024000000,0.4600931554432778],[491702400000,0.435067498223731],[494380800000,0.4391726533512276],[496972800000,0.4431199178968975],[499651200000,0.42969921844162],[502243200000,0.4304886713507539],[504921600000,0.4034104365674587],[507600000000,0.4513302281518907],[510019200000,0.4498302676245362],[512697600000,0.4483303070971816],[515289600000,0.4542512039156864],[517968000000,0.4596984289887108],[520560000000,0.4447777690060788],[523238400000,0.4302518354780137],[525916800000,0.4440672613878582],[528508800000,0.4387779268966606],[531187200000,0.4321465224599353],[533779200000,0.4103576221678377],[536457600000,0.4110681297860583],[539136000000,0.4089366069313966],[541555200000,0.4086997710586563],[544233600000,0.3834372779663693],[546825600000,0.385963527275598],[549504000000,0.3720691560748401],[552096000000,0.3618062682560985],[554774400000,0.3612536512197048],[557452800000,0.3487013499644746],[560044800000,0.3585695113286492],[562723200000,0.343412015473277],[565315200000,0.3355964316728507],[567993600000,0.3369385016183785],[570672000000,0.3350438146364569],[573177600000,0.3308597142180469],[575856000000,0.3091497592168627],[578448000000,0.3232020209994474],[581126400000,0.3048077682166259],[583718400000,0.3094655403805163],[586396800000,0.3282545196179048],[589075200000,0.3093865950896029],[591667200000,0.3065445646167206],[594345600000,0.3040972605984053],[596937600000,0.3025973000710507],[599616000000,0.3155443277808479],[602294400000,0.2900449988158206],[604713600000,0.2778874240151575],[607392000000,0.2986500355253809],[609984000000,0.291308123470435],[612662400000,0.3072550722349412],[615254400000,0.3007815583800426],[617932800000,0.302044683034657],[620611200000,0.3082813610168154],[623203200000,0.3114391726533512],[625881600000,0.3189389752901239],[628473600000,0.3143601484171469],[631152000000,0.3210704981447857],[633830400000,0.3130970237625326],[636249600000,0.3089129233441225],[638928000000,0.3246230362358885],[641520000000,0.3202810452356517],[644198400000,0.3082813610168154],[646790400000,0.3344911976000632],[649468800000,0.3554906449830267],[652147200000,0.3697007973474382],[654739200000,0.3768848188205574],[657417600000,0.4009631325491435],[660009600000,0.4117786374042788],[662688000000,0.4207784005684061],[665366400000,0.4405147232967553],[667785600000,0.4658561616799558],[670464000000,0.4542512039156864],[673056000000,0.4776979553169654],[675734400000,0.4742243625167759],[678326400000,0.4658561616799558],[681004800000,0.4721717849530275],[683683200000,0.4765927212441778],[686275200000,0.4860661561537854],[688953600000,0.4930922870450777],[691545600000,0.5141706797189548],[694224000000,0.5208810294465935],[696902400000,0.5343806741927845],[699408000000,0.5348543459382648],[702086400000,0.531301807847162],[704678400000,0.5572748085576695],[707356800000,0.580642614668035],[709948800000,0.5656430093944896],[712627200000,0.5606694560669456],[715305600000,0.5601957843214652],[717897600000,0.5299597379016342],[720576000000,0.5431436014841715],[723168000000,0.5425120391568643],[725846400000,0.5241967316649562],[728524800000,0.5129865003552538],[730944000000,0.5029604484092524],[733622400000,0.5072234941185758],[736214400000,0.5103023604641983],[738892800000,0.5080918923186232],[741484800000,0.4930133417541644],[744163200000,0.4798294781716271],[746841600000,0.4759611589168706],[749433600000,0.4788031893897529],[752112000000,0.4623825688797663],[754704000000,0.4572511249703955],[757382400000,0.4693297544801452],[760060800000,0.4656193258072156],[762480000000,0.4566985079340017],[765158400000,0.4457251124970396],[767750400000,0.4128838714770664],[770428800000,0.4138312149680272],[773020800000,0.4153311754953817],[775699200000,0.4143048867135075],[778377600000,0.3985947738217415],[780969600000,0.390542354148575],[783648000000,0.370253414383832],[786240000000,0.3588063472013894],[788918400000,0.370253414383832],[791596800000,0.3554116996921134],[794016000000,0.3527275598010579],[796694400000,0.3915686429304492],[799286400000,0.3745954053840688],[801964800000,0.3743585695113287],[804556800000,0.3822530986026684],[807235200000,0.3788584510933923],[809913600000,0.3783847793479119],[812505600000,0.3665429857109023],[815184000000,0.3742796242204153],[817776000000,0.3740427883476751],[820454400000,0.379411068129786],[823132800000,0.3653588063472014],[825638400000,0.3657535328017684],[828316800000,0.3734112260203679],[830908800000,0.3740427883476751],[833587200000,0.3481487329280809],[836179200000,0.3672534933291229],[838857600000,0.3313333859635273],[841536000000,0.3389910791821268],[844128000000,0.3430962343096234],[846806400000,0.3592800189468698],[849398400000,0.3606220888923976],[852076800000,0.3531222862556249],[854755200000,0.3487013499644746],[857174400000,0.3406489302913081],[859852800000,0.3306228783453067],[862444800000,0.3134128049261862],[865123200000,0.3247809268177153],[867715200000,0.3134128049261862],[870393600000,0.3097023762532565],[873072000000,0.3134917502170996],[875664000000,0.2975448014525934],[878342400000,0.2860187889792374],[880934400000,0.2992815978526881],[883612800000,0.2907555064340412],[886291200000,0.2858608983974106],[888710400000,0.2950185521433646],[891388800000,0.2570458672140207],[893980800000,0.2654140680508408],[896659200000,0.2784400410515513],[899251200000,0.2821504697244809],[901929600000,0.2758348464514092],[904608000000,0.2853872266519302],[907200000000,0.2838083208336623],[909878400000,0.2695981684692508],[912470400000,0.2642298886871398],[915148800000,0.2598089523959896],[917827200000,0.2704665666692982],[920246400000,0.2445725112497039],[922924800000,0.2620194205415647],[925516800000,0.2455988000315781],[928195200000,0.2578353201231546],[930787200000,0.2636772716507461],[933465600000,0.2489145022499408],[936144000000,0.2549932896502723],[938736000000,0.244177784795137],[941414400000,0.2392831767585064],[944006400000,0.2343096234309623],[946684800000,0.2386516144311992],[949363200000,0.2504934080682087],[951868800000,0.2406252467040341],[954547200000,0.2207310333938581],[957139200000,0.242598878976869],[959817600000,0.2341517328491355],[962409600000,0.2417304807768217],[965088000000,0.2500986816136417],[967766400000,0.2320991552853872],[970358400000,0.2249151338122681],[973036800000,0.2332043893581748],[975628800000,0.2328096629036078],[978307200000,0.2635193810689193],[980985600000,0.2687297702692034],[983404800000,0.2728349253967001],[986083200000,0.2830978132154417],[988675200000,0.2795452751243389],[991353600000,0.2999131601799953],[993945600000,0.3077287439804215],[996624000000,0.3439646325096708],[999302400000,0.3518591616010105],[1001894400000,0.3954369621852056],[1004572800000,0.4198310570774453],[1007164800000,0.4399621062603616],[1009843200000,0.4339622641509434],[1012521600000,0.4365674587510855],[1014940800000,0.4435935896423778],[1017619200000,0.46688245046183],[1020211200000,0.4510933922791506],[1022889600000,0.4506197205336702],[1025481600000,0.45038288466093],[1028160000000,0.4435935896423778],[1030838400000,0.4394094892239678],[1033430400000,0.443830425515118],[1036108800000,0.4606457724796716],[1038700800000,0.4701192073892792],[1041379200000,0.4606457724796716],[1044057600000,0.4683824109891845],[1046476800000,0.4660140522617826],[1049155200000,0.4860661561537854],[1051747200000,0.4951448646088261],[1054425600000,0.5195389595010658],[1057017600000,0.4994079103181495],[1059696000000,0.4903292018631089],[1062374400000,0.4923028341359438],[1064966400000,0.4773821741533117],[1067644800000,0.4650667087708218],[1070236800000,0.444619878424252],[1072915200000,0.448803978842662],[1075593600000,0.4327780847872424],[1078099200000,0.4583563590431831],[1080777600000,0.4330149206599826],[1083369600000,0.4363306228783453],[1086048000000,0.4421725744059367],[1088640000000,0.4303307807689271],[1091318400000,0.4188047682955712],[1093996800000,0.4138312149680272],[1096588800000,0.4244098839504223],[1099267200000,0.4142259414225942],[1101859200000,0.4143838320044209],[1104537600000,0.4025420383674114],[1107216000000,0.4180153153864372],[1109635200000,0.3988316096944817],[1112313600000,0.3937001657851109],[1114905600000,0.3920423146759296],[1117584000000,0.3820162627299282],[1120176000000,0.3727007184021473],[1122854400000,0.3678850556564301],[1125532800000,0.3843056761664167],[1128124800000,0.3764111470750769],[1130803200000,0.3853319649482909],[1133395200000,0.3626746664561459],[1136073600000,0.3457014289097655],[1138752000000,0.3551748638193732],[1141171200000,0.3463329912370727],[1143849600000,0.3501223652009158],[1146441600000,0.3390700244730402],[1149120000000,0.3407278755822215],[1151712000000,0.3544643562011526],[1154390400000,0.3478329517644272],[1157068800000,0.3285703007815584],[1159660800000,0.3190968658719507],[1162339200000,0.3305439330543933],[1164931200000,0.3218599510539196],[1167609600000,0.3498065840372622],[1170288000000,0.3348859240546301],[1172707200000,0.3194126470356043],[1175385600000,0.3288071366542986],[1177977600000,0.3221757322175732],[1180656000000,0.3389910791821268],[1183248000000,0.3524117786374043],[1185926400000,0.3459382647825057],[1188604800000,0.3540696297465856],[1191196800000,0.3593589642377832],[1193875200000,0.3595958001105234],[1196467200000,0.3915686429304492],[1199145600000,0.3947264545669851],[1201824000000,0.3798847398752664],[1204329600000,0.4055419594221205],[1207008000000,0.390937080603142],[1209600000000,0.450777611115497],[1212278400000,0.4649877634799084],[1214870400000,0.4935659587905581],[1217548800000,0.53311754953817],[1220227200000,0.5375384858293203],[1222819200000,0.5833267545590906],[1225497600000,0.6199573695429068],[1228089600000,0.6790084471461277],[1230768000000,0.7399542117312702],[1233446400000,0.8062682560985237],[1235865600000,0.8479513697007973],[1238544000000,0.8816610089208179],[1241136000000,0.9326596668508723],[1243814400000,0.9490802873608589],[1246406400000,0.9407120865240388],[1249084800000,0.9575274334885924],[1251763200000,0.9729217652167048],[1254355200000,1],[1257033600000,0.9895002763085182],[1259625600000,0.9799478961079972],[1262304000000,0.9758427409805005],[1264982400000,0.9811320754716981],[1267401600000,0.9881582063629905],[1270080000000,0.9978684771453383],[1272672000000,0.9602905186705613],[1275350400000,0.9306860345780374],[1277942400000,0.9336859556327465],[1280620800000,0.9444225151969685],[1283299200000,0.9389752901239441],[1285891200000,0.9340017367964001],[1288569600000,0.9786058261624694],[1291161600000,0.9207389279229494],[1293840000000,0.8942922554669614],[1296518400000,0.8790558143206758],[1298937600000,0.8725033551748638],[1301616000000,0.8898713191758112],[1304208000000,0.8818188995026447],[1306886400000,0.8902660456303781],[1309478400000,0.8745559327386121],[1312156800000,0.878897923738849],[1314835200000,0.8891608115575906],[1317427200000,0.8612141785742481],[1320105600000,0.8381621536275361],[1322697600000,0.8216625878266361],[1325376000000,0.7982947817162707],[1328054400000,0.799557906370885],[1330560000000,0.7916633772795453],[1333238400000,0.7863740427883477],[1335830400000,0.7874792768611353],[1338508800000,0.7900055261703639],[1341100800000,0.7871634956974817],[1343779200000,0.7725586168785032],[1346457600000,0.7444540933133339],[1349049600000,0.7451646009315545],[1351728000000,0.7357701113128602],[1354320000000,0.7589010815504855],[1356998400000,0.7725586168785032],[1359676800000,0.7314281203126234],[1362096000000,0.7108233993842268],[1364774400000,0.7164285150390779],[1367366400000,0.7080603142022578],[1370044800000,0.7157180074208573],[1372636800000,0.6828767664008842],[1375315200000,0.678455830109734],[1377993600000,0.6777453224915134],[1380585600000,0.6671666535091182],[1383264000000,0.6396147469803426],[1385856000000,0.6093787005605116],[1388534400000,0.5934317517960054],[1391212800000,0.6050367095602748],[1393632000000,0.6074840135785901],[1396310400000,0.5539591063393069],[1398902400000,0.5663535170127102],[1401580800000,0.5348543459382648],[1404172800000,0.5465382489934475],[1406851200000,0.5458277413752269],[1409529600000,0.5192231783374122],[1412121600000,0.4977500592089682],[1414800000000,0.5056445883003079],[1417392000000,0.4761979947896108],[1420070400000,0.4908818188995027],[1422748800000,0.4677508486618773],[1425168000000,0.4593826478250572],[1427846400000,0.4611194442251519]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/apex_grid.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a grid of ApexCharts — apex_grid","title":"Create a grid of ApexCharts — apex_grid","text":"Create grid ApexCharts","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex_grid.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a grid of ApexCharts — apex_grid","text":"","code":"apex_grid( ..., nrow = NULL, ncol = NULL, row_gap = \"10px\", col_gap = \"0px\", grid_area = NULL, height = NULL, width = NULL, .list = NULL )"},{"path":"https://dreamrs.github.io/apexcharter/reference/apex_grid.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a grid of ApexCharts — apex_grid","text":"... Several apexcharts htmlwidget objects. nrow, ncol Number rows columns. row_gap, col_gap Gap rows columns. grid_area Custom grid area make elements take single cell grid, see https://cssgrid-generator.netlify.app/ examples. height, width Height width main grid. .list list apexcharts htmlwidget objects.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex_grid.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Create a grid of ApexCharts — apex_grid","text":"Custom apex_grid object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex_grid.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Create a grid of ApexCharts — apex_grid","text":"provide either height grid individual chart height make work.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex_grid.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a grid of ApexCharts — apex_grid","text":"","code":"if (interactive()) { library(apexcharter) data(\"mpg\", package = \"ggplot2\") # Two chart side-by-side a1 <- apex(mpg, aes(manufacturer), type = \"bar\") a2 <- apex(mpg, aes(trans), type = \"column\") apex_grid(a1, a2, height = \"400px\") # More complex layout: a3 <- apex(mpg, aes(drv), type = \"pie\") apex_grid( a1, a2, a3, grid_area = c(\"1 / 1 / 3 / 2\", \"1 / 2 / 2 / 4\", \"2 / 2 / 3 / 4\"), ncol = 3, nrow = 2, height = \"600px\" ) }"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchart.html","id":null,"dir":"Reference","previous_headings":"","what":"Create an ApexCharts widget — apexchart","title":"Create an ApexCharts widget — apexchart","text":"Create ApexCharts widget","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchart.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create an ApexCharts widget — apexchart","text":"","code":"apexchart( ax_opts = list(), auto_update = TRUE, width = NULL, height = NULL, elementId = NULL )"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchart.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create an ApexCharts widget — apexchart","text":"ax_opts list JSON format chart parameters. auto_update Shiny application, update existing chart rather generating new one. Can TRUE/FALSE use config_update() control. width, height numeric input pixels. elementId Use explicit element ID widget.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchart.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Create an ApexCharts widget — apexchart","text":"apexchart() htmlwidget object.","code":""},{"path":[]},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchart.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create an ApexCharts widget — apexchart","text":"","code":"library(apexcharter) # Use raw API by passing a list of # parameters to the function apexchart(ax_opts = list( chart = list( type = \"bar\" ), series = list(list( name = \"Example\", data = sample(1:100, 5) )), xaxis = list( categories = LETTERS[1:5] ) )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"Example\",\"data\":[47,31,68,73,69]}],\"xaxis\":{\"categories\":[\"A\",\"B\",\"C\",\"D\",\"E\"]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[],\"jsHooks\":[]} # Or use apexchart() to initialize the chart # before passing parameters apexchart() %>% ax_chart(type = \"bar\") %>% ax_series( list( name = \"Example\", data = sample(1:100, 5) ) ) %>% ax_xaxis( categories = LETTERS[1:5] ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"Example\",\"data\":[5,24,79,77,2]}],\"xaxis\":{\"categories\":[\"A\",\"B\",\"C\",\"D\",\"E\"]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchartProxy.html","id":null,"dir":"Reference","previous_headings":"","what":"Proxy for apexchart — apexchartProxy","title":"Proxy for apexchart — apexchartProxy","text":"Allow update chart Shiny application.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchartProxy.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Proxy for apexchart — apexchartProxy","text":"","code":"apexchartProxy(shinyId, session = shiny::getDefaultReactiveDomain())"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchartProxy.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Proxy for apexchart — apexchartProxy","text":"shinyId single-element character vector indicating output ID chart modify (invoked Shiny module, namespace added automatically) session Shiny session object chart belongs; usually default value suffice","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-exports.html","id":null,"dir":"Reference","previous_headings":"","what":"apexcharter exported operators and S3 methods — apexcharter-exports","title":"apexcharter exported operators and S3 methods — apexcharter-exports","text":"following functions imported re-exported apexcharter package avoid listing magrittr Depends apexcharter","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-package.html","id":null,"dir":"Reference","previous_headings":"","what":"An htmlwidget interface to the ApexCharts javascript chart library — apexcharter-package","title":"An htmlwidget interface to the ApexCharts javascript chart library — apexcharter-package","text":"package allow use ApexCharts.js (https://apexcharts.com/), create interactive modern SVG charts.","code":""},{"path":[]},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-package.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"An htmlwidget interface to the ApexCharts javascript chart library — apexcharter-package","text":"Victor Perrier (@dreamRs_fr)","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-facets.html","id":null,"dir":"Reference","previous_headings":"","what":"Shiny bindings for faceting with apexcharter — apexcharter-shiny-facets","title":"Shiny bindings for faceting with apexcharter — apexcharter-shiny-facets","text":"Output render functions using apexcharter faceting within Shiny applications interactive Rmd documents.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-facets.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Shiny bindings for faceting with apexcharter — apexcharter-shiny-facets","text":"","code":"apexfacetOutput(outputId) renderApexfacet(expr, env = parent.frame(), quoted = FALSE)"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-facets.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Shiny bindings for faceting with apexcharter — apexcharter-shiny-facets","text":"outputId output variable read expr expression generates apexcharter facet ax_facet_wrap() ax_facet_grid(). env environment evaluate expr. quoted expr quoted expression (quote())? useful want save expression variable.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-facets.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Shiny bindings for faceting with apexcharter — apexcharter-shiny-facets","text":"Apexcharts output can included application UI.","code":""},{"path":[]},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-facets.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Shiny bindings for faceting with apexcharter — apexcharter-shiny-facets","text":"","code":"library(shiny) library(apexcharter) data(\"unhcr_ts\") refugees <- unhcr_ts %>% subset( population_type == \"Refugees (incl. refugee-like situations)\" ) %>% transform(date = as.Date(paste0(year, \"-01-01\"))) ui <- fluidPage( tags$h2(\"Apexcharts Facets Example\"), apexfacetOutput(\"myfacet\") ) server <- function(input, output, session) { output$myfacet <- renderApexfacet({ apex(refugees, aes(date, n), type = \"column\") %>% ax_yaxis(tickAmount = 5) %>% ax_facet_wrap( vars(continent_origin), scales = \"free\" ) }) } if (interactive()) shinyApp(ui, server)"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-grid.html","id":null,"dir":"Reference","previous_headings":"","what":"Shiny bindings for grid with apexcharter — apexcharter-shiny-grid","title":"Shiny bindings for grid with apexcharter — apexcharter-shiny-grid","text":"Output render functions using apexcharter grid within Shiny applications interactive Rmd documents.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-grid.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Shiny bindings for grid with apexcharter — apexcharter-shiny-grid","text":"","code":"apexgridOutput(outputId) renderApexgrid(expr, env = parent.frame(), quoted = FALSE)"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-grid.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Shiny bindings for grid with apexcharter — apexcharter-shiny-grid","text":"outputId output variable read expr expression generates apexcharter grid. env environment evaluate expr. quoted expr quoted expression (quote())? useful want save expression variable.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-grid.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Shiny bindings for grid with apexcharter — apexcharter-shiny-grid","text":"Apexcharts output can included application UI.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-grid.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Shiny bindings for grid with apexcharter — apexcharter-shiny-grid","text":"","code":"library(shiny) library(apexcharter) ui <- fluidPage( tags$h2(\"Apexcharts Grid Example\"), apexgridOutput(\"myfacet\") ) server <- function(input, output, session) { output$myfacet <- renderApexgrid({ a1 <- apex(mpg, aes(manufacturer), type = \"bar\") a2 <- apex(mpg, aes(trans), type = \"column\") a3 <- apex(mpg, aes(drv), type = \"pie\") apex_grid( a1, a2, a3, grid_area = c(\"1 / 1 / 3 / 2\", \"1 / 2 / 2 / 4\", \"2 / 2 / 3 / 4\"), ncol = 3, nrow = 2, height = \"600px\" ) }) } if (interactive()) shinyApp(ui, server)"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny.html","id":null,"dir":"Reference","previous_headings":"","what":"Shiny bindings for apexcharter — apexcharter-shiny","title":"Shiny bindings for apexcharter — apexcharter-shiny","text":"Output render functions using apexcharter within Shiny applications interactive Rmd documents.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Shiny bindings for apexcharter — apexcharter-shiny","text":"","code":"apexchartOutput(outputId, width = \"100%\", height = \"400px\") renderApexchart(expr, env = parent.frame(), quoted = FALSE) sparkBoxOutput(outputId, width = \"100%\", height = \"160px\") renderSparkBox(expr, env = parent.frame(), quoted = FALSE)"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Shiny bindings for apexcharter — apexcharter-shiny","text":"outputId Output variable read . width, height Must valid CSS unit (like 100%, 400px, auto) number, coerced string px appended. expr expression generates calendar env environment evaluate expr. quoted expr quoted expression (quote())? useful want save expression variable.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Shiny bindings for apexcharter — apexcharter-shiny","text":"Output element can included UI. Render function create output server.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Shiny bindings for apexcharter — apexcharter-shiny","text":"render chart facets (using ax_facet_wrap() ax_facet_grid()) Shiny, see apexfacetOutput() (UI) renderApexfacet() (Server).","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Shiny bindings for apexcharter — apexcharter-shiny","text":"","code":"if (interactive()) { library(shiny) library(apexcharter) ui <- fluidPage( fluidRow( column( width = 8, offset = 2, tags$h2(\"Apexchart in Shiny\"), actionButton(\"redraw\", \"Redraw chart\"), apexchartOutput(\"chart\") ) ) ) server <- function(input, output, session) { output$chart <- renderApexchart({ input$redraw apexchart() %>% ax_chart(type = \"bar\") %>% ax_series( list( name = \"Example\", data = sample(1:100, 5) ) ) %>% ax_xaxis( categories = LETTERS[1:5] ) }) } shinyApp(ui, server) }"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax-series.html","id":null,"dir":"Reference","previous_headings":"","what":"Add data to a chart — ax-series","title":"Add data to a chart — ax-series","text":"Add data chart","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax-series.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add data to a chart — ax-series","text":"","code":"ax_series(ax, ...) ax_series2(ax, l)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax-series.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add data to a chart — ax-series","text":"ax apexchart() htmlwidget object. ... Lists containing data plot, typically list two items: name data. l list.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax-series.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add data to a chart — ax-series","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax-series.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add data to a chart — ax-series","text":"","code":"# One serie apexchart() %>% ax_series(list( name = \"rnorm\", data = rnorm(10) )) {\"x\":{\"ax_opts\":{\"series\":[{\"name\":\"rnorm\",\"data\":[1.969424843410351,0.463174706888703,-0.8561524259895877,0.6480432853289468,0.07580395979082789,0.4917614404956936,-0.7535407057758068,0.3490273528349259,-0.1708489717643287,1.631206007177528]}]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[],\"jsHooks\":[]} # Two series apexchart() %>% ax_series( list( name = \"rnorm 1\", data = rnorm(10) ), list( name = \"rnorm 2\", data = rnorm(10) ) ) {\"x\":{\"ax_opts\":{\"series\":[{\"name\":\"rnorm 1\",\"data\":[-0.7827060412768373,-0.002893626081960659,0.4132392923107007,0.7244334519512985,2.353944770689133,-0.281449684750734,-0.4810464361743014,0.07922592451094837,0.7698603301565562,0.5633369597055415]},{\"name\":\"rnorm 2\",\"data\":[-0.3739875238520353,-0.6013055590774279,-0.4241750346400814,-0.8723158810813945,0.1066846148710722,-0.5870139852536841,-0.327853587243666,-0.08536101311654855,-2.052403886558835,0.1507482487054995]}]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_annotations.html","id":null,"dir":"Reference","previous_headings":"","what":"Annotations properties — ax_annotations","title":"Annotations properties — ax_annotations","text":"Annotations properties","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_annotations.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Annotations properties — ax_annotations","text":"","code":"ax_annotations( ax, position = NULL, yaxis = NULL, xaxis = NULL, points = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_annotations.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Annotations properties — ax_annotations","text":"ax apexchart() htmlwidget object. position Whether put annotations behind charts front . Available Options: \"front\" \"back\". yaxis List lists. xaxis List lists. points List lists. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_annotations.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Annotations properties — ax_annotations","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_annotations.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Annotations properties — ax_annotations","text":"See https://apexcharts.com/docs/options/annotations/.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_annotations.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Annotations properties — ax_annotations","text":"","code":"data(\"economics\", package = \"ggplot2\") # Horizontal line apex( data = tail(economics, 200), mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_annotations( yaxis = list(list( y = 11.897, borderColor = \"firebrick\", opacity = 1, label = list( text = \"Mean uempmed\", position = \"left\", textAnchor = \"start\" ) )) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.199999999999999],[1009843200000,8.4],[1012521600000,8.300000000000001],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.300000000000001],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.699999999999999],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.199999999999999],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.699999999999999],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.199999999999999],[1109635200000,9.300000000000001],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.800000000000001],[1122854400000,9.199999999999999],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.699999999999999],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.699999999999999],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.300000000000001],[1164931200000,7.5],[1167609600000,8.300000000000001],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.199999999999999],[1180656000000,7.7],[1183248000000,8.699999999999999],[1185926400000,8.800000000000001],[1188604800000,8.699999999999999],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.699999999999999],[1204329600000,8.699999999999999],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.699999999999999],[1217548800000,9.699999999999999],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.800000000000001],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"yaxis\":[{\"y\":11.897,\"borderColor\":\"firebrick\",\"opacity\":1,\"label\":{\"text\":\"Mean uempmed\",\"position\":\"left\",\"textAnchor\":\"start\"}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1998-09-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Vertical line apex( data = tail(economics, 200), mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_annotations( xaxis = list(list( x = htmlwidgets::JS(\"new Date('1 Mar 2007').getTime()\"), strokeDashArray = 0, borderColor = \"#775DD0\", label = list( text = \"A label\", borderColor = \"#775DD0\", style = list( color = \"#fff\", background = \"#775DD0\" ) ) )) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.199999999999999],[1009843200000,8.4],[1012521600000,8.300000000000001],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.300000000000001],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.699999999999999],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.199999999999999],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.699999999999999],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.199999999999999],[1109635200000,9.300000000000001],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.800000000000001],[1122854400000,9.199999999999999],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.699999999999999],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.699999999999999],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.300000000000001],[1164931200000,7.5],[1167609600000,8.300000000000001],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.199999999999999],[1180656000000,7.7],[1183248000000,8.699999999999999],[1185926400000,8.800000000000001],[1188604800000,8.699999999999999],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.699999999999999],[1204329600000,8.699999999999999],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.699999999999999],[1217548800000,9.699999999999999],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.800000000000001],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"xaxis\":[{\"x\":\"new Date('1 Mar 2007').getTime()\",\"strokeDashArray\":0,\"borderColor\":\"#775DD0\",\"label\":{\"text\":\"A label\",\"borderColor\":\"#775DD0\",\"style\":{\"color\":\"#fff\",\"background\":\"#775DD0\"}}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1998-09-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\"],\"jsHooks\":[]} # Vertical range apex( data = tail(economics, 200), mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_annotations( xaxis = list(list( x = htmlwidgets::JS(\"new Date('1 Jan 2009').getTime()\"), x2 = htmlwidgets::JS(\"new Date('1 Feb 2010').getTime()\"), fillColor = \"#B3F7CA\", opacity = 0.4, label = list( text = \"A label\", borderColor = \"#B3F7CA\", style = list( color = \"#fff\", background = \"#B3F7CA\" ) ) )) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.199999999999999],[1009843200000,8.4],[1012521600000,8.300000000000001],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.300000000000001],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.699999999999999],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.199999999999999],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.699999999999999],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.199999999999999],[1109635200000,9.300000000000001],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.800000000000001],[1122854400000,9.199999999999999],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.699999999999999],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.699999999999999],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.300000000000001],[1164931200000,7.5],[1167609600000,8.300000000000001],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.199999999999999],[1180656000000,7.7],[1183248000000,8.699999999999999],[1185926400000,8.800000000000001],[1188604800000,8.699999999999999],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.699999999999999],[1204329600000,8.699999999999999],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.699999999999999],[1217548800000,9.699999999999999],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.800000000000001],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"xaxis\":[{\"x\":\"new Date('1 Jan 2009').getTime()\",\"x2\":\"new Date('1 Feb 2010').getTime()\",\"fillColor\":\"#B3F7CA\",\"opacity\":0.4,\"label\":{\"text\":\"A label\",\"borderColor\":\"#B3F7CA\",\"style\":{\"color\":\"#fff\",\"background\":\"#B3F7CA\"}}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1998-09-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.0.x2\"],\"jsHooks\":[]} # Point annotation apex( data = tail(economics, 200), mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_annotations( points = list(list( x = htmlwidgets::JS(\"new Date('1 Jun 2010').getTime()\"), y = 25.2, marker = list( size = 8, fillColor = \"#fff\", strokeColor = \"red\", radius = 2 ), label = list( text = \"Highest\", offsetY = 0, borderColor = \"#FF4560\", style = list( color = \"#fff\", background = \"#FF4560\" ) ) )) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.199999999999999],[1009843200000,8.4],[1012521600000,8.300000000000001],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.300000000000001],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.699999999999999],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.199999999999999],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.699999999999999],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.199999999999999],[1109635200000,9.300000000000001],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.800000000000001],[1122854400000,9.199999999999999],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.699999999999999],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.699999999999999],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.300000000000001],[1164931200000,7.5],[1167609600000,8.300000000000001],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.199999999999999],[1180656000000,7.7],[1183248000000,8.699999999999999],[1185926400000,8.800000000000001],[1188604800000,8.699999999999999],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.699999999999999],[1204329600000,8.699999999999999],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.699999999999999],[1217548800000,9.699999999999999],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.800000000000001],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"points\":[{\"x\":\"new Date('1 Jun 2010').getTime()\",\"y\":25.2,\"marker\":{\"size\":8,\"fillColor\":\"#fff\",\"strokeColor\":\"red\",\"radius\":2},\"label\":{\"text\":\"Highest\",\"offsetY\":0,\"borderColor\":\"#FF4560\",\"style\":{\"color\":\"#fff\",\"background\":\"#FF4560\"}}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1998-09-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[\"ax_opts.annotations.points.0.x\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_chart.html","id":null,"dir":"Reference","previous_headings":"","what":"Chart parameters — ax_chart","title":"Chart parameters — ax_chart","text":"Chart parameters","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_chart.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Chart parameters — ax_chart","text":"","code":"ax_chart( ax, type = NULL, stacked = NULL, stackType = NULL, defaultLocale = NULL, locales = NULL, animations = NULL, background = NULL, foreColor = NULL, dropShadow = NULL, events = NULL, offsetX = NULL, offsetY = NULL, selection = NULL, sparkline = NULL, toolbar = NULL, zoom = NULL, width = NULL, height = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_chart.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Chart parameters — ax_chart","text":"ax apexchart() htmlwidget object. type Specify chart type. Available Options: \"bar\", \"column\", \"line\", \"pie\", \"donut\", \"radialBar\", \"scatter\", \"bubble\", \"heatmap\". stacked Logical. Enables stacked option axis charts. stackType stacked, stacking percentage based normal stacking. Available options: \"normal\" \"100%\". defaultLocale Locale use : \"ca\", \"cs\", \"de\", \"el\", \"en\", \"es\", \"fi\", \"fr\", \"\", \"hi\", \"hr\", \"hy\", \"id\", \"\", \"ko\", \"lt\", \"nb\", \"nl\", \"pl\", \"pt-br\", \"pt\", \"ru\", \"se\", \"sk\", \"sl\", \"th\", \"tr\", \"ua\". locales Array custom locales parameters. animations list parameters. background Background color chart area. want set background css, use .apexcharts-canvas set . foreColor Sets text color chart. Defaults #373d3f. dropShadow list parameters. See https://apexcharts.com/docs/options/chart/dropshadow/. events See events_opts. offsetX Sets left offset chart. offsetY Sets top offset chart. selection list parameters. sparkline List. Sparkline hides elements charts primary paths. Helps visualize data small areas. . toolbar list parameters. See https://apexcharts.com/docs/options/chart/toolbar/. zoom list parameters. See https://apexcharts.com/docs/options/chart/zoom/. width Width chart. height Height chart. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_chart.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Chart parameters — ax_chart","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_chart.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Chart parameters — ax_chart","text":"","code":"library(apexcharter) data(\"diamonds\", package = \"ggplot2\") ## Stack bar type # default is dodge apex( data = diamonds, mapping = aes(x = cut, fill = color) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"D\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":163},{\"x\":\"Good\",\"y\":662},{\"x\":\"Very Good\",\"y\":1513},{\"x\":\"Premium\",\"y\":1603},{\"x\":\"Ideal\",\"y\":2834}]},{\"name\":\"E\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":224},{\"x\":\"Good\",\"y\":933},{\"x\":\"Very Good\",\"y\":2400},{\"x\":\"Premium\",\"y\":2337},{\"x\":\"Ideal\",\"y\":3903}]},{\"name\":\"F\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":312},{\"x\":\"Good\",\"y\":909},{\"x\":\"Very Good\",\"y\":2164},{\"x\":\"Premium\",\"y\":2331},{\"x\":\"Ideal\",\"y\":3826}]},{\"name\":\"G\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":314},{\"x\":\"Good\",\"y\":871},{\"x\":\"Very Good\",\"y\":2299},{\"x\":\"Premium\",\"y\":2924},{\"x\":\"Ideal\",\"y\":4884}]},{\"name\":\"H\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":303},{\"x\":\"Good\",\"y\":702},{\"x\":\"Very Good\",\"y\":1824},{\"x\":\"Premium\",\"y\":2360},{\"x\":\"Ideal\",\"y\":3115}]},{\"name\":\"I\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":175},{\"x\":\"Good\",\"y\":522},{\"x\":\"Very Good\",\"y\":1204},{\"x\":\"Premium\",\"y\":1428},{\"x\":\"Ideal\",\"y\":2093}]},{\"name\":\"J\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":119},{\"x\":\"Good\",\"y\":307},{\"x\":\"Very Good\",\"y\":678},{\"x\":\"Premium\",\"y\":808},{\"x\":\"Ideal\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # stack apex( data = diamonds, mapping = aes(x = cut, fill = color) ) %>% ax_chart(stacked = TRUE) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\",\"stacked\":true},\"series\":[{\"name\":\"D\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":163},{\"x\":\"Good\",\"y\":662},{\"x\":\"Very Good\",\"y\":1513},{\"x\":\"Premium\",\"y\":1603},{\"x\":\"Ideal\",\"y\":2834}]},{\"name\":\"E\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":224},{\"x\":\"Good\",\"y\":933},{\"x\":\"Very Good\",\"y\":2400},{\"x\":\"Premium\",\"y\":2337},{\"x\":\"Ideal\",\"y\":3903}]},{\"name\":\"F\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":312},{\"x\":\"Good\",\"y\":909},{\"x\":\"Very Good\",\"y\":2164},{\"x\":\"Premium\",\"y\":2331},{\"x\":\"Ideal\",\"y\":3826}]},{\"name\":\"G\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":314},{\"x\":\"Good\",\"y\":871},{\"x\":\"Very Good\",\"y\":2299},{\"x\":\"Premium\",\"y\":2924},{\"x\":\"Ideal\",\"y\":4884}]},{\"name\":\"H\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":303},{\"x\":\"Good\",\"y\":702},{\"x\":\"Very Good\",\"y\":1824},{\"x\":\"Premium\",\"y\":2360},{\"x\":\"Ideal\",\"y\":3115}]},{\"name\":\"I\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":175},{\"x\":\"Good\",\"y\":522},{\"x\":\"Very Good\",\"y\":1204},{\"x\":\"Premium\",\"y\":1428},{\"x\":\"Ideal\",\"y\":2093}]},{\"name\":\"J\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":119},{\"x\":\"Good\",\"y\":307},{\"x\":\"Very Good\",\"y\":678},{\"x\":\"Premium\",\"y\":808},{\"x\":\"Ideal\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # stack filled apex( data = diamonds, mapping = aes(x = cut, fill = color) ) %>% ax_chart(stacked = TRUE, stackType = \"100%\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\",\"stacked\":true,\"stackType\":\"100%\"},\"series\":[{\"name\":\"D\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":163},{\"x\":\"Good\",\"y\":662},{\"x\":\"Very Good\",\"y\":1513},{\"x\":\"Premium\",\"y\":1603},{\"x\":\"Ideal\",\"y\":2834}]},{\"name\":\"E\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":224},{\"x\":\"Good\",\"y\":933},{\"x\":\"Very Good\",\"y\":2400},{\"x\":\"Premium\",\"y\":2337},{\"x\":\"Ideal\",\"y\":3903}]},{\"name\":\"F\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":312},{\"x\":\"Good\",\"y\":909},{\"x\":\"Very Good\",\"y\":2164},{\"x\":\"Premium\",\"y\":2331},{\"x\":\"Ideal\",\"y\":3826}]},{\"name\":\"G\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":314},{\"x\":\"Good\",\"y\":871},{\"x\":\"Very Good\",\"y\":2299},{\"x\":\"Premium\",\"y\":2924},{\"x\":\"Ideal\",\"y\":4884}]},{\"name\":\"H\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":303},{\"x\":\"Good\",\"y\":702},{\"x\":\"Very Good\",\"y\":1824},{\"x\":\"Premium\",\"y\":2360},{\"x\":\"Ideal\",\"y\":3115}]},{\"name\":\"I\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":175},{\"x\":\"Good\",\"y\":522},{\"x\":\"Very Good\",\"y\":1204},{\"x\":\"Premium\",\"y\":1428},{\"x\":\"Ideal\",\"y\":2093}]},{\"name\":\"J\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":119},{\"x\":\"Good\",\"y\":307},{\"x\":\"Very Good\",\"y\":678},{\"x\":\"Premium\",\"y\":808},{\"x\":\"Ideal\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # Toolbar -------------------------------------- # Hide the toolbar apex( data = diamonds, mapping = aes(x = cut, fill = color) ) %>% ax_chart(toolbar = list(show = FALSE)) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\",\"toolbar\":{\"show\":false}},\"series\":[{\"name\":\"D\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":163},{\"x\":\"Good\",\"y\":662},{\"x\":\"Very Good\",\"y\":1513},{\"x\":\"Premium\",\"y\":1603},{\"x\":\"Ideal\",\"y\":2834}]},{\"name\":\"E\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":224},{\"x\":\"Good\",\"y\":933},{\"x\":\"Very Good\",\"y\":2400},{\"x\":\"Premium\",\"y\":2337},{\"x\":\"Ideal\",\"y\":3903}]},{\"name\":\"F\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":312},{\"x\":\"Good\",\"y\":909},{\"x\":\"Very Good\",\"y\":2164},{\"x\":\"Premium\",\"y\":2331},{\"x\":\"Ideal\",\"y\":3826}]},{\"name\":\"G\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":314},{\"x\":\"Good\",\"y\":871},{\"x\":\"Very Good\",\"y\":2299},{\"x\":\"Premium\",\"y\":2924},{\"x\":\"Ideal\",\"y\":4884}]},{\"name\":\"H\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":303},{\"x\":\"Good\",\"y\":702},{\"x\":\"Very Good\",\"y\":1824},{\"x\":\"Premium\",\"y\":2360},{\"x\":\"Ideal\",\"y\":3115}]},{\"name\":\"I\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":175},{\"x\":\"Good\",\"y\":522},{\"x\":\"Very Good\",\"y\":1204},{\"x\":\"Premium\",\"y\":1428},{\"x\":\"Ideal\",\"y\":2093}]},{\"name\":\"J\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":119},{\"x\":\"Good\",\"y\":307},{\"x\":\"Very Good\",\"y\":678},{\"x\":\"Premium\",\"y\":808},{\"x\":\"Ideal\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # Hide download buttons data(\"economics\", package = \"ggplot2\") apex( data = economics, mapping = aes(x = date, y = pce), type = \"line\" ) %>% ax_chart( toolbar = list(tools= list(download = FALSE)) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"toolbar\":{\"tools\":{\"download\":false}}},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,506.7],[-76377600000,509.8],[-73699200000,515.6],[-71107200000,512.2],[-68428800000,517.4],[-65836800000,525.1],[-63158400000,530.9],[-60480000000,533.6],[-57974400000,544.3],[-55296000000,544],[-52704000000,549.8],[-50025600000,556.3],[-47433600000,563.2],[-44755200000,567],[-42076800000,568.2],[-39484800000,571.6],[-36806400000,576.7],[-34214400000,576.5],[-31536000000,583.5],[-28857600000,588.7],[-26438400000,588.9],[-23760000000,593.9],[-21168000000,600.3],[-18489600000,600.9],[-15897600000,602.7],[-13219200000,609.9],[-10540800000,613.2],[-7948800000,618.5],[-5270400000,620.5],[-2678400000,622.8],[0,628.7],[2678400000,634],[5097600000,632.3],[7776000000,636],[10368000000,642.4],[13046400000,646.3],[15638400000,648.5],[18316800000,652.9],[20995200000,659.1],[23587200000,658.3],[26265600000,656.6],[28857600000,665.6],[31536000000,676.1],[34214400000,679.4],[36633600000,682],[39312000000,688.8],[41904000000,691.1],[44582400000,699.8],[47174400000,698.9],[49852800000,704.9],[52531200000,713],[55123200000,715.8],[57801600000,720.9],[60393600000,728.4],[63072000000,731.5],[65750400000,736.2],[68256000000,749.2],[70934400000,752.5],[73526400000,758],[76204800000,761.6],[78796800000,769.9],[81475200000,776.3],[84153600000,781.1],[86745600000,794.9],[89424000000,800.5],[92016000000,806.1],[94694400000,816.5],[97372800000,825.8],[99792000000,832.8],[102470400000,835.7],[105062400000,841.6],[107740800000,844.3],[110332800000,854.1],[113011200000,853.3],[115689600000,869.2],[118281600000,868.2],[120960000000,876.9],[123552000000,876.6],[126230400000,884.5],[128908800000,889.7],[131328000000,901.4],[134006400000,910.8],[136598400000,922.4],[139276800000,928],[141868800000,937.9],[144547200000,954.8],[147225600000,955.1],[149817600000,959.2],[152496000000,956.2],[155088000000,961.8],[157766400000,975.6],[160444800000,989.4],[162864000000,990.6],[165542400000,995],[168134400000,1018.9],[170812800000,1026.8],[173404800000,1039.8],[176083200000,1047],[178761600000,1054.8],[181353600000,1060.9],[184032000000,1075.8],[186624000000,1092.1],[189302400000,1107.1],[191980800000,1107.7],[194486400000,1114.9],[197164800000,1125.4],[199756800000,1122.7],[202435200000,1140.5],[205027200000,1149.6],[207705600000,1158],[210384000000,1168.8],[212976000000,1176.8],[215654400000,1189],[218246400000,1211.5],[220924800000,1215],[223603200000,1231.3],[226022400000,1238.3],[228700800000,1247.3],[231292800000,1257.1],[233971200000,1263.6],[236563200000,1280.5],[239241600000,1285.7],[241920000000,1294.5],[244512000000,1311.4],[247190400000,1327],[249782400000,1336],[252460800000,1329.5],[255139200000,1355.1],[257558400000,1377.5],[260236800000,1396.4],[262828800000,1412],[265507200000,1425.8],[268099200000,1426.8],[270777600000,1447],[273456000000,1452.9],[276048000000,1466.9],[278726400000,1480.6],[281318400000,1496.5],[283996800000,1502.4],[286675200000,1517.8],[289094400000,1531.2],[291772800000,1538.4],[294364800000,1558.8],[297043200000,1575.7],[299635200000,1586.1],[302313600000,1615.6],[304992000000,1633.9],[307584000000,1641.6],[310262400000,1657.3],[312854400000,1666.3],[315532800000,1697.3],[318211200000,1701.4],[320716800000,1708.2],[323395200000,1695.2],[325987200000,1700.1],[328665600000,1718.8],[331257600000,1747.1],[333936000000,1763.8],[336614400000,1780.5],[339206400000,1817.1],[341884800000,1826.8],[344476800000,1851.7],[347155200000,1870],[349833600000,1884.2],[352252800000,1902.9],[354931200000,1904.4],[357523200000,1913.8],[360201600000,1934.5],[362793600000,1942.1],[365472000000,1966.6],[368150400000,1965.5],[370742400000,1963.9],[373420800000,1970.6],[376012800000,1988.8],[378691200000,1997.1],[381369600000,2021.2],[383788800000,2024.1],[386467200000,2026.3],[389059200000,2044.5],[391737600000,2048.1],[394329600000,2072.2],[397008000000,2080.1],[399686400000,2104.6],[402278400000,2125.8],[404956800000,2149.3],[407548800000,2161.6],[410227200000,2174],[412905600000,2177],[415324800000,2202.8],[418003200000,2226.4],[420595200000,2245.9],[423273600000,2276],[425865600000,2304.4],[428544000000,2320.4],[431222400000,2334.9],[433814400000,2357.6],[436492800000,2366.3],[439084800000,2393.6],[441763200000,2419.4],[444441600000,2403.5],[446947200000,2431.6],[449625600000,2457.5],[452217600000,2474.5],[454896000000,2495.6],[457488000000,2494.6],[460166400000,2512.2],[462844800000,2533.8],[465436800000,2531.3],[468115200000,2571.4],[470707200000,2582.6],[473385600000,2618.8],[476064000000,2640.8],[478483200000,2648.5],[481161600000,2659.5],[483753600000,2696.4],[486432000000,2689.4],[489024000000,2715.7],[491702400000,2752.1],[494380800000,2794.7],[496972800000,2755.8],[499651200000,2771.1],[502243200000,2811.3],[504921600000,2827.1],[507600000000,2820.2],[510019200000,2823.6],[512697600000,2835.2],[515289600000,2857.5],[517968000000,2861.7],[520560000000,2881.2],[523238400000,2898.6],[525916800000,2971.8],[528508800000,2932.9],[531187200000,2928.4],[533779200000,2997.1],[536457600000,2935.5],[539136000000,3001.7],[541555200000,3013.3],[544233600000,3038.8],[546825600000,3048.4],[549504000000,3072.8],[552096000000,3094.7],[554774400000,3130.8],[557452800000,3126.5],[560044800000,3134.5],[562723200000,3144.2],[565315200000,3174.1],[567993600000,3213.7],[570672000000,3221.4],[573177600000,3260.5],[575856000000,3263],[578448000000,3293.6],[581126400000,3318.5],[583718400000,3342.7],[586396800000,3368],[589075200000,3375],[591667200000,3413.7],[594345600000,3430.2],[596937600000,3459.7],[599616000000,3483.7],[602294400000,3488],[604713600000,3498.8],[607392000000,3543],[609984000000,3551.8],[612662400000,3566.6],[615254400000,3585.7],[617932800000,3620.6],[620611200000,3621.9],[623203200000,3633.6],[625881600000,3643.3],[628473600000,3684.2],[631152000000,3730.7],[633830400000,3728.2],[636249600000,3754.9],[638928000000,3770],[641520000000,3775.8],[644198400000,3804.5],[646790400000,3821.7],[649468800000,3848.3],[652147200000,3870.1],[654739200000,3870.6],[657417600000,3871.9],[660009600000,3861.3],[662688000000,3841],[665366400000,3866.7],[667785600000,3913],[670464000000,3907.1],[673056000000,3933.2],[675734400000,3940.5],[678326400000,3966],[681004800000,3969.1],[683683200000,3984.7],[686275200000,3976],[688953600000,4003.6],[691545600000,4020.5],[694224000000,4084.7],[696902400000,4099.5],[699408000000,4117],[702086400000,4131.5],[704678400000,4158.4],[707356800000,4177.1],[709948800000,4204.8],[712627200000,4220.9],[715305600000,4255.3],[717897600000,4284.7],[720576000000,4300.5],[723168000000,4336.4],[725846400000,4340.7],[728524800000,4355.3],[730944000000,4352.5],[733622400000,4393.4],[736214400000,4422.4],[738892800000,4440],[741484800000,4468.9],[744163200000,4481.1],[746841600000,4511.5],[749433600000,4532.8],[752112000000,4554.1],[754704000000,4571.1],[757382400000,4585.1],[760060800000,4632.6],[762480000000,4646],[765158400000,4671.1],[767750400000,4669.5],[770428800000,4708.9],[773020800000,4720.6],[775699200000,4762.6],[778377600000,4775],[780969600000,4812.9],[783648000000,4825.6],[786240000000,4841.6],[788918400000,4851.2],[791596800000,4850.8],[794016000000,4885.4],[796694400000,4890.2],[799286400000,4933.1],[801964800000,4977.5],[804556800000,4970.2],[807235200000,5005.3],[809913600000,5020.5],[812505600000,5013.9],[815184000000,5055.6],[817776000000,5097.5],[820454400000,5085.7],[823132800000,5132.8],[825638400000,5173.3],[828316800000,5208],[830908800000,5223.8],[833587200000,5229.8],[836179200000,5251.9],[838857600000,5275],[841536000000,5296.6],[844128000000,5328.5],[846806400000,5351.2],[849398400000,5378.6],[852076800000,5411.1],[854755200000,5434],[857174400000,5454.2],[859852800000,5459.3],[862444800000,5460.2],[865123200000,5494.2],[867715200000,5548.8],[870393600000,5587],[873072000000,5601.7],[875664000000,5637.7],[878342400000,5661.1],[880934400000,5692.1],[883612800000,5689.9],[886291200000,5723.8],[888710400000,5750.3],[891388800000,5788.1],[893980800000,5837.9],[896659200000,5871.7],[899251200000,5890],[901929600000,5925],[904608000000,5965.6],[907200000000,5998.8],[909878400000,6015.4],[912470400000,6070.5],[915148800000,6072.9],[917827200000,6101.8],[920246400000,6132.9],[922924800000,6196.2],[925516800000,6225.7],[928195200000,6254],[930787200000,6281.5],[933465600000,6326.5],[936144000000,6378.8],[938736000000,6402.1],[941414400000,6437.9],[944006400000,6538.7],[946684800000,6535.3],[949363200000,6619.7],[951868800000,6685.8],[954547200000,6671.1],[957139200000,6707.6],[959817600000,6743.9],[962409600000,6764.1],[965088000000,6799.1],[967766400000,6882.9],[970358400000,6888.2],[973036800000,6902.4],[975628800000,6945.7],[978307200000,6977],[980985600000,6995.8],[983404800000,6987.9],[986083200000,7001.2],[988675200000,7047.1],[991353600000,7060.7],[993945600000,7072.2],[996624000000,7108.9],[999302400000,7012.8],[1001894400000,7208.4],[1004572800000,7167.9],[1007164800000,7147.7],[1009843200000,7174.3],[1012521600000,7218.3],[1014940800000,7237.2],[1017619200000,7305.4],[1020211200000,7282.7],[1022889600000,7318.2],[1025481600000,7380.4],[1028160000000,7401.5],[1030838400000,7391],[1033430400000,7430.7],[1036108800000,7459.7],[1038700800000,7512.8],[1041379200000,7533.1],[1044057600000,7535.9],[1046476800000,7598.4],[1049155200000,7621],[1051747200000,7628.1],[1054425600000,7678.6],[1057017600000,7738.2],[1059696000000,7834.5],[1062374400000,7835],[1064966400000,7845.7],[1067644800000,7899.6],[1070236800000,7929.2],[1072915200000,7987.4],[1075593600000,8019.8],[1078099200000,8076],[1080777600000,8088.6],[1083369600000,8163.2],[1086048000000,8147.2],[1088640000000,8218.9],[1091318400000,8253.1],[1093996800000,8321.1],[1096588800000,8374.6],[1099267200000,8420.6],[1101859200000,8481.5],[1104537600000,8470.200000000001],[1107216000000,8529.200000000001],[1109635200000,8569.5],[1112313600000,8645.6],[1114905600000,8643.9],[1117584000000,8724.799999999999],[1120176000000,8829.5],[1122854400000,8832.4],[1125532800000,8885.799999999999],[1128124800000,8926.6],[1130803200000,8938.5],[1133395200000,8969.6],[1136073600000,9059.799999999999],[1138752000000,9090.1],[1141171200000,9122.1],[1143849600000,9174.799999999999],[1146441600000,9215.1],[1149120000000,9240.799999999999],[1151712000000,9322.6],[1154390400000,9321.799999999999],[1157068800000,9354.700000000001],[1159660800000,9373.200000000001],[1162339200000,9380.200000000001],[1164931200000,9469],[1167609600000,9516.299999999999],[1170288000000,9546.799999999999],[1172707200000,9585.1],[1175385600000,9615.700000000001],[1177977600000,9651.299999999999],[1180656000000,9667.299999999999],[1183248000000,9709.6],[1185926400000,9753.9],[1188604800000,9797.9],[1191196800000,9827],[1193875200000,9897.799999999999],[1196467200000,9908.4],[1199145600000,9930],[1201824000000,9913.4],[1204329600000,9959.4],[1207008000000,9996.799999999999],[1209600000000,10053.8],[1212278400000,10107.9],[1214870400000,10104.7],[1217548800000,10094.7],[1220227200000,10043.5],[1222819200000,9960.299999999999],[1225497600000,9820.799999999999],[1228089600000,9730.700000000001],[1230768000000,9783.799999999999],[1233446400000,9766],[1235865600000,9718.5],[1238544000000,9724.799999999999],[1241136000000,9748.9],[1243814400000,9806.9],[1246406400000,9841.700000000001],[1249084800000,9961],[1251763200000,9883.4],[1254355200000,9931.9],[1257033600000,9940.5],[1259625600000,9998.9],[1262304000000,10001.8],[1264982400000,10030.6],[1267401600000,10089.1],[1270080000000,10112.9],[1272672000000,10131],[1275350400000,10151.4],[1277942400000,10184.7],[1280620800000,10228.2],[1283299200000,10249],[1285891200000,10304.7],[1288569600000,10354.7],[1291161600000,10392.1],[1293840000000,10435.5],[1296518400000,10470.1],[1298937600000,10550.5],[1301616000000,10587.6],[1304208000000,10612],[1306886400000,10636.8],[1309478400000,10677.5],[1312156800000,10700.6],[1314835200000,10738.1],[1317427200000,10753.1],[1320105600000,10759.5],[1322697600000,10772.2],[1325376000000,10862.1],[1328054400000,10953.5],[1330560000000,10951.8],[1333238400000,10979.7],[1335830400000,10968.6],[1338508800000,10946.3],[1341100800000,10977.2],[1343779200000,11004.1],[1346457600000,11061.5],[1349049600000,11099.8],[1351728000000,11136.8],[1354320000000,11140.5],[1356998400000,11202.8],[1359676800000,11239.6],[1362096000000,11227.1],[1364774400000,11205.4],[1367366400000,11244.6],[1370044800000,11268.8],[1372636800000,11296.7],[1375315200000,11329.2],[1377993600000,11366.9],[1380585600000,11419.8],[1383264000000,11487.6],[1385856000000,11517.9],[1388534400000,11512.5],[1391212800000,11566.2],[1393632000000,11643],[1396310400000,11702.6],[1398902400000,11748.4],[1401580800000,11817],[1404172800000,11860.5],[1406851200000,11944.3],[1409529600000,11957.4],[1412121600000,12023],[1414800000000,12051.4],[1417392000000,12062],[1420070400000,12046],[1422748800000,12082.4],[1425168000000,12158.3],[1427846400000,12193.8]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Zoom ----------------------------------------- # Disable apex( data = economics, mapping = aes(x = date, y = pce), type = \"line\" ) %>% ax_chart( zoom = list(enabled = FALSE) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"zoom\":{\"enabled\":false}},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,506.7],[-76377600000,509.8],[-73699200000,515.6],[-71107200000,512.2],[-68428800000,517.4],[-65836800000,525.1],[-63158400000,530.9],[-60480000000,533.6],[-57974400000,544.3],[-55296000000,544],[-52704000000,549.8],[-50025600000,556.3],[-47433600000,563.2],[-44755200000,567],[-42076800000,568.2],[-39484800000,571.6],[-36806400000,576.7],[-34214400000,576.5],[-31536000000,583.5],[-28857600000,588.7],[-26438400000,588.9],[-23760000000,593.9],[-21168000000,600.3],[-18489600000,600.9],[-15897600000,602.7],[-13219200000,609.9],[-10540800000,613.2],[-7948800000,618.5],[-5270400000,620.5],[-2678400000,622.8],[0,628.7],[2678400000,634],[5097600000,632.3],[7776000000,636],[10368000000,642.4],[13046400000,646.3],[15638400000,648.5],[18316800000,652.9],[20995200000,659.1],[23587200000,658.3],[26265600000,656.6],[28857600000,665.6],[31536000000,676.1],[34214400000,679.4],[36633600000,682],[39312000000,688.8],[41904000000,691.1],[44582400000,699.8],[47174400000,698.9],[49852800000,704.9],[52531200000,713],[55123200000,715.8],[57801600000,720.9],[60393600000,728.4],[63072000000,731.5],[65750400000,736.2],[68256000000,749.2],[70934400000,752.5],[73526400000,758],[76204800000,761.6],[78796800000,769.9],[81475200000,776.3],[84153600000,781.1],[86745600000,794.9],[89424000000,800.5],[92016000000,806.1],[94694400000,816.5],[97372800000,825.8],[99792000000,832.8],[102470400000,835.7],[105062400000,841.6],[107740800000,844.3],[110332800000,854.1],[113011200000,853.3],[115689600000,869.2],[118281600000,868.2],[120960000000,876.9],[123552000000,876.6],[126230400000,884.5],[128908800000,889.7],[131328000000,901.4],[134006400000,910.8],[136598400000,922.4],[139276800000,928],[141868800000,937.9],[144547200000,954.8],[147225600000,955.1],[149817600000,959.2],[152496000000,956.2],[155088000000,961.8],[157766400000,975.6],[160444800000,989.4],[162864000000,990.6],[165542400000,995],[168134400000,1018.9],[170812800000,1026.8],[173404800000,1039.8],[176083200000,1047],[178761600000,1054.8],[181353600000,1060.9],[184032000000,1075.8],[186624000000,1092.1],[189302400000,1107.1],[191980800000,1107.7],[194486400000,1114.9],[197164800000,1125.4],[199756800000,1122.7],[202435200000,1140.5],[205027200000,1149.6],[207705600000,1158],[210384000000,1168.8],[212976000000,1176.8],[215654400000,1189],[218246400000,1211.5],[220924800000,1215],[223603200000,1231.3],[226022400000,1238.3],[228700800000,1247.3],[231292800000,1257.1],[233971200000,1263.6],[236563200000,1280.5],[239241600000,1285.7],[241920000000,1294.5],[244512000000,1311.4],[247190400000,1327],[249782400000,1336],[252460800000,1329.5],[255139200000,1355.1],[257558400000,1377.5],[260236800000,1396.4],[262828800000,1412],[265507200000,1425.8],[268099200000,1426.8],[270777600000,1447],[273456000000,1452.9],[276048000000,1466.9],[278726400000,1480.6],[281318400000,1496.5],[283996800000,1502.4],[286675200000,1517.8],[289094400000,1531.2],[291772800000,1538.4],[294364800000,1558.8],[297043200000,1575.7],[299635200000,1586.1],[302313600000,1615.6],[304992000000,1633.9],[307584000000,1641.6],[310262400000,1657.3],[312854400000,1666.3],[315532800000,1697.3],[318211200000,1701.4],[320716800000,1708.2],[323395200000,1695.2],[325987200000,1700.1],[328665600000,1718.8],[331257600000,1747.1],[333936000000,1763.8],[336614400000,1780.5],[339206400000,1817.1],[341884800000,1826.8],[344476800000,1851.7],[347155200000,1870],[349833600000,1884.2],[352252800000,1902.9],[354931200000,1904.4],[357523200000,1913.8],[360201600000,1934.5],[362793600000,1942.1],[365472000000,1966.6],[368150400000,1965.5],[370742400000,1963.9],[373420800000,1970.6],[376012800000,1988.8],[378691200000,1997.1],[381369600000,2021.2],[383788800000,2024.1],[386467200000,2026.3],[389059200000,2044.5],[391737600000,2048.1],[394329600000,2072.2],[397008000000,2080.1],[399686400000,2104.6],[402278400000,2125.8],[404956800000,2149.3],[407548800000,2161.6],[410227200000,2174],[412905600000,2177],[415324800000,2202.8],[418003200000,2226.4],[420595200000,2245.9],[423273600000,2276],[425865600000,2304.4],[428544000000,2320.4],[431222400000,2334.9],[433814400000,2357.6],[436492800000,2366.3],[439084800000,2393.6],[441763200000,2419.4],[444441600000,2403.5],[446947200000,2431.6],[449625600000,2457.5],[452217600000,2474.5],[454896000000,2495.6],[457488000000,2494.6],[460166400000,2512.2],[462844800000,2533.8],[465436800000,2531.3],[468115200000,2571.4],[470707200000,2582.6],[473385600000,2618.8],[476064000000,2640.8],[478483200000,2648.5],[481161600000,2659.5],[483753600000,2696.4],[486432000000,2689.4],[489024000000,2715.7],[491702400000,2752.1],[494380800000,2794.7],[496972800000,2755.8],[499651200000,2771.1],[502243200000,2811.3],[504921600000,2827.1],[507600000000,2820.2],[510019200000,2823.6],[512697600000,2835.2],[515289600000,2857.5],[517968000000,2861.7],[520560000000,2881.2],[523238400000,2898.6],[525916800000,2971.8],[528508800000,2932.9],[531187200000,2928.4],[533779200000,2997.1],[536457600000,2935.5],[539136000000,3001.7],[541555200000,3013.3],[544233600000,3038.8],[546825600000,3048.4],[549504000000,3072.8],[552096000000,3094.7],[554774400000,3130.8],[557452800000,3126.5],[560044800000,3134.5],[562723200000,3144.2],[565315200000,3174.1],[567993600000,3213.7],[570672000000,3221.4],[573177600000,3260.5],[575856000000,3263],[578448000000,3293.6],[581126400000,3318.5],[583718400000,3342.7],[586396800000,3368],[589075200000,3375],[591667200000,3413.7],[594345600000,3430.2],[596937600000,3459.7],[599616000000,3483.7],[602294400000,3488],[604713600000,3498.8],[607392000000,3543],[609984000000,3551.8],[612662400000,3566.6],[615254400000,3585.7],[617932800000,3620.6],[620611200000,3621.9],[623203200000,3633.6],[625881600000,3643.3],[628473600000,3684.2],[631152000000,3730.7],[633830400000,3728.2],[636249600000,3754.9],[638928000000,3770],[641520000000,3775.8],[644198400000,3804.5],[646790400000,3821.7],[649468800000,3848.3],[652147200000,3870.1],[654739200000,3870.6],[657417600000,3871.9],[660009600000,3861.3],[662688000000,3841],[665366400000,3866.7],[667785600000,3913],[670464000000,3907.1],[673056000000,3933.2],[675734400000,3940.5],[678326400000,3966],[681004800000,3969.1],[683683200000,3984.7],[686275200000,3976],[688953600000,4003.6],[691545600000,4020.5],[694224000000,4084.7],[696902400000,4099.5],[699408000000,4117],[702086400000,4131.5],[704678400000,4158.4],[707356800000,4177.1],[709948800000,4204.8],[712627200000,4220.9],[715305600000,4255.3],[717897600000,4284.7],[720576000000,4300.5],[723168000000,4336.4],[725846400000,4340.7],[728524800000,4355.3],[730944000000,4352.5],[733622400000,4393.4],[736214400000,4422.4],[738892800000,4440],[741484800000,4468.9],[744163200000,4481.1],[746841600000,4511.5],[749433600000,4532.8],[752112000000,4554.1],[754704000000,4571.1],[757382400000,4585.1],[760060800000,4632.6],[762480000000,4646],[765158400000,4671.1],[767750400000,4669.5],[770428800000,4708.9],[773020800000,4720.6],[775699200000,4762.6],[778377600000,4775],[780969600000,4812.9],[783648000000,4825.6],[786240000000,4841.6],[788918400000,4851.2],[791596800000,4850.8],[794016000000,4885.4],[796694400000,4890.2],[799286400000,4933.1],[801964800000,4977.5],[804556800000,4970.2],[807235200000,5005.3],[809913600000,5020.5],[812505600000,5013.9],[815184000000,5055.6],[817776000000,5097.5],[820454400000,5085.7],[823132800000,5132.8],[825638400000,5173.3],[828316800000,5208],[830908800000,5223.8],[833587200000,5229.8],[836179200000,5251.9],[838857600000,5275],[841536000000,5296.6],[844128000000,5328.5],[846806400000,5351.2],[849398400000,5378.6],[852076800000,5411.1],[854755200000,5434],[857174400000,5454.2],[859852800000,5459.3],[862444800000,5460.2],[865123200000,5494.2],[867715200000,5548.8],[870393600000,5587],[873072000000,5601.7],[875664000000,5637.7],[878342400000,5661.1],[880934400000,5692.1],[883612800000,5689.9],[886291200000,5723.8],[888710400000,5750.3],[891388800000,5788.1],[893980800000,5837.9],[896659200000,5871.7],[899251200000,5890],[901929600000,5925],[904608000000,5965.6],[907200000000,5998.8],[909878400000,6015.4],[912470400000,6070.5],[915148800000,6072.9],[917827200000,6101.8],[920246400000,6132.9],[922924800000,6196.2],[925516800000,6225.7],[928195200000,6254],[930787200000,6281.5],[933465600000,6326.5],[936144000000,6378.8],[938736000000,6402.1],[941414400000,6437.9],[944006400000,6538.7],[946684800000,6535.3],[949363200000,6619.7],[951868800000,6685.8],[954547200000,6671.1],[957139200000,6707.6],[959817600000,6743.9],[962409600000,6764.1],[965088000000,6799.1],[967766400000,6882.9],[970358400000,6888.2],[973036800000,6902.4],[975628800000,6945.7],[978307200000,6977],[980985600000,6995.8],[983404800000,6987.9],[986083200000,7001.2],[988675200000,7047.1],[991353600000,7060.7],[993945600000,7072.2],[996624000000,7108.9],[999302400000,7012.8],[1001894400000,7208.4],[1004572800000,7167.9],[1007164800000,7147.7],[1009843200000,7174.3],[1012521600000,7218.3],[1014940800000,7237.2],[1017619200000,7305.4],[1020211200000,7282.7],[1022889600000,7318.2],[1025481600000,7380.4],[1028160000000,7401.5],[1030838400000,7391],[1033430400000,7430.7],[1036108800000,7459.7],[1038700800000,7512.8],[1041379200000,7533.1],[1044057600000,7535.9],[1046476800000,7598.4],[1049155200000,7621],[1051747200000,7628.1],[1054425600000,7678.6],[1057017600000,7738.2],[1059696000000,7834.5],[1062374400000,7835],[1064966400000,7845.7],[1067644800000,7899.6],[1070236800000,7929.2],[1072915200000,7987.4],[1075593600000,8019.8],[1078099200000,8076],[1080777600000,8088.6],[1083369600000,8163.2],[1086048000000,8147.2],[1088640000000,8218.9],[1091318400000,8253.1],[1093996800000,8321.1],[1096588800000,8374.6],[1099267200000,8420.6],[1101859200000,8481.5],[1104537600000,8470.200000000001],[1107216000000,8529.200000000001],[1109635200000,8569.5],[1112313600000,8645.6],[1114905600000,8643.9],[1117584000000,8724.799999999999],[1120176000000,8829.5],[1122854400000,8832.4],[1125532800000,8885.799999999999],[1128124800000,8926.6],[1130803200000,8938.5],[1133395200000,8969.6],[1136073600000,9059.799999999999],[1138752000000,9090.1],[1141171200000,9122.1],[1143849600000,9174.799999999999],[1146441600000,9215.1],[1149120000000,9240.799999999999],[1151712000000,9322.6],[1154390400000,9321.799999999999],[1157068800000,9354.700000000001],[1159660800000,9373.200000000001],[1162339200000,9380.200000000001],[1164931200000,9469],[1167609600000,9516.299999999999],[1170288000000,9546.799999999999],[1172707200000,9585.1],[1175385600000,9615.700000000001],[1177977600000,9651.299999999999],[1180656000000,9667.299999999999],[1183248000000,9709.6],[1185926400000,9753.9],[1188604800000,9797.9],[1191196800000,9827],[1193875200000,9897.799999999999],[1196467200000,9908.4],[1199145600000,9930],[1201824000000,9913.4],[1204329600000,9959.4],[1207008000000,9996.799999999999],[1209600000000,10053.8],[1212278400000,10107.9],[1214870400000,10104.7],[1217548800000,10094.7],[1220227200000,10043.5],[1222819200000,9960.299999999999],[1225497600000,9820.799999999999],[1228089600000,9730.700000000001],[1230768000000,9783.799999999999],[1233446400000,9766],[1235865600000,9718.5],[1238544000000,9724.799999999999],[1241136000000,9748.9],[1243814400000,9806.9],[1246406400000,9841.700000000001],[1249084800000,9961],[1251763200000,9883.4],[1254355200000,9931.9],[1257033600000,9940.5],[1259625600000,9998.9],[1262304000000,10001.8],[1264982400000,10030.6],[1267401600000,10089.1],[1270080000000,10112.9],[1272672000000,10131],[1275350400000,10151.4],[1277942400000,10184.7],[1280620800000,10228.2],[1283299200000,10249],[1285891200000,10304.7],[1288569600000,10354.7],[1291161600000,10392.1],[1293840000000,10435.5],[1296518400000,10470.1],[1298937600000,10550.5],[1301616000000,10587.6],[1304208000000,10612],[1306886400000,10636.8],[1309478400000,10677.5],[1312156800000,10700.6],[1314835200000,10738.1],[1317427200000,10753.1],[1320105600000,10759.5],[1322697600000,10772.2],[1325376000000,10862.1],[1328054400000,10953.5],[1330560000000,10951.8],[1333238400000,10979.7],[1335830400000,10968.6],[1338508800000,10946.3],[1341100800000,10977.2],[1343779200000,11004.1],[1346457600000,11061.5],[1349049600000,11099.8],[1351728000000,11136.8],[1354320000000,11140.5],[1356998400000,11202.8],[1359676800000,11239.6],[1362096000000,11227.1],[1364774400000,11205.4],[1367366400000,11244.6],[1370044800000,11268.8],[1372636800000,11296.7],[1375315200000,11329.2],[1377993600000,11366.9],[1380585600000,11419.8],[1383264000000,11487.6],[1385856000000,11517.9],[1388534400000,11512.5],[1391212800000,11566.2],[1393632000000,11643],[1396310400000,11702.6],[1398902400000,11748.4],[1401580800000,11817],[1404172800000,11860.5],[1406851200000,11944.3],[1409529600000,11957.4],[1412121600000,12023],[1414800000000,12051.4],[1417392000000,12062],[1420070400000,12046],[1422748800000,12082.4],[1425168000000,12158.3],[1427846400000,12193.8]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Auto-scale Y axis apex( data = economics, mapping = aes(x = date, y = pce), type = \"line\" ) %>% ax_chart( zoom = list(autoScaleYaxis = TRUE) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"zoom\":{\"autoScaleYaxis\":true}},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,506.7],[-76377600000,509.8],[-73699200000,515.6],[-71107200000,512.2],[-68428800000,517.4],[-65836800000,525.1],[-63158400000,530.9],[-60480000000,533.6],[-57974400000,544.3],[-55296000000,544],[-52704000000,549.8],[-50025600000,556.3],[-47433600000,563.2],[-44755200000,567],[-42076800000,568.2],[-39484800000,571.6],[-36806400000,576.7],[-34214400000,576.5],[-31536000000,583.5],[-28857600000,588.7],[-26438400000,588.9],[-23760000000,593.9],[-21168000000,600.3],[-18489600000,600.9],[-15897600000,602.7],[-13219200000,609.9],[-10540800000,613.2],[-7948800000,618.5],[-5270400000,620.5],[-2678400000,622.8],[0,628.7],[2678400000,634],[5097600000,632.3],[7776000000,636],[10368000000,642.4],[13046400000,646.3],[15638400000,648.5],[18316800000,652.9],[20995200000,659.1],[23587200000,658.3],[26265600000,656.6],[28857600000,665.6],[31536000000,676.1],[34214400000,679.4],[36633600000,682],[39312000000,688.8],[41904000000,691.1],[44582400000,699.8],[47174400000,698.9],[49852800000,704.9],[52531200000,713],[55123200000,715.8],[57801600000,720.9],[60393600000,728.4],[63072000000,731.5],[65750400000,736.2],[68256000000,749.2],[70934400000,752.5],[73526400000,758],[76204800000,761.6],[78796800000,769.9],[81475200000,776.3],[84153600000,781.1],[86745600000,794.9],[89424000000,800.5],[92016000000,806.1],[94694400000,816.5],[97372800000,825.8],[99792000000,832.8],[102470400000,835.7],[105062400000,841.6],[107740800000,844.3],[110332800000,854.1],[113011200000,853.3],[115689600000,869.2],[118281600000,868.2],[120960000000,876.9],[123552000000,876.6],[126230400000,884.5],[128908800000,889.7],[131328000000,901.4],[134006400000,910.8],[136598400000,922.4],[139276800000,928],[141868800000,937.9],[144547200000,954.8],[147225600000,955.1],[149817600000,959.2],[152496000000,956.2],[155088000000,961.8],[157766400000,975.6],[160444800000,989.4],[162864000000,990.6],[165542400000,995],[168134400000,1018.9],[170812800000,1026.8],[173404800000,1039.8],[176083200000,1047],[178761600000,1054.8],[181353600000,1060.9],[184032000000,1075.8],[186624000000,1092.1],[189302400000,1107.1],[191980800000,1107.7],[194486400000,1114.9],[197164800000,1125.4],[199756800000,1122.7],[202435200000,1140.5],[205027200000,1149.6],[207705600000,1158],[210384000000,1168.8],[212976000000,1176.8],[215654400000,1189],[218246400000,1211.5],[220924800000,1215],[223603200000,1231.3],[226022400000,1238.3],[228700800000,1247.3],[231292800000,1257.1],[233971200000,1263.6],[236563200000,1280.5],[239241600000,1285.7],[241920000000,1294.5],[244512000000,1311.4],[247190400000,1327],[249782400000,1336],[252460800000,1329.5],[255139200000,1355.1],[257558400000,1377.5],[260236800000,1396.4],[262828800000,1412],[265507200000,1425.8],[268099200000,1426.8],[270777600000,1447],[273456000000,1452.9],[276048000000,1466.9],[278726400000,1480.6],[281318400000,1496.5],[283996800000,1502.4],[286675200000,1517.8],[289094400000,1531.2],[291772800000,1538.4],[294364800000,1558.8],[297043200000,1575.7],[299635200000,1586.1],[302313600000,1615.6],[304992000000,1633.9],[307584000000,1641.6],[310262400000,1657.3],[312854400000,1666.3],[315532800000,1697.3],[318211200000,1701.4],[320716800000,1708.2],[323395200000,1695.2],[325987200000,1700.1],[328665600000,1718.8],[331257600000,1747.1],[333936000000,1763.8],[336614400000,1780.5],[339206400000,1817.1],[341884800000,1826.8],[344476800000,1851.7],[347155200000,1870],[349833600000,1884.2],[352252800000,1902.9],[354931200000,1904.4],[357523200000,1913.8],[360201600000,1934.5],[362793600000,1942.1],[365472000000,1966.6],[368150400000,1965.5],[370742400000,1963.9],[373420800000,1970.6],[376012800000,1988.8],[378691200000,1997.1],[381369600000,2021.2],[383788800000,2024.1],[386467200000,2026.3],[389059200000,2044.5],[391737600000,2048.1],[394329600000,2072.2],[397008000000,2080.1],[399686400000,2104.6],[402278400000,2125.8],[404956800000,2149.3],[407548800000,2161.6],[410227200000,2174],[412905600000,2177],[415324800000,2202.8],[418003200000,2226.4],[420595200000,2245.9],[423273600000,2276],[425865600000,2304.4],[428544000000,2320.4],[431222400000,2334.9],[433814400000,2357.6],[436492800000,2366.3],[439084800000,2393.6],[441763200000,2419.4],[444441600000,2403.5],[446947200000,2431.6],[449625600000,2457.5],[452217600000,2474.5],[454896000000,2495.6],[457488000000,2494.6],[460166400000,2512.2],[462844800000,2533.8],[465436800000,2531.3],[468115200000,2571.4],[470707200000,2582.6],[473385600000,2618.8],[476064000000,2640.8],[478483200000,2648.5],[481161600000,2659.5],[483753600000,2696.4],[486432000000,2689.4],[489024000000,2715.7],[491702400000,2752.1],[494380800000,2794.7],[496972800000,2755.8],[499651200000,2771.1],[502243200000,2811.3],[504921600000,2827.1],[507600000000,2820.2],[510019200000,2823.6],[512697600000,2835.2],[515289600000,2857.5],[517968000000,2861.7],[520560000000,2881.2],[523238400000,2898.6],[525916800000,2971.8],[528508800000,2932.9],[531187200000,2928.4],[533779200000,2997.1],[536457600000,2935.5],[539136000000,3001.7],[541555200000,3013.3],[544233600000,3038.8],[546825600000,3048.4],[549504000000,3072.8],[552096000000,3094.7],[554774400000,3130.8],[557452800000,3126.5],[560044800000,3134.5],[562723200000,3144.2],[565315200000,3174.1],[567993600000,3213.7],[570672000000,3221.4],[573177600000,3260.5],[575856000000,3263],[578448000000,3293.6],[581126400000,3318.5],[583718400000,3342.7],[586396800000,3368],[589075200000,3375],[591667200000,3413.7],[594345600000,3430.2],[596937600000,3459.7],[599616000000,3483.7],[602294400000,3488],[604713600000,3498.8],[607392000000,3543],[609984000000,3551.8],[612662400000,3566.6],[615254400000,3585.7],[617932800000,3620.6],[620611200000,3621.9],[623203200000,3633.6],[625881600000,3643.3],[628473600000,3684.2],[631152000000,3730.7],[633830400000,3728.2],[636249600000,3754.9],[638928000000,3770],[641520000000,3775.8],[644198400000,3804.5],[646790400000,3821.7],[649468800000,3848.3],[652147200000,3870.1],[654739200000,3870.6],[657417600000,3871.9],[660009600000,3861.3],[662688000000,3841],[665366400000,3866.7],[667785600000,3913],[670464000000,3907.1],[673056000000,3933.2],[675734400000,3940.5],[678326400000,3966],[681004800000,3969.1],[683683200000,3984.7],[686275200000,3976],[688953600000,4003.6],[691545600000,4020.5],[694224000000,4084.7],[696902400000,4099.5],[699408000000,4117],[702086400000,4131.5],[704678400000,4158.4],[707356800000,4177.1],[709948800000,4204.8],[712627200000,4220.9],[715305600000,4255.3],[717897600000,4284.7],[720576000000,4300.5],[723168000000,4336.4],[725846400000,4340.7],[728524800000,4355.3],[730944000000,4352.5],[733622400000,4393.4],[736214400000,4422.4],[738892800000,4440],[741484800000,4468.9],[744163200000,4481.1],[746841600000,4511.5],[749433600000,4532.8],[752112000000,4554.1],[754704000000,4571.1],[757382400000,4585.1],[760060800000,4632.6],[762480000000,4646],[765158400000,4671.1],[767750400000,4669.5],[770428800000,4708.9],[773020800000,4720.6],[775699200000,4762.6],[778377600000,4775],[780969600000,4812.9],[783648000000,4825.6],[786240000000,4841.6],[788918400000,4851.2],[791596800000,4850.8],[794016000000,4885.4],[796694400000,4890.2],[799286400000,4933.1],[801964800000,4977.5],[804556800000,4970.2],[807235200000,5005.3],[809913600000,5020.5],[812505600000,5013.9],[815184000000,5055.6],[817776000000,5097.5],[820454400000,5085.7],[823132800000,5132.8],[825638400000,5173.3],[828316800000,5208],[830908800000,5223.8],[833587200000,5229.8],[836179200000,5251.9],[838857600000,5275],[841536000000,5296.6],[844128000000,5328.5],[846806400000,5351.2],[849398400000,5378.6],[852076800000,5411.1],[854755200000,5434],[857174400000,5454.2],[859852800000,5459.3],[862444800000,5460.2],[865123200000,5494.2],[867715200000,5548.8],[870393600000,5587],[873072000000,5601.7],[875664000000,5637.7],[878342400000,5661.1],[880934400000,5692.1],[883612800000,5689.9],[886291200000,5723.8],[888710400000,5750.3],[891388800000,5788.1],[893980800000,5837.9],[896659200000,5871.7],[899251200000,5890],[901929600000,5925],[904608000000,5965.6],[907200000000,5998.8],[909878400000,6015.4],[912470400000,6070.5],[915148800000,6072.9],[917827200000,6101.8],[920246400000,6132.9],[922924800000,6196.2],[925516800000,6225.7],[928195200000,6254],[930787200000,6281.5],[933465600000,6326.5],[936144000000,6378.8],[938736000000,6402.1],[941414400000,6437.9],[944006400000,6538.7],[946684800000,6535.3],[949363200000,6619.7],[951868800000,6685.8],[954547200000,6671.1],[957139200000,6707.6],[959817600000,6743.9],[962409600000,6764.1],[965088000000,6799.1],[967766400000,6882.9],[970358400000,6888.2],[973036800000,6902.4],[975628800000,6945.7],[978307200000,6977],[980985600000,6995.8],[983404800000,6987.9],[986083200000,7001.2],[988675200000,7047.1],[991353600000,7060.7],[993945600000,7072.2],[996624000000,7108.9],[999302400000,7012.8],[1001894400000,7208.4],[1004572800000,7167.9],[1007164800000,7147.7],[1009843200000,7174.3],[1012521600000,7218.3],[1014940800000,7237.2],[1017619200000,7305.4],[1020211200000,7282.7],[1022889600000,7318.2],[1025481600000,7380.4],[1028160000000,7401.5],[1030838400000,7391],[1033430400000,7430.7],[1036108800000,7459.7],[1038700800000,7512.8],[1041379200000,7533.1],[1044057600000,7535.9],[1046476800000,7598.4],[1049155200000,7621],[1051747200000,7628.1],[1054425600000,7678.6],[1057017600000,7738.2],[1059696000000,7834.5],[1062374400000,7835],[1064966400000,7845.7],[1067644800000,7899.6],[1070236800000,7929.2],[1072915200000,7987.4],[1075593600000,8019.8],[1078099200000,8076],[1080777600000,8088.6],[1083369600000,8163.2],[1086048000000,8147.2],[1088640000000,8218.9],[1091318400000,8253.1],[1093996800000,8321.1],[1096588800000,8374.6],[1099267200000,8420.6],[1101859200000,8481.5],[1104537600000,8470.200000000001],[1107216000000,8529.200000000001],[1109635200000,8569.5],[1112313600000,8645.6],[1114905600000,8643.9],[1117584000000,8724.799999999999],[1120176000000,8829.5],[1122854400000,8832.4],[1125532800000,8885.799999999999],[1128124800000,8926.6],[1130803200000,8938.5],[1133395200000,8969.6],[1136073600000,9059.799999999999],[1138752000000,9090.1],[1141171200000,9122.1],[1143849600000,9174.799999999999],[1146441600000,9215.1],[1149120000000,9240.799999999999],[1151712000000,9322.6],[1154390400000,9321.799999999999],[1157068800000,9354.700000000001],[1159660800000,9373.200000000001],[1162339200000,9380.200000000001],[1164931200000,9469],[1167609600000,9516.299999999999],[1170288000000,9546.799999999999],[1172707200000,9585.1],[1175385600000,9615.700000000001],[1177977600000,9651.299999999999],[1180656000000,9667.299999999999],[1183248000000,9709.6],[1185926400000,9753.9],[1188604800000,9797.9],[1191196800000,9827],[1193875200000,9897.799999999999],[1196467200000,9908.4],[1199145600000,9930],[1201824000000,9913.4],[1204329600000,9959.4],[1207008000000,9996.799999999999],[1209600000000,10053.8],[1212278400000,10107.9],[1214870400000,10104.7],[1217548800000,10094.7],[1220227200000,10043.5],[1222819200000,9960.299999999999],[1225497600000,9820.799999999999],[1228089600000,9730.700000000001],[1230768000000,9783.799999999999],[1233446400000,9766],[1235865600000,9718.5],[1238544000000,9724.799999999999],[1241136000000,9748.9],[1243814400000,9806.9],[1246406400000,9841.700000000001],[1249084800000,9961],[1251763200000,9883.4],[1254355200000,9931.9],[1257033600000,9940.5],[1259625600000,9998.9],[1262304000000,10001.8],[1264982400000,10030.6],[1267401600000,10089.1],[1270080000000,10112.9],[1272672000000,10131],[1275350400000,10151.4],[1277942400000,10184.7],[1280620800000,10228.2],[1283299200000,10249],[1285891200000,10304.7],[1288569600000,10354.7],[1291161600000,10392.1],[1293840000000,10435.5],[1296518400000,10470.1],[1298937600000,10550.5],[1301616000000,10587.6],[1304208000000,10612],[1306886400000,10636.8],[1309478400000,10677.5],[1312156800000,10700.6],[1314835200000,10738.1],[1317427200000,10753.1],[1320105600000,10759.5],[1322697600000,10772.2],[1325376000000,10862.1],[1328054400000,10953.5],[1330560000000,10951.8],[1333238400000,10979.7],[1335830400000,10968.6],[1338508800000,10946.3],[1341100800000,10977.2],[1343779200000,11004.1],[1346457600000,11061.5],[1349049600000,11099.8],[1351728000000,11136.8],[1354320000000,11140.5],[1356998400000,11202.8],[1359676800000,11239.6],[1362096000000,11227.1],[1364774400000,11205.4],[1367366400000,11244.6],[1370044800000,11268.8],[1372636800000,11296.7],[1375315200000,11329.2],[1377993600000,11366.9],[1380585600000,11419.8],[1383264000000,11487.6],[1385856000000,11517.9],[1388534400000,11512.5],[1391212800000,11566.2],[1393632000000,11643],[1396310400000,11702.6],[1398902400000,11748.4],[1401580800000,11817],[1404172800000,11860.5],[1406851200000,11944.3],[1409529600000,11957.4],[1412121600000,12023],[1414800000000,12051.4],[1417392000000,12062],[1420070400000,12046],[1422748800000,12082.4],[1425168000000,12158.3],[1427846400000,12193.8]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Localization --------------------------------- # Use included localization config dat <- data.frame( x = Sys.Date() + 1:20, y = sample.int(20, 20) ) # French apex(dat, aes(x, y), \"line\") %>% ax_chart(defaultLocale = \"fr\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"defaultLocale\":\"fr\",\"locales\":[{\"name\":\"fr\",\"options\":{\"months\":[\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\"],\"shortMonths\":[\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juill.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\"],\"days\":[\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\"shortDays\":[\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\"toolbar\":{\"exportToSVG\":\"Télécharger au format SVG\",\"exportToPNG\":\"Télécharger au format PNG\",\"exportToCSV\":\"Télécharger au format CSV\",\"menu\":\"Menu\",\"selection\":\"Sélection\",\"selectionZoom\":\"Sélection et zoom\",\"zoomIn\":\"Zoomer\",\"zoomOut\":\"Dézoomer\",\"pan\":\"Navigation\",\"reset\":\"Réinitialiser le zoom\"}}}]},\"series\":[{\"name\":\"y\",\"type\":\"line\",\"data\":[[1715904000000,3],[1715990400000,6],[1716076800000,4],[1716163200000,10],[1716249600000,1],[1716336000000,7],[1716422400000,19],[1716508800000,14],[1716595200000,20],[1716681600000,9],[1716768000000,2],[1716854400000,8],[1716940800000,16],[1717027200000,18],[1717113600000,11],[1717200000000,15],[1717286400000,17],[1717372800000,13],[1717459200000,5],[1717545600000,12]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2024-05-17\",\"max\":\"2024-06-05\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Italian apex(dat, aes(x, y), \"line\") %>% ax_chart(defaultLocale = \"it\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"defaultLocale\":\"it\",\"locales\":[{\"name\":\"it\",\"options\":{\"months\":[\"Gennaio\",\"Febbraio\",\"Marzo\",\"Aprile\",\"Maggio\",\"Giugno\",\"Luglio\",\"Agosto\",\"Settembre\",\"Ottobre\",\"Novembre\",\"Dicembre\"],\"shortMonths\":[\"Gen\",\"Feb\",\"Mar\",\"Apr\",\"Mag\",\"Giu\",\"Lug\",\"Ago\",\"Set\",\"Ott\",\"Nov\",\"Dic\"],\"days\":[\"Domenica\",\"Lunedì\",\"Martedì\",\"Mercoledì\",\"Giovedì\",\"Venerdì\",\"Sabato\"],\"shortDays\":[\"Dom\",\"Lun\",\"Mar\",\"Mer\",\"Gio\",\"Ven\",\"Sab\"],\"toolbar\":{\"exportToSVG\":\"Scarica SVG\",\"exportToPNG\":\"Scarica PNG\",\"exportToCSV\":\"Scarica CSV\",\"menu\":\"Menu\",\"selection\":\"Selezione\",\"selectionZoom\":\"Seleziona Zoom\",\"zoomIn\":\"Zoom In\",\"zoomOut\":\"Zoom Out\",\"pan\":\"Sposta\",\"reset\":\"Reimposta Zoom\"}}}]},\"series\":[{\"name\":\"y\",\"type\":\"line\",\"data\":[[1715904000000,3],[1715990400000,6],[1716076800000,4],[1716163200000,10],[1716249600000,1],[1716336000000,7],[1716422400000,19],[1716508800000,14],[1716595200000,20],[1716681600000,9],[1716768000000,2],[1716854400000,8],[1716940800000,16],[1717027200000,18],[1717113600000,11],[1717200000000,15],[1717286400000,17],[1717372800000,13],[1717459200000,5],[1717545600000,12]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2024-05-17\",\"max\":\"2024-06-05\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Custom config apex(dat, aes(x, y), \"line\") %>% ax_chart(locales = list( list( name = \"en\", # override 'en' locale options = list( toolbar = list( exportToSVG = \"GET SVG\", exportToPNG = \"GET PNG\" ) ) ) )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"locales\":[{\"name\":\"en\",\"options\":{\"toolbar\":{\"exportToSVG\":\"GET SVG\",\"exportToPNG\":\"GET PNG\"}}}]},\"series\":[{\"name\":\"y\",\"type\":\"line\",\"data\":[[1715904000000,3],[1715990400000,6],[1716076800000,4],[1716163200000,10],[1716249600000,1],[1716336000000,7],[1716422400000,19],[1716508800000,14],[1716595200000,20],[1716681600000,9],[1716768000000,2],[1716854400000,8],[1716940800000,16],[1717027200000,18],[1717113600000,11],[1717200000000,15],[1717286400000,17],[1717372800000,13],[1717459200000,5],[1717545600000,12]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2024-05-17\",\"max\":\"2024-06-05\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors.html","id":null,"dir":"Reference","previous_headings":"","what":"Colors — ax_colors","title":"Colors — ax_colors","text":"Colors","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Colors — ax_colors","text":"","code":"ax_colors(ax, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Colors — ax_colors","text":"ax apexchart() htmlwidget object. ... Colors chart's series. colors used, starts beginning.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Colors — ax_colors","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Colors — ax_colors","text":"See https://apexcharts.com/docs/options/colors/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Colors — ax_colors","text":"","code":"data(\"diamonds\", package = \"ggplot2\") # Change default color(s) apex( data = diamonds, mapping = aes(x = cut) ) %>% ax_colors(\"#F7D358\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":1610},{\"x\":\"Good\",\"y\":4906},{\"x\":\"Very Good\",\"y\":12082},{\"x\":\"Premium\",\"y\":13791},{\"x\":\"Ideal\",\"y\":21551}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"colors\":[\"#F7D358\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} library(scales) apex( data = diamonds, mapping = aes(x = cut, fill = color) ) %>% ax_colors(brewer_pal(palette = \"Set2\")(7)) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"D\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":163},{\"x\":\"Good\",\"y\":662},{\"x\":\"Very Good\",\"y\":1513},{\"x\":\"Premium\",\"y\":1603},{\"x\":\"Ideal\",\"y\":2834}]},{\"name\":\"E\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":224},{\"x\":\"Good\",\"y\":933},{\"x\":\"Very Good\",\"y\":2400},{\"x\":\"Premium\",\"y\":2337},{\"x\":\"Ideal\",\"y\":3903}]},{\"name\":\"F\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":312},{\"x\":\"Good\",\"y\":909},{\"x\":\"Very Good\",\"y\":2164},{\"x\":\"Premium\",\"y\":2331},{\"x\":\"Ideal\",\"y\":3826}]},{\"name\":\"G\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":314},{\"x\":\"Good\",\"y\":871},{\"x\":\"Very Good\",\"y\":2299},{\"x\":\"Premium\",\"y\":2924},{\"x\":\"Ideal\",\"y\":4884}]},{\"name\":\"H\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":303},{\"x\":\"Good\",\"y\":702},{\"x\":\"Very Good\",\"y\":1824},{\"x\":\"Premium\",\"y\":2360},{\"x\":\"Ideal\",\"y\":3115}]},{\"name\":\"I\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":175},{\"x\":\"Good\",\"y\":522},{\"x\":\"Very Good\",\"y\":1204},{\"x\":\"Premium\",\"y\":1428},{\"x\":\"Ideal\",\"y\":2093}]},{\"name\":\"J\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":119},{\"x\":\"Good\",\"y\":307},{\"x\":\"Very Good\",\"y\":678},{\"x\":\"Premium\",\"y\":808},{\"x\":\"Ideal\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"colors\":[\"#66C2A5\",\"#FC8D62\",\"#8DA0CB\",\"#E78AC3\",\"#A6D854\",\"#FFD92F\",\"#E5C494\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors_manual.html","id":null,"dir":"Reference","previous_headings":"","what":"Set specific color's series — ax_colors_manual","title":"Set specific color's series — ax_colors_manual","text":"Set specific color's series","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors_manual.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Set specific color's series — ax_colors_manual","text":"","code":"ax_colors_manual(ax, values)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors_manual.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Set specific color's series — ax_colors_manual","text":"ax apexchart() htmlwidget object. values Named list, names represent data series, values colors use.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors_manual.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Set specific color's series — ax_colors_manual","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors_manual.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Set specific color's series — ax_colors_manual","text":"","code":"## scatter apex( data = mtcars, type = \"scatter\", mapping = aes(x = wt, y = mpg, fill = cyl) ) %>% ax_colors_manual(list( \"4\" = \"steelblue\", \"6\" = \"firebrick\", \"8\" = \"forestgreen\" )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"6\",\"type\":\"scatter\",\"data\":[{\"x\":2.62,\"y\":21},{\"x\":2.875,\"y\":21},{\"x\":3.215,\"y\":21.4},{\"x\":3.44,\"y\":19.2},{\"x\":3.44,\"y\":17.8},{\"x\":3.46,\"y\":18.1},{\"x\":2.77,\"y\":19.7}]},{\"name\":\"4\",\"type\":\"scatter\",\"data\":[{\"x\":2.32,\"y\":22.8},{\"x\":3.19,\"y\":24.4},{\"x\":3.15,\"y\":22.8},{\"x\":2.2,\"y\":32.4},{\"x\":1.615,\"y\":30.4},{\"x\":1.835,\"y\":33.9},{\"x\":2.465,\"y\":21.5},{\"x\":1.935,\"y\":27.3},{\"x\":2.14,\"y\":26},{\"x\":1.513,\"y\":30.4},{\"x\":2.78,\"y\":21.4}]},{\"name\":\"8\",\"type\":\"scatter\",\"data\":[{\"x\":3.44,\"y\":18.7},{\"x\":3.57,\"y\":14.3},{\"x\":3.57,\"y\":15},{\"x\":4.07,\"y\":16.4},{\"x\":3.73,\"y\":17.3},{\"x\":3.78,\"y\":15.2},{\"x\":5.25,\"y\":10.4},{\"x\":5.424,\"y\":10.4},{\"x\":5.345,\"y\":14.7},{\"x\":3.52,\"y\":15.5},{\"x\":3.435,\"y\":15.2},{\"x\":3.84,\"y\":13.3},{\"x\":3.845,\"y\":19.2},{\"x\":3.17,\"y\":15.8}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":1,\"max\":6,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":10,\"max\":35,\"tickAmount\":5,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"colors\":[\"firebrick\",\"steelblue\",\"forestgreen\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":1.513,\"max\":5.424},\"type\":\"scatter\",\"colors_manual\":{\"4\":\"steelblue\",\"6\":\"firebrick\",\"8\":\"forestgreen\"}},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # If missing level, colors are recycled apex( data = mtcars, type = \"scatter\", mapping = aes(x = wt, y = mpg, fill = cyl) ) %>% ax_colors_manual(list( \"4\" = \"steelblue\", \"8\" = \"forestgreen\" )) #> Warning: Some groups doesn't have a corresponding color value {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"6\",\"type\":\"scatter\",\"data\":[{\"x\":2.62,\"y\":21},{\"x\":2.875,\"y\":21},{\"x\":3.215,\"y\":21.4},{\"x\":3.44,\"y\":19.2},{\"x\":3.44,\"y\":17.8},{\"x\":3.46,\"y\":18.1},{\"x\":2.77,\"y\":19.7}]},{\"name\":\"4\",\"type\":\"scatter\",\"data\":[{\"x\":2.32,\"y\":22.8},{\"x\":3.19,\"y\":24.4},{\"x\":3.15,\"y\":22.8},{\"x\":2.2,\"y\":32.4},{\"x\":1.615,\"y\":30.4},{\"x\":1.835,\"y\":33.9},{\"x\":2.465,\"y\":21.5},{\"x\":1.935,\"y\":27.3},{\"x\":2.14,\"y\":26},{\"x\":1.513,\"y\":30.4},{\"x\":2.78,\"y\":21.4}]},{\"name\":\"8\",\"type\":\"scatter\",\"data\":[{\"x\":3.44,\"y\":18.7},{\"x\":3.57,\"y\":14.3},{\"x\":3.57,\"y\":15},{\"x\":4.07,\"y\":16.4},{\"x\":3.73,\"y\":17.3},{\"x\":3.78,\"y\":15.2},{\"x\":5.25,\"y\":10.4},{\"x\":5.424,\"y\":10.4},{\"x\":5.345,\"y\":14.7},{\"x\":3.52,\"y\":15.5},{\"x\":3.435,\"y\":15.2},{\"x\":3.84,\"y\":13.3},{\"x\":3.845,\"y\":19.2},{\"x\":3.17,\"y\":15.8}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":1,\"max\":6,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":10,\"max\":35,\"tickAmount\":5,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"colors\":[\"steelblue\",\"forestgreen\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":1.513,\"max\":5.424},\"type\":\"scatter\",\"colors_manual\":{\"4\":\"steelblue\",\"8\":\"forestgreen\"}},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # Ignore levels not present in data apex( data = mtcars, type = \"scatter\", mapping = aes(x = wt, y = mpg, fill = cyl) ) %>% ax_colors_manual(list( \"4\" = \"steelblue\", \"6\" = \"firebrick\", \"8\" = \"forestgreen\", \"99\" = \"yellow\" )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"6\",\"type\":\"scatter\",\"data\":[{\"x\":2.62,\"y\":21},{\"x\":2.875,\"y\":21},{\"x\":3.215,\"y\":21.4},{\"x\":3.44,\"y\":19.2},{\"x\":3.44,\"y\":17.8},{\"x\":3.46,\"y\":18.1},{\"x\":2.77,\"y\":19.7}]},{\"name\":\"4\",\"type\":\"scatter\",\"data\":[{\"x\":2.32,\"y\":22.8},{\"x\":3.19,\"y\":24.4},{\"x\":3.15,\"y\":22.8},{\"x\":2.2,\"y\":32.4},{\"x\":1.615,\"y\":30.4},{\"x\":1.835,\"y\":33.9},{\"x\":2.465,\"y\":21.5},{\"x\":1.935,\"y\":27.3},{\"x\":2.14,\"y\":26},{\"x\":1.513,\"y\":30.4},{\"x\":2.78,\"y\":21.4}]},{\"name\":\"8\",\"type\":\"scatter\",\"data\":[{\"x\":3.44,\"y\":18.7},{\"x\":3.57,\"y\":14.3},{\"x\":3.57,\"y\":15},{\"x\":4.07,\"y\":16.4},{\"x\":3.73,\"y\":17.3},{\"x\":3.78,\"y\":15.2},{\"x\":5.25,\"y\":10.4},{\"x\":5.424,\"y\":10.4},{\"x\":5.345,\"y\":14.7},{\"x\":3.52,\"y\":15.5},{\"x\":3.435,\"y\":15.2},{\"x\":3.84,\"y\":13.3},{\"x\":3.845,\"y\":19.2},{\"x\":3.17,\"y\":15.8}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":1,\"max\":6,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":10,\"max\":35,\"tickAmount\":5,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"colors\":[\"firebrick\",\"steelblue\",\"forestgreen\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":1.513,\"max\":5.424},\"type\":\"scatter\",\"colors_manual\":{\"4\":\"steelblue\",\"6\":\"firebrick\",\"8\":\"forestgreen\",\"99\":\"yellow\"}},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} ## Bar tab <- table(sample(letters[1:5], 100, TRUE), sample(LETTERS[1:5], 100, TRUE)) dat <- as.data.frame(tab) apex( data = dat, type = \"column\", mapping = aes(x = Var1, y = Freq, group = Var2) ) %>% ax_colors_manual(list( A = \"steelblue\", C = \"firebrick\", D = \"forestgreen\", B = \"peachpuff\", E = \"chartreuse\" )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"A\",\"type\":\"bar\",\"data\":[{\"x\":\"a\",\"y\":4},{\"x\":\"b\",\"y\":1},{\"x\":\"c\",\"y\":4},{\"x\":\"d\",\"y\":3},{\"x\":\"e\",\"y\":3}]},{\"name\":\"B\",\"type\":\"bar\",\"data\":[{\"x\":\"a\",\"y\":3},{\"x\":\"b\",\"y\":3},{\"x\":\"c\",\"y\":7},{\"x\":\"d\",\"y\":5},{\"x\":\"e\",\"y\":9}]},{\"name\":\"C\",\"type\":\"bar\",\"data\":[{\"x\":\"a\",\"y\":5},{\"x\":\"b\",\"y\":3},{\"x\":\"c\",\"y\":1},{\"x\":\"d\",\"y\":6},{\"x\":\"e\",\"y\":3}]},{\"name\":\"D\",\"type\":\"bar\",\"data\":[{\"x\":\"a\",\"y\":3},{\"x\":\"b\",\"y\":5},{\"x\":\"c\",\"y\":4},{\"x\":\"d\",\"y\":4},{\"x\":\"e\",\"y\":5}]},{\"name\":\"E\",\"type\":\"bar\",\"data\":[{\"x\":\"a\",\"y\":7},{\"x\":\"b\",\"y\":4},{\"x\":\"c\",\"y\":4},{\"x\":\"d\",\"y\":4},{\"x\":\"e\",\"y\":0}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"colors\":[\"steelblue\",\"peachpuff\",\"firebrick\",\"forestgreen\",\"chartreuse\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"type\":\"column\",\"colors_manual\":{\"A\":\"steelblue\",\"C\":\"firebrick\",\"D\":\"forestgreen\",\"B\":\"peachpuff\",\"E\":\"chartreuse\"}},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_dataLabels.html","id":null,"dir":"Reference","previous_headings":"","what":"Labels on data — ax_dataLabels","title":"Labels on data — ax_dataLabels","text":"Labels data","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_dataLabels.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Labels on data — ax_dataLabels","text":"","code":"ax_dataLabels( ax, enabled = NULL, textAnchor = NULL, offsetX = NULL, offsetY = NULL, style = NULL, dropShadow = NULL, formatter = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_dataLabels.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Labels on data — ax_dataLabels","text":"ax apexchart() htmlwidget object. enabled determine whether show dataLabels . textAnchor alignment text relative dataLabel's drawing position. Accepted values \"start\", \"middle\" \"end\". offsetX Sets left offset dataLabels. offsetY Sets top offset dataLabels. style list parameters. dropShadow list parameters. formatter formatter function takes single value allows format value displaying ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_dataLabels.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Labels on data — ax_dataLabels","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_dataLabels.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Labels on data — ax_dataLabels","text":"See https://apexcharts.com/docs/options/datalabels/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_dataLabels.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Labels on data — ax_dataLabels","text":"","code":"data(\"diamonds\", package = \"ggplot2\") # Add data labels apex( data = diamonds, mapping = aes(x = cut) ) %>% ax_dataLabels(enabled = TRUE) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":1610},{\"x\":\"Good\",\"y\":4906},{\"x\":\"Very Good\",\"y\":12082},{\"x\":\"Premium\",\"y\":13791},{\"x\":\"Ideal\",\"y\":21551}]}],\"dataLabels\":{\"enabled\":true},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_fill.html","id":null,"dir":"Reference","previous_headings":"","what":"Fill property — ax_fill","title":"Fill property — ax_fill","text":"Fill property","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_fill.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Fill property — ax_fill","text":"","code":"ax_fill( ax, type = NULL, colors = NULL, opacity = NULL, gradient = NULL, image = NULL, pattern = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_fill.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Fill property — ax_fill","text":"ax apexchart() htmlwidget object. type Whether fill paths solid colors gradient. Available options: \"solid\", \"gradient\", \"pattern\" \"image\". colors Colors fill svg paths.. opacity Opacity fill attribute. gradient list parameters. image list parameters. pattern list parameters. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_fill.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Fill property — ax_fill","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_fill.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Fill property — ax_fill","text":"See https://apexcharts.com/docs/options/fill/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_fill.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Fill property — ax_fill","text":"","code":"data(\"diamonds\", package = \"ggplot2\") # Use a pattern to fill bars apex( data = diamonds, mapping = aes(x = color, fill = cut) ) %>% ax_fill( type = \"pattern\", opacity = 1, pattern = list( style = c(\"circles\", \"slantedLines\", \"verticalLines\", \"horizontalLines\", \"squares\") ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"Fair\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":163},{\"x\":\"E\",\"y\":224},{\"x\":\"F\",\"y\":312},{\"x\":\"G\",\"y\":314},{\"x\":\"H\",\"y\":303},{\"x\":\"I\",\"y\":175},{\"x\":\"J\",\"y\":119}]},{\"name\":\"Good\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":662},{\"x\":\"E\",\"y\":933},{\"x\":\"F\",\"y\":909},{\"x\":\"G\",\"y\":871},{\"x\":\"H\",\"y\":702},{\"x\":\"I\",\"y\":522},{\"x\":\"J\",\"y\":307}]},{\"name\":\"Very Good\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":1513},{\"x\":\"E\",\"y\":2400},{\"x\":\"F\",\"y\":2164},{\"x\":\"G\",\"y\":2299},{\"x\":\"H\",\"y\":1824},{\"x\":\"I\",\"y\":1204},{\"x\":\"J\",\"y\":678}]},{\"name\":\"Premium\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":1603},{\"x\":\"E\",\"y\":2337},{\"x\":\"F\",\"y\":2331},{\"x\":\"G\",\"y\":2924},{\"x\":\"H\",\"y\":2360},{\"x\":\"I\",\"y\":1428},{\"x\":\"J\",\"y\":808}]},{\"name\":\"Ideal\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":2834},{\"x\":\"E\",\"y\":3903},{\"x\":\"F\",\"y\":3826},{\"x\":\"G\",\"y\":4884},{\"x\":\"H\",\"y\":3115},{\"x\":\"I\",\"y\":2093},{\"x\":\"J\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"fill\":{\"type\":\"pattern\",\"opacity\":1,\"pattern\":{\"style\":[\"circles\",\"slantedLines\",\"verticalLines\",\"horizontalLines\",\"squares\"]}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"D\",\"max\":\"J\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} data(\"economics\", package = \"ggplot2\") # Customise gradient apex( data = economics, mapping = aes(x = date, y = psavert), type = \"area\" ) %>% ax_fill(gradient = list( enabled = TRUE, shadeIntensity = 1, inverseColors = FALSE, opacityFrom = 0, opacityTo = 1, stops = c(0, 2000) )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"area\"},\"series\":[{\"name\":\"psavert\",\"type\":\"area\",\"data\":[[-79056000000,12.6],[-76377600000,12.6],[-73699200000,11.9],[-71107200000,12.9],[-68428800000,12.8],[-65836800000,11.8],[-63158400000,11.7],[-60480000000,12.3],[-57974400000,11.7],[-55296000000,12.3],[-52704000000,12],[-50025600000,11.7],[-47433600000,10.7],[-44755200000,10.5],[-42076800000,10.6],[-39484800000,10.8],[-36806400000,10.6],[-34214400000,11.1],[-31536000000,10.3],[-28857600000,9.699999999999999],[-26438400000,10.2],[-23760000000,9.699999999999999],[-21168000000,10.1],[-18489600000,11.1],[-15897600000,11.8],[-13219200000,11.5],[-10540800000,11.6],[-7948800000,11.4],[-5270400000,11.6],[-2678400000,11.8],[0,11.8],[2678400000,11.7],[5097600000,12.4],[7776000000,13.3],[10368000000,12.4],[13046400000,12.3],[15638400000,13.5],[18316800000,13.4],[20995200000,12.9],[23587200000,13.1],[26265600000,13.6],[28857600000,13.2],[31536000000,13.3],[34214400000,13.3],[36633600000,13.5],[39312000000,13.2],[41904000000,13.6],[44582400000,14.7],[47174400000,13.8],[49852800000,13.6],[52531200000,13.3],[55123200000,13.3],[57801600000,13.1],[60393600000,13],[63072000000,12.5],[65750400000,12.8],[68256000000,11.8],[70934400000,11.5],[73526400000,11.7],[76204800000,11.7],[78796800000,11.7],[81475200000,12],[84153600000,12.2],[86745600000,13],[89424000000,13.6],[92016000000,13.7],[94694400000,12.4],[97372800000,12.5],[99792000000,12.7],[102470400000,13.2],[105062400000,13.2],[107740800000,13.6],[110332800000,13.2],[113011200000,13.9],[115689600000,13.1],[118281600000,14.4],[120960000000,14.4],[123552000000,14.8],[126230400000,14.3],[128908800000,14.2],[131328000000,13.4],[134006400000,13.1],[136598400000,12.8],[139276800000,12.8],[141868800000,12.8],[144547200000,12.1],[147225600000,12.9],[149817600000,13.4],[152496000000,13.8],[155088000000,14],[157766400000,13.2],[160444800000,12.5],[162864000000,12.7],[165542400000,14.2],[168134400000,17.3],[170812800000,14.3],[173404800000,12.6],[176083200000,13],[178761600000,13],[181353600000,13.4],[184032000000,12.7],[186624000000,12],[189302400000,11.7],[191980800000,12.3],[194486400000,12.2],[197164800000,11.7],[199756800000,12.3],[202435200000,11.4],[205027200000,11.7],[207705600000,11.7],[210384000000,11.4],[212976000000,11.1],[215654400000,11.4],[218246400000,10.6],[220924800000,10.6],[223603200000,9.300000000000001],[226022400000,10.5],[228700800000,10.5],[231292800000,10.3],[233971200000,10.6],[236563200000,10.5],[239241600000,10.9],[241920000000,11.1],[244512000000,11],[247190400000,11.2],[249782400000,11.4],[252460800000,11.9],[255139200000,11.1],[257558400000,11],[260236800000,10.8],[262828800000,10.3],[265507200000,10],[268099200000,10.9],[270777600000,10.5],[273456000000,10.6],[276048000000,10.7],[278726400000,10.5],[281318400000,10.4],[283996800000,11.1],[286675200000,11.1],[289094400000,11.2],[291772800000,11],[294364800000,10.3],[297043200000,9.9],[299635200000,10.6],[302313600000,9.699999999999999],[304992000000,9.4],[307584000000,9.699999999999999],[310262400000,9.699999999999999],[312854400000,10.1],[315532800000,9.9],[318211200000,10.1],[320716800000,10.2],[323395200000,11.3],[325987200000,11.4],[328665600000,11.2],[331257600000,11.3],[333936000000,11.3],[336614400000,11.7],[339206400000,11.3],[341884800000,11.6],[344476800000,11.4],[347155200000,10.9],[349833600000,10.8],[352252800000,10.8],[354931200000,10.9],[357523200000,11],[360201600000,10.8],[362793600000,12.3],[365472000000,12],[368150400000,12.4],[370742400000,13],[373420800000,13.2],[376012800000,12.5],[378691200000,12.7],[381369600000,12.1],[383788800000,12.2],[386467200000,12.9],[389059200000,12.3],[391737600000,12.3],[394329600000,12.5],[397008000000,12.6],[399686400000,11.8],[402278400000,11.3],[404956800000,10.9],[407548800000,10.9],[410227200000,11.1],[412905600000,11.1],[415324800000,10.6],[418003200000,10.3],[420595200000,9.9],[423273600000,9.1],[425865600000,9.6],[428544000000,9.199999999999999],[431222400000,9.6],[433814400000,9.699999999999999],[436492800000,10.3],[439084800000,10.1],[441763200000,10],[444441600000,11.7],[446947200000,11.5],[449625600000,11.5],[452217600000,11.1],[454896000000,11.1],[457488000000,11.6],[460166400000,11.8],[462844800000,11.8],[465436800000,11.7],[468115200000,10.9],[470707200000,11.2],[473385600000,10.3],[476064000000,9.1],[478483200000,8.699999999999999],[481161600000,9.9],[483753600000,11.1],[486432000000,9.6],[489024000000,9.1],[491702400000,8.199999999999999],[494380800000,7.3],[496972800000,9.1],[499651200000,9],[502243200000,8.6],[504921600000,8.6],[507600000000,9.300000000000001],[510019200000,9.9],[512697600000,9.699999999999999],[515289600000,9.300000000000001],[517968000000,9.4],[520560000000,9.300000000000001],[523238400000,9],[525916800000,7.2],[528508800000,8.4],[531187200000,8.800000000000001],[533779200000,7],[536457600000,9.699999999999999],[539136000000,8.5],[541555200000,8.5],[544233600000,4.5],[546825600000,8.199999999999999],[549504000000,7.7],[552096000000,7.5],[554774400000,7.2],[557452800000,7.6],[560044800000,8.300000000000001],[562723200000,8.5],[565315200000,8.699999999999999],[567993600000,8.1],[570672000000,8.6],[573177600000,8.199999999999999],[575856000000,8.800000000000001],[578448000000,8.4],[581126400000,8.4],[583718400000,8.6],[586396800000,8.4],[589075200000,8.9],[591667200000,8.6],[594345600000,8.4],[596937600000,8.300000000000001],[599616000000,8.5],[602294400000,9],[604713600000,9.5],[607392000000,8.4],[609984000000,8.1],[612662400000,8.199999999999999],[615254400000,8.199999999999999],[617932800000,7.6],[620611200000,8.1],[623203200000,8.5],[625881600000,8.6],[628473600000,7.8],[631152000000,8],[633830400000,8.6],[636249600000,8.300000000000001],[638928000000,8.800000000000001],[641520000000,8.699999999999999],[644198400000,8.6],[646790400000,8.699999999999999],[649468800000,8.1],[652147200000,8.1],[654739200000,7.8],[657417600000,7.9],[660009600000,8.800000000000001],[662688000000,9.300000000000001],[665366400000,8.800000000000001],[667785600000,8],[670464000000,8.6],[673056000000,8.4],[675734400000,8.9],[678326400000,8.199999999999999],[681004800000,8.6],[683683200000,8.800000000000001],[686275200000,9.300000000000001],[688953600000,9],[691545600000,9.699999999999999],[694224000000,9.4],[696902400000,9.800000000000001],[699408000000,9.699999999999999],[702086400000,9.9],[704678400000,9.9],[707356800000,10.1],[709948800000,9.6],[712627200000,9.699999999999999],[715305600000,8.699999999999999],[717897600000,8],[720576000000,8],[723168000000,10.6],[725846400000,8.6],[728524800000,8.9],[730944000000,8.9],[733622400000,8.699999999999999],[736214400000,8.300000000000001],[738892800000,7.8],[741484800000,7.6],[744163200000,7.7],[746841600000,6.9],[749433600000,6.3],[752112000000,6.3],[754704000000,9.1],[757382400000,7.1],[760060800000,6.5],[762480000000,6.8],[765158400000,6.4],[767750400000,7.6],[770428800000,6.9],[773020800000,7],[775699200000,6.5],[778377600000,6.8],[780969600000,7.1],[783648000000,7],[786240000000,7.2],[788918400000,7.5],[791596800000,7.8],[794016000000,7.5],[796694400000,6.9],[799286400000,7.1],[801964800000,6.7],[804556800000,7.1],[807235200000,6.7],[809913600000,6.8],[812505600000,7.1],[815184000000,6.6],[817776000000,6.1],[820454400000,6.7],[823132800000,6.7],[825638400000,6.6],[828316800000,5.7],[830908800000,6.7],[833587200000,7.1],[836179200000,6.7],[838857600000,6.6],[841536000000,6.7],[844128000000,6.4],[846806400000,6.4],[849398400000,6.4],[852076800000,6.2],[854755200000,6.2],[857174400000,6.4],[859852800000,6.5],[862444800000,6.8],[865123200000,6.6],[867715200000,6.1],[870393600000,6],[873072000000,6.2],[875664000000,6.2],[878342400000,6.4],[880934400000,6.4],[883612800000,7.4],[886291200000,7.4],[888710400000,7.5],[891388800000,7.2],[893980800000,6.9],[896659200000,6.8],[899251200000,6.9],[901929600000,6.8],[904608000000,6.4],[907200000000,6.2],[909878400000,6.3],[912470400000,5.8],[915148800000,6.4],[917827200000,6.2],[920246400000,5.9],[922924800000,5.2],[925516800000,4.9],[928195200000,4.8],[930787200000,4.8],[933465600000,4.7],[936144000000,4.2],[938736000000,4.6],[941414400000,4.8],[944006400000,4.4],[946684800000,5.4],[949363200000,4.8],[951868800000,4.5],[954547200000,5],[957139200000,4.9],[959817600000,4.9],[962409600000,5.2],[965088000000,5.2],[967766400000,4.5],[970358400000,4.6],[973036800000,4.5],[975628800000,4.2],[978307200000,4.8],[980985600000,4.9],[983404800000,5.3],[986083200000,5],[988675200000,4.5],[991353600000,4.5],[993945600000,5.6],[996624000000,6.8],[999302400000,7],[1001894400000,3.4],[1004572800000,4.1],[1007164800000,4.5],[1009843200000,6.1],[1012521600000,5.8],[1014940800000,5.9],[1017619200000,5.8],[1020211200000,6.5],[1022889600000,6.4],[1025481600000,5.5],[1028160000000,5.4],[1030838400000,5.7],[1033430400000,5.7],[1036108800000,5.7],[1038700800000,5.5],[1041379200000,5.5],[1044057600000,5.6],[1046476800000,5.3],[1049155200000,5.3],[1051747200000,5.8],[1054425600000,5.6],[1057017600000,6.3],[1059696000000,6],[1062374400000,5.2],[1064966400000,5.3],[1067644800000,5.4],[1070236800000,5.4],[1072915200000,5],[1075593600000,5],[1078099200000,4.9],[1080777600000,5.3],[1083369600000,5.3],[1086048000000,5.8],[1088640000000,5.3],[1091318400000,5.2],[1093996800000,4.6],[1096588800000,4.5],[1099267200000,4.1],[1101859200000,6.9],[1104537600000,3.7],[1107216000000,3.4],[1109635200000,3.6],[1112313600000,3.1],[1114905600000,3.5],[1117584000000,2.9],[1120176000000,2.2],[1122854400000,2.7],[1125532800000,2.7],[1128124800000,3.1],[1130803200000,3.5],[1133395200000,3.7],[1136073600000,4.2],[1138752000000,4.2],[1141171200000,4.2],[1143849600000,4],[1146441600000,3.8],[1149120000000,4],[1151712000000,3.4],[1154390400000,3.6],[1157068800000,3.6],[1159660800000,3.6],[1162339200000,3.9],[1164931200000,3.7],[1167609600000,3.7],[1170288000000,4.1],[1172707200000,4.4],[1175385600000,4.2],[1177977600000,4],[1180656000000,3.8],[1183248000000,3.7],[1185926400000,3.4],[1188604800000,3.5],[1191196800000,3.4],[1193875200000,3.1],[1196467200000,3.6],[1199145600000,3.7],[1201824000000,4.1],[1204329600000,4],[1207008000000,3.4],[1209600000000,7.8],[1212278400000,5.5],[1214870400000,4.4],[1217548800000,3.8],[1220227200000,4.7],[1222819200000,5.5],[1225497600000,6.4],[1228089600000,6.4],[1230768000000,6.2],[1233446400000,5.5],[1235865600000,5.9],[1238544000000,6.8],[1241136000000,8.199999999999999],[1243814400000,6.7],[1246406400000,6],[1249084800000,4.9],[1251763200000,5.9],[1254355200000,5.4],[1257033600000,5.9],[1259625600000,5.9],[1262304000000,6.1],[1264982400000,5.8],[1267401600000,5.7],[1270080000000,6.4],[1272672000000,7],[1275350400000,6.9],[1277942400000,6.8],[1280620800000,6.9],[1283299200000,6.7],[1285891200000,6.6],[1288569600000,6.6],[1291161600000,7.1],[1293840000000,7.4],[1296518400000,7.6],[1298937600000,7],[1301616000000,6.9],[1304208000000,6.9],[1306886400000,7.2],[1309478400000,7.3],[1312156800000,7.2],[1314835200000,6.8],[1317427200000,6.8],[1320105600000,7],[1322697600000,7.8],[1325376000000,8],[1328054400000,8],[1330560000000,8.5],[1333238400000,8.699999999999999],[1335830400000,8.800000000000001],[1338508800000,9.1],[1341100800000,8.199999999999999],[1343779200000,8],[1346457600000,8.199999999999999],[1349049600000,8.800000000000001],[1351728000000,9.699999999999999],[1354320000000,12],[1356998400000,6.3],[1359676800000,5.8],[1362096000000,5.9],[1364774400000,6.4],[1367366400000,6.7],[1370044800000,6.8],[1372636800000,6.6],[1375315200000,6.7],[1377993600000,6.8],[1380585600000,6.3],[1383264000000,6.2],[1385856000000,6.4],[1388534400000,7.1],[1391212800000,7.3],[1393632000000,7.4],[1396310400000,7.4],[1398902400000,7.4],[1401580800000,7.4],[1404172800000,7.5],[1406851200000,7.2],[1409529600000,7.4],[1412121600000,7.2],[1414800000000,7.3],[1417392000000,7.6],[1420070400000,7.7],[1422748800000,7.9],[1425168000000,7.4],[1427846400000,7.6]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"fill\":{\"gradient\":{\"enabled\":true,\"shadeIntensity\":1,\"inverseColors\":false,\"opacityFrom\":0,\"opacityTo\":1,\"stops\":[0,2000]}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"area\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_forecast_data_points.html","id":null,"dir":"Reference","previous_headings":"","what":"Forecast data points — ax_forecast_data_points","title":"Forecast data points — ax_forecast_data_points","text":"Forecast data points","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_forecast_data_points.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Forecast data points — ax_forecast_data_points","text":"","code":"ax_forecast_data_points( ax, count = NULL, fillOpacity = NULL, strokeWidth = NULL, dashArray = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_forecast_data_points.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Forecast data points — ax_forecast_data_points","text":"ax apexchart() htmlwidget object. count Number ending data-points want indicate forecast prediction values. ending line/bar result dashed border distinct look differentiate rest data-points. fillOpacity Opacity fill attribute. strokeWidth Sets width points. dashArray Creates dashes borders svg path. Higher number creates space dashes border. ... Additional arguments (used).","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_forecast_data_points.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Forecast data points — ax_forecast_data_points","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_forecast_data_points.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Forecast data points — ax_forecast_data_points","text":"","code":"# add 5 predictions to data then plot it data.frame( time = seq_len(53), lh = c( as.vector(lh), as.vector(predict(arima(lh, order = c(1,0,1)), 5)$pred) ) ) %>% apex(aes(time, lh), type = \"line\") %>% ax_xaxis(type = \"numeric\") %>% ax_forecast_data_points(count = 5) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"lh\",\"type\":\"line\",\"data\":[{\"x\":1,\"y\":2.4},{\"x\":2,\"y\":2.4},{\"x\":3,\"y\":2.4},{\"x\":4,\"y\":2.2},{\"x\":5,\"y\":2.1},{\"x\":6,\"y\":1.5},{\"x\":7,\"y\":2.3},{\"x\":8,\"y\":2.3},{\"x\":9,\"y\":2.5},{\"x\":10,\"y\":2},{\"x\":11,\"y\":1.9},{\"x\":12,\"y\":1.7},{\"x\":13,\"y\":2.2},{\"x\":14,\"y\":1.8},{\"x\":15,\"y\":3.2},{\"x\":16,\"y\":3.2},{\"x\":17,\"y\":2.7},{\"x\":18,\"y\":2.2},{\"x\":19,\"y\":2.2},{\"x\":20,\"y\":1.9},{\"x\":21,\"y\":1.9},{\"x\":22,\"y\":1.8},{\"x\":23,\"y\":2.7},{\"x\":24,\"y\":3},{\"x\":25,\"y\":2.3},{\"x\":26,\"y\":2},{\"x\":27,\"y\":2},{\"x\":28,\"y\":2.9},{\"x\":29,\"y\":2.9},{\"x\":30,\"y\":2.7},{\"x\":31,\"y\":2.7},{\"x\":32,\"y\":2.3},{\"x\":33,\"y\":2.6},{\"x\":34,\"y\":2.4},{\"x\":35,\"y\":1.8},{\"x\":36,\"y\":1.7},{\"x\":37,\"y\":1.5},{\"x\":38,\"y\":1.4},{\"x\":39,\"y\":2.1},{\"x\":40,\"y\":3.3},{\"x\":41,\"y\":3.5},{\"x\":42,\"y\":3.5},{\"x\":43,\"y\":3.1},{\"x\":44,\"y\":2.6},{\"x\":45,\"y\":2.1},{\"x\":46,\"y\":3.4},{\"x\":47,\"y\":3},{\"x\":48,\"y\":2.9},{\"x\":49,\"y\":2.679610920066185},{\"x\":50,\"y\":2.531951257704051},{\"x\":51,\"y\":2.465179259819658},{\"x\":52,\"y\":2.434984827364984},{\"x\":53,\"y\":2.421330843956574}]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"type\":\"numeric\"},\"forecastDataPoints\":{\"count\":5}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":1,\"max\":53},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_grid.html","id":null,"dir":"Reference","previous_headings":"","what":"Add grids on chart — ax_grid","title":"Add grids on chart — ax_grid","text":"Add grids chart","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_grid.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add grids on chart — ax_grid","text":"","code":"ax_grid( ax, show = NULL, borderColor = NULL, strokeDashArray = NULL, position = NULL, xaxis = NULL, yaxis = NULL, row = NULL, column = NULL, padding = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_grid.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add grids on chart — ax_grid","text":"ax apexchart() htmlwidget object. show Logical. show hide grid area (including xaxis / yaxis) borderColor Colors grid borders / lines. strokeDashArray Creates dashes borders svg path. Higher number creates space dashes border. position Whether place grid behind chart paths front. Available options position: \"front\" \"back\" xaxis list parameters. yaxis list parameters. row list parameters. column list parameters. padding list parameters. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_grid.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add grids on chart — ax_grid","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_grid.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Add grids on chart — ax_grid","text":"See https://apexcharts.com/docs/options/grid/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_grid.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add grids on chart — ax_grid","text":"","code":"data(\"mpg\", package = \"ggplot2\") # Hide Y-axis and gridelines apex( data = mpg, mapping = aes(x = manufacturer) ) %>% ax_grid(show = FALSE) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}},\"show\":false},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # just grid lines apex( data = mpg, mapping = aes(x = manufacturer) ) %>% ax_grid(yaxis = list(lines = list(show = FALSE))) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":false}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # both x & y data(\"economics\", package = \"ggplot2\") apex( data = economics, mapping = aes(x = date, y = psavert), type = \"line\" ) %>% ax_grid( yaxis = list(lines = list(show = TRUE)), xaxis = list(lines = list(show = TRUE)) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[-79056000000,12.6],[-76377600000,12.6],[-73699200000,11.9],[-71107200000,12.9],[-68428800000,12.8],[-65836800000,11.8],[-63158400000,11.7],[-60480000000,12.3],[-57974400000,11.7],[-55296000000,12.3],[-52704000000,12],[-50025600000,11.7],[-47433600000,10.7],[-44755200000,10.5],[-42076800000,10.6],[-39484800000,10.8],[-36806400000,10.6],[-34214400000,11.1],[-31536000000,10.3],[-28857600000,9.699999999999999],[-26438400000,10.2],[-23760000000,9.699999999999999],[-21168000000,10.1],[-18489600000,11.1],[-15897600000,11.8],[-13219200000,11.5],[-10540800000,11.6],[-7948800000,11.4],[-5270400000,11.6],[-2678400000,11.8],[0,11.8],[2678400000,11.7],[5097600000,12.4],[7776000000,13.3],[10368000000,12.4],[13046400000,12.3],[15638400000,13.5],[18316800000,13.4],[20995200000,12.9],[23587200000,13.1],[26265600000,13.6],[28857600000,13.2],[31536000000,13.3],[34214400000,13.3],[36633600000,13.5],[39312000000,13.2],[41904000000,13.6],[44582400000,14.7],[47174400000,13.8],[49852800000,13.6],[52531200000,13.3],[55123200000,13.3],[57801600000,13.1],[60393600000,13],[63072000000,12.5],[65750400000,12.8],[68256000000,11.8],[70934400000,11.5],[73526400000,11.7],[76204800000,11.7],[78796800000,11.7],[81475200000,12],[84153600000,12.2],[86745600000,13],[89424000000,13.6],[92016000000,13.7],[94694400000,12.4],[97372800000,12.5],[99792000000,12.7],[102470400000,13.2],[105062400000,13.2],[107740800000,13.6],[110332800000,13.2],[113011200000,13.9],[115689600000,13.1],[118281600000,14.4],[120960000000,14.4],[123552000000,14.8],[126230400000,14.3],[128908800000,14.2],[131328000000,13.4],[134006400000,13.1],[136598400000,12.8],[139276800000,12.8],[141868800000,12.8],[144547200000,12.1],[147225600000,12.9],[149817600000,13.4],[152496000000,13.8],[155088000000,14],[157766400000,13.2],[160444800000,12.5],[162864000000,12.7],[165542400000,14.2],[168134400000,17.3],[170812800000,14.3],[173404800000,12.6],[176083200000,13],[178761600000,13],[181353600000,13.4],[184032000000,12.7],[186624000000,12],[189302400000,11.7],[191980800000,12.3],[194486400000,12.2],[197164800000,11.7],[199756800000,12.3],[202435200000,11.4],[205027200000,11.7],[207705600000,11.7],[210384000000,11.4],[212976000000,11.1],[215654400000,11.4],[218246400000,10.6],[220924800000,10.6],[223603200000,9.300000000000001],[226022400000,10.5],[228700800000,10.5],[231292800000,10.3],[233971200000,10.6],[236563200000,10.5],[239241600000,10.9],[241920000000,11.1],[244512000000,11],[247190400000,11.2],[249782400000,11.4],[252460800000,11.9],[255139200000,11.1],[257558400000,11],[260236800000,10.8],[262828800000,10.3],[265507200000,10],[268099200000,10.9],[270777600000,10.5],[273456000000,10.6],[276048000000,10.7],[278726400000,10.5],[281318400000,10.4],[283996800000,11.1],[286675200000,11.1],[289094400000,11.2],[291772800000,11],[294364800000,10.3],[297043200000,9.9],[299635200000,10.6],[302313600000,9.699999999999999],[304992000000,9.4],[307584000000,9.699999999999999],[310262400000,9.699999999999999],[312854400000,10.1],[315532800000,9.9],[318211200000,10.1],[320716800000,10.2],[323395200000,11.3],[325987200000,11.4],[328665600000,11.2],[331257600000,11.3],[333936000000,11.3],[336614400000,11.7],[339206400000,11.3],[341884800000,11.6],[344476800000,11.4],[347155200000,10.9],[349833600000,10.8],[352252800000,10.8],[354931200000,10.9],[357523200000,11],[360201600000,10.8],[362793600000,12.3],[365472000000,12],[368150400000,12.4],[370742400000,13],[373420800000,13.2],[376012800000,12.5],[378691200000,12.7],[381369600000,12.1],[383788800000,12.2],[386467200000,12.9],[389059200000,12.3],[391737600000,12.3],[394329600000,12.5],[397008000000,12.6],[399686400000,11.8],[402278400000,11.3],[404956800000,10.9],[407548800000,10.9],[410227200000,11.1],[412905600000,11.1],[415324800000,10.6],[418003200000,10.3],[420595200000,9.9],[423273600000,9.1],[425865600000,9.6],[428544000000,9.199999999999999],[431222400000,9.6],[433814400000,9.699999999999999],[436492800000,10.3],[439084800000,10.1],[441763200000,10],[444441600000,11.7],[446947200000,11.5],[449625600000,11.5],[452217600000,11.1],[454896000000,11.1],[457488000000,11.6],[460166400000,11.8],[462844800000,11.8],[465436800000,11.7],[468115200000,10.9],[470707200000,11.2],[473385600000,10.3],[476064000000,9.1],[478483200000,8.699999999999999],[481161600000,9.9],[483753600000,11.1],[486432000000,9.6],[489024000000,9.1],[491702400000,8.199999999999999],[494380800000,7.3],[496972800000,9.1],[499651200000,9],[502243200000,8.6],[504921600000,8.6],[507600000000,9.300000000000001],[510019200000,9.9],[512697600000,9.699999999999999],[515289600000,9.300000000000001],[517968000000,9.4],[520560000000,9.300000000000001],[523238400000,9],[525916800000,7.2],[528508800000,8.4],[531187200000,8.800000000000001],[533779200000,7],[536457600000,9.699999999999999],[539136000000,8.5],[541555200000,8.5],[544233600000,4.5],[546825600000,8.199999999999999],[549504000000,7.7],[552096000000,7.5],[554774400000,7.2],[557452800000,7.6],[560044800000,8.300000000000001],[562723200000,8.5],[565315200000,8.699999999999999],[567993600000,8.1],[570672000000,8.6],[573177600000,8.199999999999999],[575856000000,8.800000000000001],[578448000000,8.4],[581126400000,8.4],[583718400000,8.6],[586396800000,8.4],[589075200000,8.9],[591667200000,8.6],[594345600000,8.4],[596937600000,8.300000000000001],[599616000000,8.5],[602294400000,9],[604713600000,9.5],[607392000000,8.4],[609984000000,8.1],[612662400000,8.199999999999999],[615254400000,8.199999999999999],[617932800000,7.6],[620611200000,8.1],[623203200000,8.5],[625881600000,8.6],[628473600000,7.8],[631152000000,8],[633830400000,8.6],[636249600000,8.300000000000001],[638928000000,8.800000000000001],[641520000000,8.699999999999999],[644198400000,8.6],[646790400000,8.699999999999999],[649468800000,8.1],[652147200000,8.1],[654739200000,7.8],[657417600000,7.9],[660009600000,8.800000000000001],[662688000000,9.300000000000001],[665366400000,8.800000000000001],[667785600000,8],[670464000000,8.6],[673056000000,8.4],[675734400000,8.9],[678326400000,8.199999999999999],[681004800000,8.6],[683683200000,8.800000000000001],[686275200000,9.300000000000001],[688953600000,9],[691545600000,9.699999999999999],[694224000000,9.4],[696902400000,9.800000000000001],[699408000000,9.699999999999999],[702086400000,9.9],[704678400000,9.9],[707356800000,10.1],[709948800000,9.6],[712627200000,9.699999999999999],[715305600000,8.699999999999999],[717897600000,8],[720576000000,8],[723168000000,10.6],[725846400000,8.6],[728524800000,8.9],[730944000000,8.9],[733622400000,8.699999999999999],[736214400000,8.300000000000001],[738892800000,7.8],[741484800000,7.6],[744163200000,7.7],[746841600000,6.9],[749433600000,6.3],[752112000000,6.3],[754704000000,9.1],[757382400000,7.1],[760060800000,6.5],[762480000000,6.8],[765158400000,6.4],[767750400000,7.6],[770428800000,6.9],[773020800000,7],[775699200000,6.5],[778377600000,6.8],[780969600000,7.1],[783648000000,7],[786240000000,7.2],[788918400000,7.5],[791596800000,7.8],[794016000000,7.5],[796694400000,6.9],[799286400000,7.1],[801964800000,6.7],[804556800000,7.1],[807235200000,6.7],[809913600000,6.8],[812505600000,7.1],[815184000000,6.6],[817776000000,6.1],[820454400000,6.7],[823132800000,6.7],[825638400000,6.6],[828316800000,5.7],[830908800000,6.7],[833587200000,7.1],[836179200000,6.7],[838857600000,6.6],[841536000000,6.7],[844128000000,6.4],[846806400000,6.4],[849398400000,6.4],[852076800000,6.2],[854755200000,6.2],[857174400000,6.4],[859852800000,6.5],[862444800000,6.8],[865123200000,6.6],[867715200000,6.1],[870393600000,6],[873072000000,6.2],[875664000000,6.2],[878342400000,6.4],[880934400000,6.4],[883612800000,7.4],[886291200000,7.4],[888710400000,7.5],[891388800000,7.2],[893980800000,6.9],[896659200000,6.8],[899251200000,6.9],[901929600000,6.8],[904608000000,6.4],[907200000000,6.2],[909878400000,6.3],[912470400000,5.8],[915148800000,6.4],[917827200000,6.2],[920246400000,5.9],[922924800000,5.2],[925516800000,4.9],[928195200000,4.8],[930787200000,4.8],[933465600000,4.7],[936144000000,4.2],[938736000000,4.6],[941414400000,4.8],[944006400000,4.4],[946684800000,5.4],[949363200000,4.8],[951868800000,4.5],[954547200000,5],[957139200000,4.9],[959817600000,4.9],[962409600000,5.2],[965088000000,5.2],[967766400000,4.5],[970358400000,4.6],[973036800000,4.5],[975628800000,4.2],[978307200000,4.8],[980985600000,4.9],[983404800000,5.3],[986083200000,5],[988675200000,4.5],[991353600000,4.5],[993945600000,5.6],[996624000000,6.8],[999302400000,7],[1001894400000,3.4],[1004572800000,4.1],[1007164800000,4.5],[1009843200000,6.1],[1012521600000,5.8],[1014940800000,5.9],[1017619200000,5.8],[1020211200000,6.5],[1022889600000,6.4],[1025481600000,5.5],[1028160000000,5.4],[1030838400000,5.7],[1033430400000,5.7],[1036108800000,5.7],[1038700800000,5.5],[1041379200000,5.5],[1044057600000,5.6],[1046476800000,5.3],[1049155200000,5.3],[1051747200000,5.8],[1054425600000,5.6],[1057017600000,6.3],[1059696000000,6],[1062374400000,5.2],[1064966400000,5.3],[1067644800000,5.4],[1070236800000,5.4],[1072915200000,5],[1075593600000,5],[1078099200000,4.9],[1080777600000,5.3],[1083369600000,5.3],[1086048000000,5.8],[1088640000000,5.3],[1091318400000,5.2],[1093996800000,4.6],[1096588800000,4.5],[1099267200000,4.1],[1101859200000,6.9],[1104537600000,3.7],[1107216000000,3.4],[1109635200000,3.6],[1112313600000,3.1],[1114905600000,3.5],[1117584000000,2.9],[1120176000000,2.2],[1122854400000,2.7],[1125532800000,2.7],[1128124800000,3.1],[1130803200000,3.5],[1133395200000,3.7],[1136073600000,4.2],[1138752000000,4.2],[1141171200000,4.2],[1143849600000,4],[1146441600000,3.8],[1149120000000,4],[1151712000000,3.4],[1154390400000,3.6],[1157068800000,3.6],[1159660800000,3.6],[1162339200000,3.9],[1164931200000,3.7],[1167609600000,3.7],[1170288000000,4.1],[1172707200000,4.4],[1175385600000,4.2],[1177977600000,4],[1180656000000,3.8],[1183248000000,3.7],[1185926400000,3.4],[1188604800000,3.5],[1191196800000,3.4],[1193875200000,3.1],[1196467200000,3.6],[1199145600000,3.7],[1201824000000,4.1],[1204329600000,4],[1207008000000,3.4],[1209600000000,7.8],[1212278400000,5.5],[1214870400000,4.4],[1217548800000,3.8],[1220227200000,4.7],[1222819200000,5.5],[1225497600000,6.4],[1228089600000,6.4],[1230768000000,6.2],[1233446400000,5.5],[1235865600000,5.9],[1238544000000,6.8],[1241136000000,8.199999999999999],[1243814400000,6.7],[1246406400000,6],[1249084800000,4.9],[1251763200000,5.9],[1254355200000,5.4],[1257033600000,5.9],[1259625600000,5.9],[1262304000000,6.1],[1264982400000,5.8],[1267401600000,5.7],[1270080000000,6.4],[1272672000000,7],[1275350400000,6.9],[1277942400000,6.8],[1280620800000,6.9],[1283299200000,6.7],[1285891200000,6.6],[1288569600000,6.6],[1291161600000,7.1],[1293840000000,7.4],[1296518400000,7.6],[1298937600000,7],[1301616000000,6.9],[1304208000000,6.9],[1306886400000,7.2],[1309478400000,7.3],[1312156800000,7.2],[1314835200000,6.8],[1317427200000,6.8],[1320105600000,7],[1322697600000,7.8],[1325376000000,8],[1328054400000,8],[1330560000000,8.5],[1333238400000,8.699999999999999],[1335830400000,8.800000000000001],[1338508800000,9.1],[1341100800000,8.199999999999999],[1343779200000,8],[1346457600000,8.199999999999999],[1349049600000,8.800000000000001],[1351728000000,9.699999999999999],[1354320000000,12],[1356998400000,6.3],[1359676800000,5.8],[1362096000000,5.9],[1364774400000,6.4],[1367366400000,6.7],[1370044800000,6.8],[1372636800000,6.6],[1375315200000,6.7],[1377993600000,6.8],[1380585600000,6.3],[1383264000000,6.2],[1385856000000,6.4],[1388534400000,7.1],[1391212800000,7.3],[1393632000000,7.4],[1396310400000,7.4],[1398902400000,7.4],[1401580800000,7.4],[1404172800000,7.5],[1406851200000,7.2],[1409529600000,7.4],[1412121600000,7.2],[1414800000000,7.3],[1417392000000,7.6],[1420070400000,7.7],[1422748800000,7.9],[1425168000000,7.4],[1427846400000,7.6]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}},\"yaxis\":{\"lines\":{\"show\":true}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labels.html","id":null,"dir":"Reference","previous_headings":"","what":"Alternative axis labels — ax_labels","title":"Alternative axis labels — ax_labels","text":"Alternative axis labels","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labels.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Alternative axis labels — ax_labels","text":"","code":"ax_labels(ax, ...) ax_labels2(ax, labels)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labels.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Alternative axis labels — ax_labels","text":"ax apexchart() htmlwidget object. ... Vector. Axis Charts (line / column), labels can set instead setting xaxis categories option. , pie/donut charts, label corresponds value series array. labels vector use labels.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labels.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Alternative axis labels — ax_labels","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labels.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Alternative axis labels — ax_labels","text":"See https://apexcharts.com/docs/options/labels/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labels.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Alternative axis labels — ax_labels","text":"","code":"apexchart() %>% ax_chart(type = \"pie\") %>% ax_series(23, 45, 56) %>% ax_labels(\"A\", \"B\", \"C\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"pie\"},\"series\":[23,45,56],\"labels\":[\"A\",\"B\",\"C\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[],\"jsHooks\":[]} # same as apexchart() %>% ax_chart(type = \"pie\") %>% ax_series2(c(23, 45, 56)) %>% ax_labels2(c(\"A\", \"B\", \"C\")) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"pie\"},\"series\":[23,45,56],\"labels\":[\"A\",\"B\",\"C\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labs.html","id":null,"dir":"Reference","previous_headings":"","what":"Modify axis, legend, and chart labels — ax_labs","title":"Modify axis, legend, and chart labels — ax_labs","text":"Modify axis, legend, chart labels","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labs.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Modify axis, legend, and chart labels — ax_labs","text":"","code":"ax_labs(ax, title = NULL, subtitle = NULL, x = NULL, y = NULL)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labs.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Modify axis, legend, and chart labels — ax_labs","text":"ax apexchart() htmlwidget object. title Text title. subtitle Text subtitle. x Text x-axis label. y Text y-axis label.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labs.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Modify axis, legend, and chart labels — ax_labs","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labs.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Modify axis, legend, and chart labels — ax_labs","text":"","code":"meteo_paris <- data.frame( month = month.name, tmax = c(7, 8, 12, 15, 19, 23, 25, 25, 21, 16, 11, 8), tmin = c(3, 3, 5, 7, 11, 14, 16, 16, 13, 10, 6, 3) ) apex(meteo_paris, type = \"column\", aes(x = month, y = tmin)) %>% ax_labs( title = \"Average minimal temperature in Paris\", subtitle = \"Data from NOAA\", x = \"Month\", y = \"Temperature (\\u00b0C)\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"tmin\",\"type\":\"bar\",\"data\":[{\"x\":\"January\",\"y\":3},{\"x\":\"February\",\"y\":3},{\"x\":\"March\",\"y\":5},{\"x\":\"April\",\"y\":7},{\"x\":\"May\",\"y\":11},{\"x\":\"June\",\"y\":14},{\"x\":\"July\",\"y\":16},{\"x\":\"August\",\"y\":16},{\"x\":\"September\",\"y\":13},{\"x\":\"October\",\"y\":10},{\"x\":\"November\",\"y\":6},{\"x\":\"December\",\"y\":3}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"title\":{\"text\":\"Temperature (°C)\",\"style\":{\"fontWeight\":400,\"fontSize\":\"14px\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"title\":{\"text\":\"Month\",\"style\":{\"fontWeight\":400,\"fontSize\":\"14px\"}}},\"title\":{\"text\":\"Average minimal temperature in Paris\",\"style\":{\"fontWeight\":700,\"fontSize\":\"16px\"}},\"subtitle\":{\"text\":\"Data from NOAA\",\"style\":{\"fontWeight\":400,\"fontSize\":\"14px\"}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"April\",\"max\":\"September\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_legend.html","id":null,"dir":"Reference","previous_headings":"","what":"Legend properties — ax_legend","title":"Legend properties — ax_legend","text":"Legend properties","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_legend.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Legend properties — ax_legend","text":"","code":"ax_legend( ax, show = NULL, position = NULL, showForSingleSeries = NULL, showForNullSeries = NULL, showForZeroSeries = NULL, horizontalAlign = NULL, fontSize = NULL, textAnchor = NULL, offsetY = NULL, offsetX = NULL, formatter = NULL, labels = NULL, markers = NULL, itemMargin = NULL, containerMargin = NULL, onItemClick = NULL, onItemHover = NULL, floating = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_legend.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Legend properties — ax_legend","text":"ax apexchart() htmlwidget object. show Logical. Whether show hide legend container. position Available position options legend: \"top\", \"right\", \"bottom\", \"left\". showForSingleSeries Show legend even just 1 series. showForNullSeries Allows hide particular legend series contains null values. showForZeroSeries Allows hide particular legend series contains 0 values. horizontalAlign Available options horizontal alignment: \"right\", \"center\", \"left\". fontSize Sets fontSize legend text elements textAnchor alignment text relative legend's drawing position offsetY Sets top offset legend container. offsetX Sets left offset legend container. formatter JS function. custom formatter function append additional text legend series names. labels List two items \"foreColor\" (Custom text color legend labels) \"useSeriesColors\" (Logical, whether use primary colors ) markers List. itemMargin List two items \"horizontal\" (Horizontal margin individual legend item) \"vertical\" (Vertical margin individual legend item). containerMargin List two items \"top\" (Top margin whole legend container) \"left\" (Left margin whole legend container). onItemClick List item \"toggleDataSeries\", logical, clicked legend item, toggle visibility series chart. onItemHover List item \"highlightDataSeries\", logical, hovered legend item, highlight paths hovered series chart. floating Logical. floating option take legend chart area make float chart. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_legend.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Legend properties — ax_legend","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_legend.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Legend properties — ax_legend","text":"See https://apexcharts.com/docs/options/legend/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_legend.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Legend properties — ax_legend","text":"","code":"data(\"mpg\", package = \"ggplot2\") # Legend position apex( data = mpg, mapping = aes(x = manufacturer, fill = year) ) %>% ax_legend(position = \"right\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"1999\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":7},{\"x\":\"dodge\",\"y\":16},{\"x\":\"ford\",\"y\":15},{\"x\":\"honda\",\"y\":5},{\"x\":\"hyundai\",\"y\":6},{\"x\":\"jeep\",\"y\":2},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":2},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":6},{\"x\":\"pontiac\",\"y\":3},{\"x\":\"subaru\",\"y\":6},{\"x\":\"toyota\",\"y\":20},{\"x\":\"volkswagen\",\"y\":16}]},{\"name\":\"2008\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":12},{\"x\":\"dodge\",\"y\":21},{\"x\":\"ford\",\"y\":10},{\"x\":\"honda\",\"y\":4},{\"x\":\"hyundai\",\"y\":8},{\"x\":\"jeep\",\"y\":6},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":1},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":7},{\"x\":\"pontiac\",\"y\":2},{\"x\":\"subaru\",\"y\":8},{\"x\":\"toyota\",\"y\":14},{\"x\":\"volkswagen\",\"y\":11}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"legend\":{\"position\":\"right\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # hide legend apex( data = mpg, mapping = aes(x = manufacturer, fill = year) ) %>% ax_legend(show = FALSE) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"1999\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":7},{\"x\":\"dodge\",\"y\":16},{\"x\":\"ford\",\"y\":15},{\"x\":\"honda\",\"y\":5},{\"x\":\"hyundai\",\"y\":6},{\"x\":\"jeep\",\"y\":2},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":2},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":6},{\"x\":\"pontiac\",\"y\":3},{\"x\":\"subaru\",\"y\":6},{\"x\":\"toyota\",\"y\":20},{\"x\":\"volkswagen\",\"y\":16}]},{\"name\":\"2008\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":12},{\"x\":\"dodge\",\"y\":21},{\"x\":\"ford\",\"y\":10},{\"x\":\"honda\",\"y\":4},{\"x\":\"hyundai\",\"y\":8},{\"x\":\"jeep\",\"y\":6},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":1},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":7},{\"x\":\"pontiac\",\"y\":2},{\"x\":\"subaru\",\"y\":8},{\"x\":\"toyota\",\"y\":14},{\"x\":\"volkswagen\",\"y\":11}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"legend\":{\"show\":false}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_markers.html","id":null,"dir":"Reference","previous_headings":"","what":"Markers properties — ax_markers","title":"Markers properties — ax_markers","text":"Markers properties","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_markers.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Markers properties — ax_markers","text":"","code":"ax_markers( ax, size = NULL, colors = NULL, strokeColor = NULL, strokeWidth = NULL, strokeOpacity = NULL, fillOpacity = NULL, shape = NULL, radius = NULL, offsetX = NULL, offsetY = NULL, hover = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_markers.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Markers properties — ax_markers","text":"ax apexchart() htmlwidget object. size Numeric. Size marker point. colors Sets fill color(s) marker point. strokeColor Stroke Color marker. strokeWidth Stroke Size marker. strokeOpacity Opacity border around marker. fillOpacity Opacity marker fill color. shape Shape marker. Available Options shape: \"square\" \"circle\". radius Numeric. Radius marker (applies square shape) offsetX Numeric. Sets left offset marker. offsetY Numeric. Sets top offset marker. hover List item size (Size marker active). ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_markers.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Markers properties — ax_markers","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_markers.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Markers properties — ax_markers","text":"See https://apexcharts.com/docs/options/markers/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_markers.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Markers properties — ax_markers","text":"","code":"data(\"economics\", package = \"ggplot2\") # show points apex( data = tail(economics, 20), type = \"line\", mapping = aes(x = date, y = uempmed) ) %>% ax_markers(size = 6) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"markers\":{\"size\":6}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2013-09-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_nodata.html","id":null,"dir":"Reference","previous_headings":"","what":"Configuration for charts with no data — ax_nodata","title":"Configuration for charts with no data — ax_nodata","text":"Configuration charts data","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_nodata.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Configuration for charts with no data — ax_nodata","text":"","code":"ax_nodata( ax, text = \"No data\", align = \"center\", verticalAlign = \"middle\", color = NULL, fontSize = NULL, fontFamily = NULL, offsetX = NULL, offsetY = NULL )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_nodata.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Configuration for charts with no data — ax_nodata","text":"ax apexchart() htmlwidget object. text text display -data available. align Horizontal alignment: \"left\", \"center\" \"right\". verticalAlign Vertical alignment: \"top\", \"middle\" \"bottom\". color ForeColor text. fontSize FontSize text. fontFamily FontFamily text. offsetX, offsetY Text offset.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_nodata.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Configuration for charts with no data — ax_nodata","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_nodata.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Configuration for charts with no data — ax_nodata","text":"","code":"empty <- data.frame( var1 = character(0), var2 = numeric(0) ) apex(empty, aes(var1, var2), \"column\") %>% ax_nodata( text = \"Sorry no data to visualize\", fontSize = \"30px\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"var2\",\"type\":\"bar\",\"data\":[]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"noData\":{\"text\":\"Sorry no data to visualize\",\"align\":\"center\",\"verticalAlign\":\"middle\",\"style\":{\"fontSize\":\"30px\"}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_plotOptions.html","id":null,"dir":"Reference","previous_headings":"","what":"Specific options for chart — ax_plotOptions","title":"Specific options for chart — ax_plotOptions","text":"Specific options chart","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_plotOptions.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Specific options for chart — ax_plotOptions","text":"","code":"ax_plotOptions( ax, bar = NULL, heatmap = NULL, radialBar = NULL, pie = NULL, bubble = NULL, boxPlot = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_plotOptions.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Specific options for chart — ax_plotOptions","text":"ax apexchart() htmlwidget object. bar See bar_opts(). heatmap See heatmap_opts(). radialBar See radialBar_opts(). pie See pie_opts(). bubble See bubble_opts(). boxPlot See boxplot_opts(). ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_plotOptions.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Specific options for chart — ax_plotOptions","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_plotOptions.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Specific options for chart — ax_plotOptions","text":"","code":"data(\"diamonds\", package = \"ggplot2\") # Stack bar type apex( data = diamonds, mapping = aes(x = cut) ) %>% ax_plotOptions( bar = bar_opts(endingShape = \"rounded\", columnWidth = \"10%\") ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":1610},{\"x\":\"Good\",\"y\":4906},{\"x\":\"Very Good\",\"y\":12082},{\"x\":\"Premium\",\"y\":13791},{\"x\":\"Ideal\",\"y\":21551}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false,\"endingShape\":\"rounded\",\"columnWidth\":\"10%\"}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # Pie apex( data = diamonds, mapping = aes(x = cut), type = \"pie\" ) %>% ax_plotOptions( pie = pie_opts(customScale = 0.5) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"pie\"},\"series\":[1610,4906,12082,13791,21551],\"labels\":[\"Fair\",\"Good\",\"Very Good\",\"Premium\",\"Ideal\"],\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"plotOptions\":{\"pie\":{\"customScale\":0.5}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"pie\"},\"evals\":[],\"jsHooks\":[]} # Radial apexchart() %>% ax_chart(type = \"radialBar\") %>% ax_plotOptions( radialBar = radialBar_opts( hollow = list(size = \"70%\") ) ) %>% ax_series(70) %>% ax_labels(\"Indicator\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"radialBar\"},\"plotOptions\":{\"radialBar\":{\"hollow\":{\"size\":\"70%\"}}},\"series\":[70],\"labels\":[\"Indicator\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_options.html","id":null,"dir":"Reference","previous_headings":"","what":"Proxy for updating options — ax_proxy_options","title":"Proxy for updating options — ax_proxy_options","text":"Allows update configuration object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_options.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Proxy for updating options — ax_proxy_options","text":"","code":"ax_proxy_options(proxy, options)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_options.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Proxy for updating options — ax_proxy_options","text":"proxy apexchartProxy htmlwidget object. options New options set.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_options.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Proxy for updating options — ax_proxy_options","text":"","code":"if (interactive()) { library(shiny) ui <- fluidPage( fluidRow( column( width = 8, offset = 2, tags$h2(\"Update options\"), apexchartOutput(outputId = \"chart\"), checkboxInput( inputId = \"show_label_xaxis\", label = \"Show x-axis labels\" ), textInput( inputId = \"yaxis_title\", label = \"Y-axis title\" ) ) ) ) server <- function(input, output, session) { output$chart <- renderApexchart({ apexchart() %>% ax_chart(type = \"bar\") %>% ax_series(list( name = \"Example\", data = c(23, 43, 76, 31) )) %>% ax_xaxis( categories = c(\"Label A\", \"Label B\", \"Label C\", \"Label D\") ) }) observe({ apexchartProxy(\"chart\") %>% ax_proxy_options(list( xaxis = list( labels = list(show = input$show_label_xaxis) ), yaxis = list( title = list(text = input$yaxis_title) ) )) }) } shinyApp(ui, server) }"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_series.html","id":null,"dir":"Reference","previous_headings":"","what":"Proxy for updating series. — ax_proxy_series","title":"Proxy for updating series. — ax_proxy_series","text":"Allows update series array overriding existing one.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_series.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Proxy for updating series. — ax_proxy_series","text":"","code":"ax_proxy_series(proxy, newSeries, animate = TRUE)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_series.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Proxy for updating series. — ax_proxy_series","text":"proxy apexchartProxy htmlwidget object. newSeries series array override existing one. animate chart animate re-rendering.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_series.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Proxy for updating series. — ax_proxy_series","text":"","code":"if (interactive()) { library(shiny) ui <- fluidPage( fluidRow( column( width = 8, offset = 2, tags$h2(\"Real time chart\"), apexchartOutput(outputId = \"chart\") ) ) ) server <- function(input, output, session) { rv <- reactiveValues() rv$df <- data.frame( date = Sys.Date() + 1:20, values = sample(10:90, 20, TRUE) ) observe({ invalidateLater(1000, session) df <- isolate(rv$df) # Append new line of data df <- rbind( df, data.frame( date = df$date[length(df$date)] + 1, values = sample(10:90, 1, TRUE) ) ) rv$df <- df }) output$chart <- renderApexchart({ # Generate chart once apex(isolate(rv$df), aes(date, values), \"spline\") %>% ax_xaxis( range = 10 * 24 * 60 * 60 * 1000 # Fixed range for x-axis : 10 days # days*hours*minutes*seconds*milliseconds ) }) observe({ # Update chart to add new data apexchartProxy(\"chart\") %>% ax_proxy_series( parse_df(rv$df), T ) }) } shinyApp(ui, server) }"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_responsive.html","id":null,"dir":"Reference","previous_headings":"","what":"Responsive options — ax_responsive","title":"Responsive options — ax_responsive","text":"Responsive options","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_responsive.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Responsive options — ax_responsive","text":"","code":"ax_responsive(ax, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_responsive.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Responsive options — ax_responsive","text":"ax apexchart() htmlwidget object. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_responsive.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Responsive options — ax_responsive","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_responsive.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Responsive options — ax_responsive","text":"See https://apexcharts.com/docs/options/responsive/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_responsive.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Responsive options — ax_responsive","text":"","code":"data(\"mpg\", package = \"ggplot2\") # Open in browser and resize window apex( data = mpg, mapping = aes(x = manufacturer, fill = year), type = \"bar\" ) %>% ax_legend(position = \"right\") %>% ax_responsive( list( breakpoint = 1000, options = list( plotOptions = list( bar = list( horizontal = FALSE ) ), legend = list( position = \"bottom\" ) ) ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"1999\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":7},{\"x\":\"dodge\",\"y\":16},{\"x\":\"ford\",\"y\":15},{\"x\":\"honda\",\"y\":5},{\"x\":\"hyundai\",\"y\":6},{\"x\":\"jeep\",\"y\":2},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":2},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":6},{\"x\":\"pontiac\",\"y\":3},{\"x\":\"subaru\",\"y\":6},{\"x\":\"toyota\",\"y\":20},{\"x\":\"volkswagen\",\"y\":16}]},{\"name\":\"2008\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":12},{\"x\":\"dodge\",\"y\":21},{\"x\":\"ford\",\"y\":10},{\"x\":\"honda\",\"y\":4},{\"x\":\"hyundai\",\"y\":8},{\"x\":\"jeep\",\"y\":6},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":1},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":7},{\"x\":\"pontiac\",\"y\":2},{\"x\":\"subaru\",\"y\":8},{\"x\":\"toyota\",\"y\":14},{\"x\":\"volkswagen\",\"y\":11}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":true,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":false}},\"xaxis\":{\"lines\":{\"show\":true}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"legend\":{\"position\":\"right\"},\"responsive\":[{\"breakpoint\":1000,\"options\":{\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"legend\":{\"position\":\"bottom\"}}}]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"bar\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_states.html","id":null,"dir":"Reference","previous_headings":"","what":"Charts' states — ax_states","title":"Charts' states — ax_states","text":"Charts' states","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_states.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Charts' states — ax_states","text":"","code":"ax_states(ax, normal = NULL, hover = NULL, active = NULL, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_states.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Charts' states — ax_states","text":"ax apexchart() htmlwidget object. normal list parameters. hover list parameters. active list parameters. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_states.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Charts' states — ax_states","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_states.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Charts' states — ax_states","text":"See https://apexcharts.com/docs/options/states/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_states.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Charts' states — ax_states","text":"","code":"data(\"mpg\", package = \"ggplot2\") # Inverse effect on hover apex( data = mpg, mapping = aes(x = manufacturer), type = \"bar\" ) %>% ax_states( hover = list( filter = list( type = \"darken\" ) ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":true,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":false}},\"xaxis\":{\"lines\":{\"show\":true}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"states\":{\"hover\":{\"filter\":{\"type\":\"darken\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"bar\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_stroke.html","id":null,"dir":"Reference","previous_headings":"","what":"Stroke properties — ax_stroke","title":"Stroke properties — ax_stroke","text":"Stroke properties","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_stroke.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Stroke properties — ax_stroke","text":"","code":"ax_stroke( ax, show = NULL, curve = NULL, lineCap = NULL, width = NULL, colors = NULL, dashArray = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_stroke.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Stroke properties — ax_stroke","text":"ax apexchart() htmlwidget object. show Logical. show hide path-stroke / line curve line / area charts, whether draw smooth lines straight lines. Available Options: \"smooth\" (connects points curve fashion. Also known spline) \"straight\" (connect points straight lines.). lineCap setting starting ending points stroke. Available Options: \"butt\" (ends stroke 90-degree angle), \"square\" (similar butt except extends stroke beyond length path) \"round\" (ends path-stroke radius smooths start end points) width Sets width border svg path. colors Colors fill border paths. dashArray Creates dashes borders svg path. Higher number creates space dashes border. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_stroke.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Stroke properties — ax_stroke","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_stroke.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Stroke properties — ax_stroke","text":"See https://apexcharts.com/docs/options/stroke/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_stroke.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Stroke properties — ax_stroke","text":"","code":"data(\"economics\", package = \"ggplot2\") apex( data = economics, mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_stroke( width = 1, dashArray = 4 ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,4.5],[-76377600000,4.7],[-73699200000,4.6],[-71107200000,4.9],[-68428800000,4.7],[-65836800000,4.8],[-63158400000,5.1],[-60480000000,4.5],[-57974400000,4.1],[-55296000000,4.6],[-52704000000,4.4],[-50025600000,4.4],[-47433600000,4.5],[-44755200000,4.2],[-42076800000,4.6],[-39484800000,4.8],[-36806400000,4.4],[-34214400000,4.4],[-31536000000,4.4],[-28857600000,4.9],[-26438400000,4],[-23760000000,4],[-21168000000,4.2],[-18489600000,4.4],[-15897600000,4.4],[-13219200000,4.4],[-10540800000,4.7],[-7948800000,4.5],[-5270400000,4.8],[-2678400000,4.6],[0,4.6],[2678400000,4.5],[5097600000,4.6],[7776000000,4.1],[10368000000,4.7],[13046400000,4.9],[15638400000,5.1],[18316800000,5.4],[20995200000,5.2],[23587200000,5.2],[26265600000,5.6],[28857600000,5.9],[31536000000,6.2],[34214400000,6.3],[36633600000,6.4],[39312000000,6.5],[41904000000,6.7],[44582400000,5.7],[47174400000,6.2],[49852800000,6.4],[52531200000,5.8],[55123200000,6.5],[57801600000,6.4],[60393600000,6.2],[63072000000,6.2],[65750400000,6.6],[68256000000,6.6],[70934400000,6.7],[73526400000,6.6],[76204800000,5.4],[78796800000,6.1],[81475200000,6],[84153600000,5.6],[86745600000,5.7],[89424000000,5.7],[92016000000,6.1],[94694400000,5.7],[97372800000,5.2],[99792000000,5.5],[102470400000,5],[105062400000,4.9],[107740800000,5],[110332800000,5.2],[113011200000,4.9],[115689600000,5.4],[118281600000,5.5],[120960000000,5.1],[123552000000,4.7],[126230400000,5],[128908800000,5.1],[131328000000,4.8],[134006400000,5],[136598400000,4.6],[139276800000,5.3],[141868800000,5.7],[144547200000,5],[147225600000,5.3],[149817600000,5.5],[152496000000,5.2],[155088000000,5.7],[157766400000,6.3],[160444800000,7.1],[162864000000,7.2],[165542400000,8.699999999999999],[168134400000,9.4],[170812800000,8.800000000000001],[173404800000,8.6],[176083200000,9.199999999999999],[178761600000,9.199999999999999],[181353600000,8.6],[184032000000,9.5],[186624000000,9],[189302400000,9],[191980800000,8.199999999999999],[194486400000,8.699999999999999],[197164800000,8.199999999999999],[199756800000,8.300000000000001],[202435200000,7.8],[205027200000,7.7],[207705600000,7.9],[210384000000,7.8],[212976000000,7.7],[215654400000,8.4],[218246400000,8],[220924800000,7.5],[223603200000,7.2],[226022400000,7.2],[228700800000,7.3],[231292800000,7.9],[233971200000,6.2],[236563200000,7.1],[239241600000,7],[241920000000,6.7],[244512000000,6.9],[247190400000,7],[249782400000,6.8],[252460800000,6.5],[255139200000,6.7],[257558400000,6.2],[260236800000,6.1],[262828800000,5.7],[265507200000,6],[268099200000,5.8],[270777600000,5.8],[273456000000,5.6],[276048000000,5.9],[278726400000,5.5],[281318400000,5.6],[283996800000,5.9],[286675200000,5.9],[289094400000,5.9],[291772800000,5.4],[294364800000,5.6],[297043200000,5.6],[299635200000,5.9],[302313600000,4.8],[304992000000,5.5],[307584000000,5.5],[310262400000,5.3],[312854400000,5.7],[315532800000,5.3],[318211200000,5.8],[320716800000,6],[323395200000,5.8],[325987200000,5.7],[328665600000,6.4],[331257600000,7],[333936000000,7.5],[336614400000,7.7],[339206400000,7.5],[341884800000,7.7],[344476800000,7.5],[347155200000,7.4],[349833600000,7.1],[352252800000,7.1],[354931200000,7.4],[357523200000,6.9],[360201600000,6.6],[362793600000,7.1],[365472000000,7.2],[368150400000,6.8],[370742400000,6.8],[373420800000,6.9],[376012800000,6.9],[378691200000,7.1],[381369600000,7.5],[383788800000,7.7],[386467200000,8.1],[389059200000,8.5],[391737600000,9.5],[394329600000,8.5],[397008000000,8.699999999999999],[399686400000,9.5],[402278400000,9.699999999999999],[404956800000,10],[407548800000,10.2],[410227200000,11.1],[412905600000,9.800000000000001],[415324800000,10.4],[418003200000,10.9],[420595200000,12.3],[423273600000,11.3],[425865600000,10.1],[428544000000,9.300000000000001],[431222400000,9.300000000000001],[433814400000,9.4],[436492800000,9.300000000000001],[439084800000,8.699999999999999],[441763200000,9.1],[444441600000,8.300000000000001],[446947200000,8.300000000000001],[449625600000,8.199999999999999],[452217600000,9.1],[454896000000,7.5],[457488000000,7.5],[460166400000,7.3],[462844800000,7.6],[465436800000,7.2],[468115200000,7.2],[470707200000,7.3],[473385600000,6.8],[476064000000,7.1],[478483200000,7.1],[481161600000,6.9],[483753600000,6.9],[486432000000,6.6],[489024000000,6.9],[491702400000,7.1],[494380800000,6.9],[496972800000,7.1],[499651200000,7],[502243200000,6.8],[504921600000,6.7],[507600000000,6.9],[510019200000,6.8],[512697600000,6.7],[515289600000,6.8],[517968000000,7],[520560000000,6.9],[523238400000,7.1],[525916800000,7.4],[528508800000,7],[531187200000,7.1],[533779200000,7.1],[536457600000,6.9],[539136000000,6.6],[541555200000,6.6],[544233600000,7.1],[546825600000,6.6],[549504000000,6.5],[552096000000,6.5],[554774400000,6.4],[557452800000,6],[560044800000,6.3],[562723200000,6.2],[565315200000,6],[567993600000,6.2],[570672000000,6.3],[573177600000,6.4],[575856000000,5.9],[578448000000,5.9],[581126400000,5.8],[583718400000,6.1],[586396800000,5.9],[589075200000,5.7],[591667200000,5.6],[594345600000,5.7],[596937600000,5.9],[599616000000,5.6],[602294400000,5.4],[604713600000,5.4],[607392000000,5.4],[609984000000,5.3],[612662400000,5.4],[615254400000,5.6],[617932800000,5],[620611200000,4.9],[623203200000,4.9],[625881600000,4.8],[628473600000,4.9],[631152000000,5.1],[633830400000,5.3],[636249600000,5.1],[638928000000,4.8],[641520000000,5.2],[644198400000,5.2],[646790400000,5.4],[649468800000,5.4],[652147200000,5.6],[654739200000,5.8],[657417600000,5.7],[660009600000,5.9],[662688000000,6],[665366400000,6.2],[667785600000,6.7],[670464000000,6.6],[673056000000,6.4],[675734400000,6.9],[678326400000,7],[681004800000,7.3],[683683200000,6.8],[686275200000,7.2],[688953600000,7.5],[691545600000,7.8],[694224000000,8.1],[696902400000,8.199999999999999],[699408000000,8.300000000000001],[702086400000,8.5],[704678400000,8.800000000000001],[707356800000,8.699999999999999],[709948800000,8.6],[712627200000,8.800000000000001],[715305600000,8.6],[717897600000,9],[720576000000,9],[723168000000,9.300000000000001],[725846400000,8.6],[728524800000,8.5],[730944000000,8.5],[733622400000,8.4],[736214400000,8.1],[738892800000,8.300000000000001],[741484800000,8.199999999999999],[744163200000,8.199999999999999],[746841600000,8.300000000000001],[749433600000,8],[752112000000,8.300000000000001],[754704000000,8.300000000000001],[757382400000,8.6],[760060800000,9.199999999999999],[762480000000,9.300000000000001],[765158400000,9.1],[767750400000,9.199999999999999],[770428800000,9.300000000000001],[773020800000,9],[775699200000,8.9],[778377600000,9.199999999999999],[780969600000,10],[783648000000,9],[786240000000,8.699999999999999],[788918400000,8],[791596800000,8.1],[794016000000,8.300000000000001],[796694400000,8.300000000000001],[799286400000,9.1],[801964800000,7.9],[804556800000,8.5],[807235200000,8.300000000000001],[809913600000,7.9],[812505600000,8.199999999999999],[815184000000,8],[817776000000,8.300000000000001],[820454400000,8.300000000000001],[823132800000,7.8],[825638400000,8.300000000000001],[828316800000,8.6],[830908800000,8.6],[833587200000,8.300000000000001],[836179200000,8.300000000000001],[838857600000,8.4],[841536000000,8.5],[844128000000,8.300000000000001],[846806400000,7.7],[849398400000,7.8],[852076800000,7.8],[854755200000,8.1],[857174400000,7.9],[859852800000,8.300000000000001],[862444800000,8],[865123200000,8],[867715200000,8.300000000000001],[870393600000,7.8],[873072000000,8.199999999999999],[875664000000,7.7],[878342400000,7.6],[880934400000,7.5],[883612800000,7.4],[886291200000,7],[888710400000,6.8],[891388800000,6.7],[893980800000,6],[896659200000,6.9],[899251200000,6.7],[901929600000,6.8],[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.199999999999999],[1009843200000,8.4],[1012521600000,8.300000000000001],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.300000000000001],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.699999999999999],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.199999999999999],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.699999999999999],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.199999999999999],[1109635200000,9.300000000000001],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.800000000000001],[1122854400000,9.199999999999999],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.699999999999999],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.699999999999999],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.300000000000001],[1164931200000,7.5],[1167609600000,8.300000000000001],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.199999999999999],[1180656000000,7.7],[1183248000000,8.699999999999999],[1185926400000,8.800000000000001],[1188604800000,8.699999999999999],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.699999999999999],[1204329600000,8.699999999999999],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.699999999999999],[1217548800000,9.699999999999999],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.800000000000001],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":1,\"dashArray\":4},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} data(\"economics_long\", package = \"ggplot2\") apex( data = economics_long, mapping = aes(x = date, y = value01, group = variable), type = \"line\" ) %>% ax_stroke( width = c(1, 2, 3, 4, 5), dashArray = c(1, 2, 3, 4, 5) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,0],[-76377600000,0.0002652497197765077],[-73699200000,0.0007615233890357775],[-71107200000,0.0004706043415389667],[-68428800000,0.0009155393553576157],[-65836800000,0.001574385433512166],[-63158400000,0.002070659102771431],[-60480000000,0.002301683052254198],[-57974400000,0.003217222407611809],[-55296000000,0.003191553079891505],[-52704000000,0.00368782674915077],[-50025600000,0.004243995516424089],[-47433600000,0.004834390053991158],[-44755200000,0.00515953487178171],[-42076800000,0.005262212182662942],[-39484800000,0.005553131230159753],[-36806400000,0.005989509801404973],[-34214400000,0.005972396916258099],[-31536000000,0.006571347896398595],[-28857600000,0.007016282910217254],[-26438400000,0.00703339579536412],[-23760000000,0.007461217924035903],[-21168000000,0.008008830248735783],[-18489600000,0.0080601689041764],[-15897600000,0.008214184870498248],[-13219200000,0.00883024873578561],[-10540800000,0.009112611340708994],[-7948800000,0.00956610279710108],[-5270400000,0.009737231648569792],[-2678400000,0.00993402982775881],[0,0.01043885993959152],[2678400000,0.01089235139598361],[5097600000,0.0107468918722352],[7776000000,0.01106348024745232],[10368000000,0.0116110925721522],[13046400000,0.01194479383251619],[15638400000,0.01213303556913178],[18316800000,0.01250951904236295],[20995200000,0.01304001848191596],[23587200000,0.01297156694132847],[26265600000,0.01282610741758007],[28857600000,0.01359618724918928],[31536000000,0.01449461371940003],[34214400000,0.0147769763243234],[36633600000,0.01499944383123273],[39312000000,0.01558128192622635],[41904000000,0.01577808010541538],[44582400000,0.01652249060930427],[47174400000,0.01644548262614336],[49852800000,0.0169588691805495],[52531200000,0.01765194102899779],[55123200000,0.01789152142105398],[57801600000,0.0183278999922992],[60393600000,0.01896963318530688],[63072000000,0.01923488290508338],[65750400000,0.01963703570603487],[68256000000,0.0207493732405815],[70934400000,0.02103173584550488],[73526400000,0.02150234018704384],[76204800000,0.02181037211968753],[78796800000,0.02252055685328268],[81475200000,0.02306816917798256],[84153600000,0.02347887842150748],[86745600000,0.0246596674966416],[89424000000,0.025138828280754],[92016000000,0.0256179890648664],[94694400000,0.0265078590925037],[97372800000,0.02730360825183322],[99792000000,0.02790255923197371],[102470400000,0.02815069606660336],[105062400000,0.02865552617843606],[107740800000,0.02888655012791882],[110332800000,0.02972508150011552],[113011200000,0.02965662995952803],[115689600000,0.03101710432870431],[118281600000,0.03093153990296995],[120960000000,0.03167595040685885],[123552000000,0.03165028107913855],[126230400000,0.03232624004243996],[128908800000,0.03277117505625862],[131328000000,0.03377227883735059],[134006400000,0.03457658443925354],[136598400000,0.03556913177777208],[139276800000,0.03604829256188448],[141868800000,0.03689538037665461],[144547200000,0.03834141917156523],[147225600000,0.03836708849928554],[149817600000,0.03871790264479641],[152496000000,0.03846120936759334],[155088000000,0.03894037015170573],[157766400000,0.04012115922683986],[160444800000,0.04130194830197398],[162864000000,0.0414046256128552],[165542400000,0.04178110908608638],[168134400000,0.0438260988611375],[170812800000,0.04450205782443891],[173404800000,0.04561439535898554],[176083200000,0.04623045922427292],[178761600000,0.04689786174500089],[181353600000,0.04741980474198049],[184032000000,0.04869471468542239],[186624000000,0.0500894148248924],[189302400000,0.05137288121090774],[191980800000,0.05142421986634838],[194486400000,0.05204028373163574],[197164800000,0.05293871020184649],[199756800000,0.05270768625236372],[202435200000,0.05423073303043527],[205027200000,0.05500936930461791],[207705600000,0.05572811048078651],[210384000000,0.05665220627871756],[212976000000,0.05733672168459241],[215654400000,0.05838060767855157],[218246400000,0.0603058072575746],[220924800000,0.06060528274764485],[223603200000,0.06199998288711486],[226022400000,0.06259893386725535],[228700800000,0.06336901369886457],[231292800000,0.06420754507106124],[233971200000,0.06476371383833457],[236563200000,0.0662097526332452],[239241600000,0.06665468764706386],[241920000000,0.0674076545935262],[244512000000,0.06885369338843683],[247190400000,0.07018849842989279],[249782400000,0.07095857826150201],[252460800000,0.07040240949422868],[255139200000,0.07259285879302821],[257558400000,0.07450950192947781],[260236800000,0.07612666957585716],[262828800000,0.07746147461731311],[265507200000,0.07864226369244723],[268099200000,0.07872782811818159],[270777600000,0.08045622951801559],[273456000000,0.08096105962984831],[276048000000,0.0821589615901293],[278726400000,0.08333119422268997],[281318400000,0.08469166859186625],[283996800000,0.08519649870369897],[286675200000,0.08651419086000804],[289094400000,0.08766075416484843],[291772800000,0.0882768180301358],[294364800000,0.09002233231511667],[297043200000,0.09146837111002731],[299635200000,0.09235824113766461],[302313600000,0.09488239169682813],[304992000000,0.09644822068776687],[307584000000,0.0971070667659214],[310262400000,0.0984504282499508],[312854400000,0.09922050808156002],[315532800000,0.1018730052793251],[318211200000,0.102223819424836],[320716800000,0.1028056575198296],[323395200000,0.1016933199852829],[325987200000,0.1021125856713813],[328665600000,0.1037126404326137],[331257600000,0.106134113680896],[333936000000,0.1075630395906598],[336614400000,0.1089919655004236],[339206400000,0.112123623482301],[341884800000,0.1129535984119243],[344476800000,0.1150841526127098],[347155200000,0.1166499816036485],[349833600000,0.1178649964490763],[352252800000,0.1194650512103088],[354931200000,0.1195933978489104],[357523200000,0.1203977034508133],[360201600000,0.1221688870635145],[362793600000,0.1228191766990956],[365472000000,0.1249155051295873],[368150400000,0.1248213842612795],[370742400000,0.1246844811801046],[373420800000,0.1252577628325248],[376012800000,0.1268150353808901],[378691200000,0.1275252201144852],[381369600000,0.1295873227746832],[383788800000,0.1298354596093128],[386467200000,0.1300237013459284],[389059200000,0.1315809738942937],[391737600000,0.1318890058269374],[394329600000,0.1339511084871354],[397008000000,0.1346270674504368],[399686400000,0.1367233958809285],[402278400000,0.1385373617064969],[404956800000,0.1405481257112543],[407548800000,0.1416005681477869],[410227200000,0.1426615670268929],[412905600000,0.142918260304096],[415324800000,0.1451258224880424],[418003200000,0.1471451429353732],[420595200000,0.1488136492371932],[423273600000,0.1513891384517973],[425865600000,0.153819168142653],[428544000000,0.1551881989544028],[431222400000,0.1564288831275509],[433814400000,0.1583711955917208],[436492800000,0.1591156060956097],[439084800000,0.1614515149181576],[441763200000,0.1636590771021041],[444441600000,0.1622986027329278],[446947200000,0.1647029630960632],[449625600000,0.166919081722583],[452217600000,0.1683736769600671],[454896000000,0.170179086343062],[457488000000,0.1700935219173277],[460166400000,0.1715994558102523],[462844800000,0.1734476474061145],[465436800000,0.1732337363417786],[468115200000,0.1766648698137263],[470707200000,0.1776231913819511],[473385600000,0.1807206235935348],[476064000000,0.1826030409596907],[478483200000,0.1832618870378452],[481161600000,0.1842030957209231],[483753600000,0.1873604230305209],[486432000000,0.1867614720503804],[489024000000,0.1890118164471939],[491702400000,0.1921263615439245],[494380800000,0.1957714060802081],[496972800000,0.1924429499191417],[499651200000,0.1937520856328773],[502243200000,0.1971917755473985],[504921600000,0.1985436934740013],[507600000000,0.1979532989364342],[510019200000,0.198244217983931],[512697600000,0.1992367653224495],[515289600000,0.2011448520163257],[517968000000,0.20150422260441],[520560000000,0.20317272890623],[523238400000,0.2046615499140078],[525916800000,0.2109248658777627],[528508800000,0.2075964097166962],[531187200000,0.2072113698008916],[533779200000,0.2130896458488419],[536457600000,0.2078188772236056],[539136000000,0.21348324220722],[541555200000,0.2144757895457385],[544233600000,0.2166576824019646],[546825600000,0.2174791008890144],[549504000000,0.2195668728769327],[552096000000,0.2214407338005151],[554774400000,0.2245296095695254],[557452800000,0.2241616825388677],[560044800000,0.2248461979447425],[562723200000,0.2256761728743658],[565315200000,0.2282345492038231],[567993600000,0.2316229004629036],[570672000000,0.2322817465410582],[573177600000,0.2356273155872715],[575856000000,0.2358412266516074],[578448000000,0.2384594980790787],[581126400000,0.2405900522798642],[583718400000,0.2426607113826356],[586396800000,0.2448254913537148],[589075200000,0.2454244423338553],[591667200000,0.2487357856097749],[594345600000,0.2501475986343918],[596937600000,0.2526717491935553],[599616000000,0.2547252954111799],[602294400000,0.2550932224418376],[604713600000,0.2560173182397687],[607392000000,0.2597992658572272],[609984000000,0.2605522328036896],[612662400000,0.2618185863045581],[615254400000,0.2634528668360843],[617932800000,0.2664390652942133],[620611200000,0.266550299047668],[623203200000,0.2675514028287599],[625881600000,0.2683813777583832],[628473600000,0.2718809627709184],[631152000000,0.275859708567566],[633830400000,0.2756457975032301],[636249600000,0.2779303676703375],[638928000000,0.2792223904989262],[641520000000,0.2797186641681855],[644198400000,0.2821743631867615],[646790400000,0.2836460713093925],[649468800000,0.2859220850339264],[652147200000,0.2877873895149353],[654739200000,0.2878301717278025],[657417600000,0.2879414054812572],[660009600000,0.287034422568473],[662688000000,0.2852974647260655],[665366400000,0.2874964704674385],[667785600000,0.2914581033789392],[670464000000,0.2909532732671065],[673056000000,0.2931865047787732],[675734400000,0.293811125086634],[678326400000,0.2959930179428601],[681004800000,0.2962582676626366],[683683200000,0.2975930727040926],[686275200000,0.2968486622002037],[688953600000,0.2992102403504719],[691545600000,0.3006562791453826],[694224000000,0.3061495152775283],[696902400000,0.3074158687783968],[699408000000,0.308913246228748],[702086400000,0.3101539304018961],[704678400000,0.3124556134541503],[707356800000,0.3140556682153828],[709948800000,0.3164258028082245],[712627200000,0.3178033900625476],[715305600000,0.3207468063078096],[717897600000,0.3232624004243996],[720576000000,0.3246143183510025],[723168000000,0.3276860812348658],[725846400000,0.3280540082655236],[728524800000,0.3293032488812452],[730944000000,0.329063668489189],[733622400000,0.3325632535017242],[736214400000,0.3350446218480205],[738892800000,0.3365505557409452],[741484800000,0.3390233676446681],[744163200000,0.3400672536386273],[746841600000,0.3426684121809517],[749433600000,0.3444909344490935],[752112000000,0.3463134567172353],[754704000000,0.3477680519547194],[757382400000,0.3489659539150004],[760060800000,0.3530302641373823],[762480000000,0.3541768274422227],[765158400000,0.3563244945281551],[767750400000,0.3561875914469801],[770428800000,0.3595588298209137],[773020800000,0.3605599336020057],[775699200000,0.3641536394828487],[778377600000,0.3652146383619547],[780969600000,0.3684575300972868],[783648000000,0.3695441983041132],[786240000000,0.3709132291158629],[788918400000,0.3717346476029126],[791596800000,0.3717004218326189],[794016000000,0.3746609509630277],[796694400000,0.3750716602065526],[799286400000,0.3787423740705565],[801964800000,0.3825414345731619],[804556800000,0.3819168142653011],[807235200000,0.3849201256085771],[809913600000,0.3862207048797393],[812505600000,0.3856559796698925],[815184000000,0.3892240162230152],[817776000000,0.3928091656612847],[820454400000,0.3917995054376193],[823132800000,0.3958295898897075],[825638400000,0.399294949131949],[828316800000,0.4022640347049312],[830908800000,0.403615952631534],[833587200000,0.4041293391859401],[836179200000,0.4060203129946694],[838857600000,0.407996851229133],[841536000000,0.4098450428249952],[844128000000,0.4125745480059211],[846806400000,0.414516860470091],[849398400000,0.4168613257352125],[852076800000,0.419642169571579],[854755200000,0.4216015949208958],[857174400000,0.4233299963207298],[859852800000,0.423766374891975],[862444800000,0.4238433828751359],[865123200000,0.426752573350104],[867715200000,0.4314243909951999],[870393600000,0.4346929520582523],[873072000000,0.4359507491165474],[875664000000,0.4390310684429842],[878342400000,0.4410332760051682],[880934400000,0.4436857732029332],[883612800000,0.4434975314663176],[886291200000,0.4463981654987124],[888710400000,0.4486656227806728],[891388800000,0.4518999580734315],[893980800000,0.4561610664750024],[896659200000,0.4590531440648237],[899251200000,0.4606189730557624],[901929600000,0.4636137279564649],[904608000000,0.4670876436412798],[907200000000,0.4699283825756604],[909878400000,0.4713487520428507],[912470400000,0.4760633519008138],[915148800000,0.4762687065225762],[917827200000,0.4787415184262992],[920246400000,0.4814025720666376],[922924800000,0.4868188002156224],[925516800000,0.489342950774786],[928195200000,0.4917644240230682],[930787200000,0.494117445730763],[933465600000,0.4979678448888091],[936144000000,0.502442864354716],[938736000000,0.5044365154743266],[941414400000,0.5074997219156164],[944006400000,0.5161246160296395],[946684800000,0.5158336969821428],[949363200000,0.5230553345141224],[951868800000,0.5287111430551635],[954547200000,0.5274533459968684],[957139200000,0.5305764475361725],[959817600000,0.5336824361903295],[962409600000,0.5354108375901636],[965088000000,0.5384055924908661],[967766400000,0.5455758913674051],[970358400000,0.5460293828237972],[973036800000,0.5472443976692251],[975628800000,0.5509493373035228],[978307200000,0.5536275038290082],[980985600000,0.555236115032814],[983404800000,0.5545601560695126],[986083200000,0.5556981629317795],[988675200000,0.5596255700729865],[991353600000,0.5607892462629738],[993945600000,0.5617732371589189],[996624000000,0.5649134515833698],[999302400000,0.5566907102702982],[1001894400000,0.5734271119439383],[1004572800000,0.5699617527016968],[1007164800000,0.5682333513018628],[1009843200000,0.5705093650263967],[1012521600000,0.5742741997587084],[1014940800000,0.5758913674050877],[1017619200000,0.5817268612401708],[1020211200000,0.5797845487760009],[1022889600000,0.5828220858895706],[1025481600000,0.5881441931702476],[1028160000000,0.5899496025532426],[1030838400000,0.5890511760830318],[1033430400000,0.5924480837846857],[1036108800000,0.5949294521309821],[1038700800000,0.5994729231374765],[1041379200000,0.6012098809798839],[1044057600000,0.6014494613719401],[1046476800000,0.6067972379803374],[1049155200000,0.6087309940019339],[1051747200000,0.6093385014246478],[1054425600000,0.6136595049242328],[1057017600000,0.6187591446980004],[1059696000000,0.626998998896219],[1062374400000,0.6270417811090861],[1064966400000,0.6279573204644437],[1067644800000,0.6325692430115256],[1070236800000,0.6351019500132625],[1072915200000,0.6400817995910021],[1075593600000,0.6428540869847953],[1078099200000,0.6476628077110661],[1080777600000,0.6487409194753191],[1083369600000,0.6551240256351021],[1086048000000,0.6537549948233523],[1088640000000,0.6598899641485056],[1091318400000,0.6628162675086208],[1093996800000,0.668634648458557],[1096588800000,0.6732123452353451],[1099267200000,0.6771483088191255],[1101859200000,0.6823591823463477],[1104537600000,0.6813923043355496],[1107216000000,0.6864406054538766],[1109635200000,0.6898888518109711],[1112313600000,0.6964003046093558],[1114905600000,0.6962548450856073],[1117584000000,0.7031770071275166],[1120176000000,0.7121356025019039],[1122854400000,0.7123837393365334],[1125532800000,0.7169528796707481],[1128124800000,0.7204439082407099],[1130803200000,0.7214621249069487],[1133395200000,0.7241231785472872],[1136073600000,0.7318410897485261],[1138752000000,0.7344336918482772],[1141171200000,0.7371717534717767],[1143849600000,0.7416809987079771],[1146441600000,0.7451292450650718],[1149120000000,0.7473282508064447],[1151712000000,0.7543274208315152],[1154390400000,0.7542589692909276],[1157068800000,0.7570740388975881],[1159660800000,0.7586569807736736],[1162339200000,0.7592559317538141],[1164931200000,0.766854052759025],[1167609600000,0.77090125009626],[1170288000000,0.7735109650811578],[1172707200000,0.7767880825867838],[1175385600000,0.7794063540142552],[1177977600000,0.7824524475703981],[1180656000000,0.7838214783821478],[1183248000000,0.7874408535907111],[1185926400000,0.7912313576507432],[1188604800000,0.7949961923830549],[1191196800000,0.7974861171719246],[1193875200000,0.8035440785139171],[1196467200000,0.8044510614267012],[1199145600000,0.8062992530225633],[1201824000000,0.8048788835553731],[1204329600000,0.8088148471391534],[1207008000000,0.8120149566616184],[1209600000000,0.8168921289284766],[1212278400000,0.8215211643607054],[1214870400000,0.8212473581983556],[1217548800000,0.820391713941012],[1220227200000,0.8160108153434129],[1222819200000,0.8088918551223143],[1225497600000,0.7969556177323716],[1228089600000,0.7892462629737061],[1230768000000,0.7937897339802004],[1233446400000,0.7922666872021289],[1235865600000,0.7882023769797469],[1238544000000,0.7887414328618734],[1241136000000,0.7908035355220714],[1243814400000,0.795766272214664],[1246406400000,0.7987439142302197],[1249084800000,0.8089517502203284],[1251763200000,0.8023119507833423],[1254355200000,0.8064618254314586],[1257033600000,0.8071976794927741],[1259625600000,0.8121946419556605],[1262304000000,0.8124427787902901],[1264982400000,0.8149070342514397],[1267401600000,0.8199125531568996],[1270080000000,0.8219489864893772],[1272672000000,0.8234977025951691],[1275350400000,0.8252432168801499],[1277942400000,0.8280925122571041],[1280620800000,0.8318145647765486],[1283299200000,0.8335943048318232],[1285891200000,0.8383602433452269],[1288569600000,0.8426384646319447],[1291161600000,0.8458385741544097],[1293840000000,0.8495520702312807],[1296518400000,0.8525125993616894],[1298937600000,0.8593919791907317],[1301616000000,0.8625664193854764],[1304208000000,0.8646541913733946],[1306886400000,0.8667761891316066],[1309478400000,0.870258661258995],[1312156800000,0.8722351994934586],[1314835200000,0.8754438654584971],[1317427200000,0.8767273318445125],[1320105600000,0.8772749441692123],[1322697600000,0.8783616123760386],[1325376000000,0.8860538542495573],[1328054400000,0.8938744427616775],[1330560000000,0.8937289832379289],[1333238400000,0.8961162307159176],[1335830400000,0.8951664655902662],[1338508800000,0.89325837889639],[1341100800000,0.8959023196515817],[1343779200000,0.8982040027038359],[1346457600000,0.903115400740988],[1349049600000,0.9063925182466138],[1351728000000,0.909558401998785],[1354320000000,0.9098749903740021],[1356998400000,0.9152056540972525],[1359676800000,0.9183544249642769],[1362096000000,0.9172848696425975],[1364774400000,0.9154281216041619],[1367366400000,0.9187822470929488],[1370044800000,0.92085290619572],[1372636800000,0.9232401536737087],[1375315200000,0.9260209975100753],[1377993600000,0.9292467763602604],[1380585600000,0.9337731344816079],[1383264000000,0.9395744025463973],[1385856000000,0.9421670046461483],[1388534400000,0.9417049567471828],[1391212800000,0.9462997664091178],[1393632000000,0.9528711143055164],[1396310400000,0.9579707540792841],[1398902400000,0.9618896047779175],[1401580800000,0.9677593243832945],[1404172800000,0.9714813769027389],[1406851200000,0.978651675779278],[1409529600000,0.9797725697563981],[1412121600000,0.985385596084572],[1414800000000,0.9878156257754276],[1417392000000,0.9887226086882118],[1420070400000,0.9873535778764622],[1422748800000,0.9904681229731926],[1425168000000,0.9969624628864303],[1427846400000,1]]},{\"name\":\"pop\",\"type\":\"line\",\"data\":[[-79056000000,0],[-76377600000,0.001635298854358106],[-73699200000,0.003295250455264325],[-71107200000,0.004922331727439728],[-68428800000,0.006459019595605386],[-65836800000,0.00776561516265533],[-63158400000,0.009006470072243642],[-60480000000,0.009926839276706496],[-57974400000,0.01104443045355425],[-55296000000,0.01229350294532526],[-52704000000,0.01355079301927898],[-50025600000,0.01498886990125219],[-47433600000,0.01638585887231188],[-44755200000,0.01796363465139106],[-42076800000,0.01958249834138376],[-39484800000,0.02118492686701105],[-36806400000,0.02263122133116696],[-34214400000,0.02390494656948609],[-31536000000,0.02504719049288195],[-28857600000,0.02604151793698915],[-26438400000,0.02720841460693312],[-23760000000,0.02834244094814628],[-21168000000,0.02973942991920597],[-18489600000,0.03118572438336188],[-15897600000,0.03258271335442157],[-13219200000,0.03422622979096238],[-10540800000,0.03597657479587835],[-7948800000,0.0377187022186116],[-5270400000,0.039345783490787],[-2678400000,0.04078386037276022],[0,0.04221371967255072],[2678400000,0.04352031523960066],[5097600000,0.04473651740264087],[7776000000,0.04674982503740336],[10368000000,0.04844264696704039],[13046400000,0.0502751677937834],[15638400000,0.0520994710383437],[18316800000,0.05409634350874078],[20995200000,0.05610965114350328],[23587200000,0.05814761152481388],[26265600000,0.06008696091993204],[28857600000,0.0618455235070307],[31536000000,0.06371913224468723],[34214400000,0.06537908384559345],[36633600000,0.06691577171375911],[39312000000,0.06864146397212696],[41904000000,0.07024389249775424],[44582400000,0.07190384409866046],[47174400000,0.07353914295301857],[49852800000,0.07534701103321347],[52531200000,0.0772617076817835],[55123200000,0.07915996916598815],[57801600000,0.08088566142435599],[60393600000,0.08240591412815625],[63072000000,0.08386042617449486],[65750400000,0.08504375800880425],[68256000000,0.08628461291839255],[70934400000,0.08771447221818307],[73526400000,0.08902106778523301],[76204800000,0.09050023257811973],[78796800000,0.09190543913136213],[81475200000,0.09337638634206616],[84153600000,0.09504455552515507],[86745600000,0.0966962895438786],[89424000000,0.09815080159021722],[92016000000,0.09950670265036338],[94694400000,0.1008543861283268],[97372800000,0.1019637597229919],[99792000000,0.1030649157354742],[102470400000,0.1044290343778031],[105062400000,0.1057191947804876],[107740800000,0.1071079661693646],[110332800000,0.1084474320651454],[113011200000,0.1099512496045802],[115689600000,0.1115701132945729],[118281600000,0.1130985835805559],[120960000000,0.1144051791476058],[123552000000,0.1156460340571941],[126230400000,0.1168540186380516],[128908800000,0.1180209153079956],[131328000000,0.1191467240670261],[134006400000,0.1203793613944317],[136598400000,0.1216284338862027],[139276800000,0.1230500756038105],[141868800000,0.1244306294105048],[144547200000,0.1259755348608531],[147225600000,0.1276519216261248],[149817600000,0.1293365259735791],[152496000000,0.1307663852733696],[155088000000,0.1320565456760541],[157766400000,0.133280965421277],[160444800000,0.1343821214337594],[162864000000,0.135475059864059],[165542400000,0.1367487851023781],[168134400000,0.1381457740734378],[170812800000,0.1401590817082003],[173404800000,0.1418436860556547],[176083200000,0.143667989300215],[178761600000,0.1452950705723904],[181353600000,0.1468892815158349],[184032000000,0.1484013166374525],[186624000000,0.1497161297866851],[189302400000,0.1510638132646486],[191980800000,0.152329320920785],[194486400000,0.153414041768902],[197164800000,0.1546220263497595],[199756800000,0.155912186752444],[202435200000,0.1573584812165999],[205027200000,0.1587883405163904],[207705600000,0.1604154217885658],[210384000000,0.1621164613003856],[212976000000,0.1637928480656572],[215654400000,0.165354188680371],[218246400000,0.1667676128157961],[220924800000,0.1681892545334039],[223603200000,0.16954515559355],[226022400000,0.1708599687427827],[228700800000,0.1723391335356694],[231292800000,0.1737772104176426],[233971200000,0.1753138982858083],[236563200000,0.1768998916470702],[239241600000,0.1786995421450824],[241920000000,0.1805895860471043],[244512000000,0.1823645837985683],[247190400000,0.1840491881460227],[249782400000,0.1856433990894673],[252460800000,0.1870732583892578],[255139200000,0.1883223308810288],[257558400000,0.1896617967768096],[260236800000,0.1912970956311676],[262828800000,0.1928173483349679],[265507200000,0.1944855175180568],[268099200000,0.1961783394476939],[270777600000,0.1979862075278888],[273456000000,0.2000241679091994],[276048000000,0.2018156008250288],[278726400000,0.2035084227546659],[281318400000,0.2050944161159278],[283996800000,0.206696844641555],[286675200000,0.2082417500919034],[289094400000,0.2097373500491556],[291772800000,0.2114055192322445],[294364800000,0.2129997301756891],[297043200000,0.2147336400162396],[299635200000,0.2164757674389729],[302313600000,0.2184479871628218],[304992000000,0.2205188178728633],[307584000000,0.2226060837472701],[310262400000,0.2244632573205612],[312854400000,0.2262382550720253],[315532800000,0.2279475121660277],[318211200000,0.2296321165134821],[320716800000,0.2312181098747439],[323395200000,0.2329602372974772],[325987200000,0.234521577912191],[328665600000,0.2367485426837038],[331257600000,0.2384249294489754],[333936000000,0.2402903206044492],[336614400000,0.2422050172530193],[339206400000,0.2441032787372239],[341884800000,0.2457057072628512],[344476800000,0.2470780434873628],[347155200000,0.24837642147223],[349833600000,0.2494775774847124],[352252800000,0.2507348675586661],[354931200000,0.2522058147693701],[357523200000,0.2536192389047952],[360201600000,0.2551477091907782],[362793600000,0.2568323135382325],[365472000000,0.2586483992006101],[368150400000,0.2604973551917185],[370742400000,0.2623791815115577],[373420800000,0.2638665638866272],[376012800000,0.2652389001111387],[378691200000,0.266619453917833],[381369600000,0.2679013967383349],[383788800000,0.2691915571410194],[386467200000,0.2706296340229926],[389059200000,0.2719773175009561],[391737600000,0.2734811350403909],[394329600000,0.2750917811482009],[397008000000,0.2767681679134725],[399686400000,0.2784692074252922],[402278400000,0.280252422758939],[404956800000,0.2817069348052776],[407548800000,0.2830792710297892],[410227200000,0.2844105193433873],[412905600000,0.2856513742529756],[415324800000,0.2868018357585542],[418003200000,0.2881823895652484],[420595200000,0.2893410686530097],[423273600000,0.2909517147608197],[425865600000,0.2925048377933508],[428544000000,0.2940990487367954],[431222400000,0.2957425651733362],[433814400000,0.2974353871029732],[436492800000,0.2988405936562156],[439084800000,0.3001307540589002],[441763200000,0.3013633913863057],[444441600000,0.3025302880562497],[446947200000,0.3037464902192899],[449625600000,0.3050941736972534],[452217600000,0.3063596813533898],[454896000000,0.3077320175779014],[457488000000,0.3092769230282498],[460166400000,0.3109286570469733],[462844800000,0.3126625668875238],[465436800000,0.3144375646389879],[468115200000,0.3159413821784227],[470707200000,0.3172315425811073],[473385600000,0.3184806150728783],[476064000000,0.3195817710853606],[478483200000,0.3206500567691122],[481161600000,0.3220306105758065],[483753600000,0.323460469875597],[486432000000,0.3250711159834069],[489024000000,0.3266817620912169],[491702400000,0.3284321070961329],[494380800000,0.3302317575941451],[496972800000,0.3319985377634265],[499651200000,0.3335927487068711],[502243200000,0.3349897376779307],[504921600000,0.3363127684093461],[507600000000,0.3375454057367517],[510019200000,0.3386958672423303],[512697600000,0.3400599858846591],[515289600000,0.3415144979309978],[517968000000,0.3430594033813461],[520560000000,0.3446371791604253],[523238400000,0.3463053483435142],[525916800000,0.3480639109306129],[528508800000,0.3497567328602499],[531187200000,0.3513427262215118],[533779200000,0.3526000162954655],[536457600000,0.353947699773429],[539136000000,0.3551474667721038],[541555200000,0.3563718865173267],[544233600000,0.3577935282349345],[546825600000,0.3591987347881769],[549504000000,0.3607189874919771],[552096000000,0.3623296335997871],[554774400000,0.3640388906937896],[557452800000,0.3657728005343401],[560044800000,0.3676053213610831],[562723200000,0.369191314722345],[565315200000,0.3705883036934047],[567993600000,0.3720017278288298],[570672000000,0.3732343651562354],[573177600000,0.3744505673192756],[575856000000,0.3758146859616044],[578448000000,0.3771705870217507],[581126400000,0.3787812331295606],[583718400000,0.380548013298842],[586396800000,0.3823476637968542],[589075200000,0.3841884022057799],[591667200000,0.3860702285256191],[594345600000,0.3876397867225156],[596937600000,0.3890532108579407],[599616000000,0.390433764664635],[602294400000,0.3916992723207714],[604713600000,0.3929483448125424],[607392000000,0.3945179030094389],[609984000000,0.3960381557132391],[612662400000,0.3977474128072416],[615254400000,0.3996210215448981],[617932800000,0.4015192830291027],[620611200000,0.4035161554994998],[623203200000,0.4055787686273585],[625881600000,0.4073373312144572],[628473600000,0.4089644124866326],[631152000000,0.4104435772795194],[633830400000,0.4118241310862136],[636249600000,0.4133443837900139],[638928000000,0.4157603529517289],[641520000000,0.4178887067370492],[644198400000,0.4202225000769372],[646790400000,0.4225480758346424],[649468800000,0.4250708735647326],[652147200000,0.4276347592057362],[654739200000,0.4301493393536437],[657417600000,0.4325242206044451],[660009600000,0.4348251436156023],[662688000000,0.4369863677296534],[665366400000,0.4390078929465986],[667785600000,0.4409554599238995],[670464000000,0.4431824246954123],[673056000000,0.4454011718847424],[675734400000,0.4478171410464574],[678326400000,0.4501673695507107],[681004800000,0.4527476903560798],[683683200000,0.4553690990723624],[686275200000,0.457908331966818],[688953600000,0.4602339077245232],[691545600000,0.4622554329414684],[694224000000,0.4643098284871444],[696902400000,0.4662327427178972],[699408000000,0.4683282261744867],[702086400000,0.4707031074252881],[704678400000,0.4731108590048205],[707356800000,0.4756090039883625],[709948800000,0.4781153665540872],[712627200000,0.4808929093318412],[715305600000,0.4834896653015757],[717897600000,0.486061768524762],[720576000000,0.4884119970290154],[723168000000,0.4905978738896147],[725846400000,0.492783750750214],[728524800000,0.4947559704740629],[730944000000,0.496670667122633],[733622400000,0.4988236736545014],[736214400000,0.5010095505151008],[738892800000,0.503335126272806],[741484800000,0.5057346602701556],[744163200000,0.5082903283289765],[746841600000,0.5107638205659705],[749433600000,0.5131962248920509],[752112000000,0.5153492314239193],[754704000000,0.5173954093874126],[757382400000,0.5194087170221751],[760060800000,0.5210851037874468],[762480000000,0.5229669301072859],[765158400000,0.5252596355362604],[767750400000,0.5272811607532055],[770428800000,0.5295409958534492],[773020800000,0.5318747891933372],[775699200000,0.5342414528619559],[778377600000,0.5366492044414882],[780969600000,0.5389829977813761],[783648000000,0.5411031339845138],[786240000000,0.5431164416192763],[788918400000,0.5450886613431253],[791596800000,0.5469458349164164],[794016000000,0.5487947909075248],[796694400000,0.5509313622750278],[799286400000,0.552928234745425],[801964800000,0.5551634170991204],[804556800000,0.5575218631855565],[807235200000,0.5598720916898099],[809913600000,0.5624113245842653],[812505600000,0.5649094695678074],[815184000000,0.5670378233531278],[817776000000,0.5689114320907843],[820454400000,0.5706206891847867],[823132800000,0.5723710341897027],[825638400000,0.5742692956739074],[828316800000,0.5763894318770449],[830908800000,0.5784849153336346],[833587200000,0.5807694031804262],[836179200000,0.5830785437737661],[838857600000,0.5856177766682217],[841536000000,0.5881487919804945],[844128000000,0.5905894138887576],[846806400000,0.5930300357970207],[849398400000,0.5950597785961486],[852076800000,0.596990910409084],[854755200000,0.5988398664001925],[857174400000,0.6007792157953106],[859852800000,0.6029322223271791],[862444800000,0.6050605761124994],[865123200000,0.6073614991236566],[867715200000,0.6097445979566407],[870393600000,0.6124153121660195],[873072000000,0.615012068135754],[875664000000,0.6174691252083826],[878342400000,0.6197207427264435],[880934400000,0.6217422679433887],[883612800000,0.6238295338177955],[886291200000,0.6255716612405288],[888710400000,0.6272891359167139],[891388800000,0.6294010545376688],[893980800000,0.6315376259051719],[896659200000,0.6337728082588674],[899251200000,0.6360655136878418],[901929600000,0.6385554410892011],[904608000000,0.6409878454152815],[907200000000,0.6433627266660831],[909878400000,0.645614344184144],[912470400000,0.6476605221476373],[915148800000,0.6498299638438712],[917827200000,0.6514899154447773],[920246400000,0.6531827373744143],[922924800000,0.6552617856666385],[925516800000,0.6574476625272377],[928195200000,0.6597814558671258],[930787200000,0.6621974250288407],[933465600000,0.6647202227589308],[936144000000,0.6671937149959248],[938736000000,0.669658989650736],[941414400000,0.6718613016757007],[944006400000,0.6738746093104632],[946684800000,0.6760111806779663],[949363200000,0.6777697432650649],[951868800000,0.6795693937630771],[954547200000,0.6815744838156569],[957139200000,0.6834152222245826],[959817600000,0.6854614001880759],[962409600000,0.6875897539733963],[965088000000,0.689792065998361],[967766400000,0.6920847714273354],[970358400000,0.6942953010344828],[973036800000,0.6963661317445242],[975628800000,0.6983630042149213],[978307200000,0.700203742623847],[980985600000,0.7019869579574938],[983404800000,0.7037373029624097],[986083200000,0.7056355644466143],[988675200000,0.7075173907664536],[991353600000,0.709588221476495],[993945600000,0.7116179642756228],[996624000000,0.7137627532253087],[999302400000,0.7160061531611869],[1001894400000,0.7181016366177764],[1004572800000,0.7200985090881735],[1007164800000,0.7219803354080127],[1009843200000,0.7237717683238422],[1012521600000,0.7254645902534792],[1014940800000,0.7270752363612892],[1017619200000,0.728776275873109],[1020211200000,0.7306334494464001],[1022889600000,0.7326138867524318],[1025481600000,0.7345943240584635],[1028160000000,0.736689807515053],[1030838400000,0.7388099437181906],[1033430400000,0.7408807744282321],[1036108800000,0.7428201238233502],[1038700800000,0.7445211633351699],[1041379200000,0.7462057676826243],[1044057600000,0.7478164137904343],[1046476800000,0.7494352774804269],[1049155200000,0.7511938400675257],[1051747200000,0.7530099257299032],[1054425600000,0.7549657102893867],[1057017600000,0.7569050596845049],[1059696000000,0.7589758903945464],[1062374400000,0.7610220683580396],[1064966400000,0.7631011166502638],[1067644800000,0.7650158132988338],[1070236800000,0.7666675473175574],[1072915200000,0.7681795824391749],[1075593600000,0.7696258769033308],[1078099200000,0.7712118702645927],[1080777600000,0.7730033031804222],[1083369600000,0.7747947360962517],[1086048000000,0.7766519096695428],[1088640000000,0.7786241293933918],[1091318400000,0.780727830432164],[1093996800000,0.7827986611422054],[1096588800000,0.7849270149275257],[1099267200000,0.7868663643226439],[1101859200000,0.7887399730603004],[1104537600000,0.7905478411404954],[1107216000000,0.7921173993373918],[1109635200000,0.7936129992946439],[1112313600000,0.7952811684777329],[1114905600000,0.7970397310648315],[1117584000000,0.7989462101312189],[1120176000000,0.8010006056768949],[1122854400000,0.8030878715513017],[1125532800000,0.8052819659940837],[1128124800000,0.8074596252725003],[1130803200000,0.8093907570854357],[1133395200000,0.8112314954943615],[1136073600000,0.8130064932458255],[1138752000000,0.8147075327576453],[1141171200000,0.8164003546872822],[1143849600000,0.8182164403496599],[1146441600000,0.8199832205189412],[1149120000000,0.8219800929893384],[1151712000000,0.8240920116102932],[1154390400000,0.8262861060530753],[1157068800000,0.8286774224682422],[1159660800000,0.830986563061582],[1162339200000,0.8331149168469023],[1164931200000,0.8351364420638475],[1167609600000,0.8370593562946003],[1170288000000,0.8389329650322568],[1172707200000,0.840732615530269],[1175385600000,0.842647312178839],[1177977600000,0.8445291384986783],[1180656000000,0.8466328395374505],[1183248000000,0.8488104988158671],[1185926400000,0.8509717229299182],[1188604800000,0.8532644283588927],[1191196800000,0.8554092173085784],[1193875200000,0.8574389601077064],[1196467200000,0.8593536567562764],[1199145600000,0.8611533072542885],[1201824000000,0.8628379116017428],[1204329600000,0.8644485577095529],[1207008000000,0.8661742499679207],[1209600000000,0.8678670718975577],[1212278400000,0.8697817685461278],[1214870400000,0.8717704234343422],[1217548800000,0.8738001662334701],[1220227200000,0.8759696079297039],[1222819200000,0.8779829155644665],[1225497600000,0.8798893946308538],[1228089600000,0.8816808275466833],[1230768000000,0.8833572143119549],[1233446400000,0.8849514252553995],[1235865600000,0.8864798955413824],[1238544000000,0.8881151943957406],[1241136000000,0.8897340580857332],[1243814400000,0.8915583613302935],[1246406400000,0.8934730579788636],[1249084800000,0.8954945831958088],[1251763200000,0.8976393721454945],[1254355200000,0.8996362446158916],[1257033600000,0.9015180709357309],[1259625600000,0.9032848511050122],[1262304000000,0.904928367541553],[1264982400000,0.9065225784849976],[1267401600000,0.9080428311887979],[1270080000000,0.9078719958728018],[1272672000000,0.9093334271233382],[1275350400000,0.9108080640284419],[1277942400000,0.9124285383645424],[1280620800000,0.9141712985411042],[1283299200000,0.9159684098062219],[1285891200000,0.9178049736833985],[1288569600000,0.9194140255802654],[1291161600000,0.9209420110288995],[1293840000000,0.9224132458549796],[1296518400000,0.9236675447290189],[1298937600000,0.924916847313091],[1301616000000,0.9263206897476913],[1304208000000,0.9277245979229488],[1306886400000,0.9292378081588184],[1309478400000,0.9309292002291556],[1312156800000,0.9326410705142923],[1314835200000,0.9344797627452546],[1317427200000,0.9362468798354051],[1320105600000,0.9377701237391198],[1322697600000,0.9392508416550392],[1325376000000,0.9406763209835264],[1328054400000,0.9419566038524274],[1330560000000,0.9432746382938756],[1333238400000,0.9446532034456815],[1335830400000,0.9459959810270823],[1338508800000,0.9475331948205072],[1341100800000,0.9491207659575486],[1343779200000,0.9508592365562104],[1346457600000,0.9527033277386666],[1349049600000,0.9544062490768062],[1351728000000,0.9560488204913961],[1354320000000,0.9575188555504774],[1356998400000,0.9588077257927593],[1359676800000,0.959880514711547],[1362096000000,0.9610480770056479],[1364774400000,0.9623269875383242],[1367366400000,0.9636894544466343],[1370044800000,0.9652293307366872],[1372636800000,0.9667720667453391],[1375315200000,0.968592663860335],[1377993600000,0.9704481774820253],[1380585600000,0.972224366782906],[1383264000000,0.9739151836224904],[1385856000000,0.9754233153925709],[1388534400000,0.9769219722903952],[1391212800000,0.9782364567363403],[1393632000000,0.9795785522584196],[1396310400000,0.9809920996575775],[1398902400000,0.9824736228965508],[1401580800000,0.9840731506156676],[1404172800000,0.9857020068855945],[1406851200000,0.9876037033191516],[1409529600000,0.989506155770269],[1412121600000,0.9913833638089218],[1414800000000,0.9931129594188262],[1417392000000,0.9946081320618051],[1420070400000,0.9961077504167446],[1422748800000,0.9973064080418247],[1425168000000,0.9985906106974269],[1427846400000,1]]},{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[-79056000000,0.6887417218543045],[-76377600000,0.6887417218543045],[-73699200000,0.6423841059602647],[-71107200000,0.7086092715231787],[-68428800000,0.7019867549668874],[-65836800000,0.6357615894039735],[-63158400000,0.6291390728476821],[-60480000000,0.6688741721854305],[-57974400000,0.6291390728476821],[-55296000000,0.6688741721854305],[-52704000000,0.6490066225165563],[-50025600000,0.6291390728476821],[-47433600000,0.5629139072847682],[-44755200000,0.5496688741721855],[-42076800000,0.5562913907284767],[-39484800000,0.5695364238410596],[-36806400000,0.5562913907284767],[-34214400000,0.5894039735099337],[-31536000000,0.5364238410596027],[-28857600000,0.4966887417218542],[-26438400000,0.5298013245033112],[-23760000000,0.4966887417218542],[-21168000000,0.5231788079470198],[-18489600000,0.5894039735099337],[-15897600000,0.6357615894039735],[-13219200000,0.6158940397350994],[-10540800000,0.6225165562913906],[-7948800000,0.6092715231788078],[-5270400000,0.6225165562913906],[-2678400000,0.6357615894039735],[0,0.6357615894039735],[2678400000,0.6291390728476821],[5097600000,0.6754966887417218],[7776000000,0.7350993377483444],[10368000000,0.6754966887417218],[13046400000,0.6688741721854305],[15638400000,0.7483443708609271],[18316800000,0.7417218543046357],[20995200000,0.7086092715231787],[23587200000,0.7218543046357614],[26265600000,0.7549668874172184],[28857600000,0.7284768211920529],[31536000000,0.7350993377483444],[34214400000,0.7350993377483444],[36633600000,0.7483443708609271],[39312000000,0.7284768211920529],[41904000000,0.7549668874172184],[44582400000,0.8278145695364237],[47174400000,0.7682119205298014],[49852800000,0.7549668874172184],[52531200000,0.7350993377483444],[55123200000,0.7350993377483444],[57801600000,0.7218543046357614],[60393600000,0.7152317880794702],[63072000000,0.6821192052980132],[65750400000,0.7019867549668874],[68256000000,0.6357615894039735],[70934400000,0.6158940397350994],[73526400000,0.6291390728476821],[76204800000,0.6291390728476821],[78796800000,0.6291390728476821],[81475200000,0.6490066225165563],[84153600000,0.662251655629139],[86745600000,0.7152317880794702],[89424000000,0.7549668874172184],[92016000000,0.7615894039735098],[94694400000,0.6754966887417218],[97372800000,0.6821192052980132],[99792000000,0.6953642384105959],[102470400000,0.7284768211920529],[105062400000,0.7284768211920529],[107740800000,0.7549668874172184],[110332800000,0.7284768211920529],[113011200000,0.7748344370860926],[115689600000,0.7218543046357614],[118281600000,0.8079470198675496],[120960000000,0.8079470198675496],[123552000000,0.8344370860927153],[126230400000,0.8013245033112583],[128908800000,0.7947019867549668],[131328000000,0.7417218543046357],[134006400000,0.7218543046357614],[136598400000,0.7019867549668874],[139276800000,0.7019867549668874],[141868800000,0.7019867549668874],[144547200000,0.6556291390728475],[147225600000,0.7086092715231787],[149817600000,0.7417218543046357],[152496000000,0.7682119205298014],[155088000000,0.7814569536423841],[157766400000,0.7284768211920529],[160444800000,0.6821192052980132],[162864000000,0.6953642384105959],[165542400000,0.7947019867549668],[168134400000,1],[170812800000,0.8013245033112583],[173404800000,0.6887417218543045],[176083200000,0.7152317880794702],[178761600000,0.7152317880794702],[181353600000,0.7417218543046357],[184032000000,0.6953642384105959],[186624000000,0.6490066225165563],[189302400000,0.6291390728476821],[191980800000,0.6688741721854305],[194486400000,0.662251655629139],[197164800000,0.6291390728476821],[199756800000,0.6688741721854305],[202435200000,0.6092715231788078],[205027200000,0.6291390728476821],[207705600000,0.6291390728476821],[210384000000,0.6092715231788078],[212976000000,0.5894039735099337],[215654400000,0.6092715231788078],[218246400000,0.5562913907284767],[220924800000,0.5562913907284767],[223603200000,0.4701986754966888],[226022400000,0.5496688741721855],[228700800000,0.5496688741721855],[231292800000,0.5364238410596027],[233971200000,0.5562913907284767],[236563200000,0.5496688741721855],[239241600000,0.5761589403973509],[241920000000,0.5894039735099337],[244512000000,0.5827814569536424],[247190400000,0.5960264900662251],[249782400000,0.6092715231788078],[252460800000,0.6423841059602647],[255139200000,0.5894039735099337],[257558400000,0.5827814569536424],[260236800000,0.5695364238410596],[262828800000,0.5364238410596027],[265507200000,0.5165562913907285],[268099200000,0.5761589403973509],[270777600000,0.5496688741721855],[273456000000,0.5562913907284767],[276048000000,0.5629139072847682],[278726400000,0.5496688741721855],[281318400000,0.5430463576158939],[283996800000,0.5894039735099337],[286675200000,0.5894039735099337],[289094400000,0.5960264900662251],[291772800000,0.5827814569536424],[294364800000,0.5364238410596027],[297043200000,0.509933774834437],[299635200000,0.5562913907284767],[302313600000,0.4966887417218542],[304992000000,0.4768211920529801],[307584000000,0.4966887417218542],[310262400000,0.4966887417218542],[312854400000,0.5231788079470198],[315532800000,0.509933774834437],[318211200000,0.5231788079470198],[320716800000,0.5298013245033112],[323395200000,0.6026490066225166],[325987200000,0.6092715231788078],[328665600000,0.5960264900662251],[331257600000,0.6026490066225166],[333936000000,0.6026490066225166],[336614400000,0.6291390728476821],[339206400000,0.6026490066225166],[341884800000,0.6225165562913906],[344476800000,0.6092715231788078],[347155200000,0.5761589403973509],[349833600000,0.5695364238410596],[352252800000,0.5695364238410596],[354931200000,0.5761589403973509],[357523200000,0.5827814569536424],[360201600000,0.5695364238410596],[362793600000,0.6688741721854305],[365472000000,0.6490066225165563],[368150400000,0.6754966887417218],[370742400000,0.7152317880794702],[373420800000,0.7284768211920529],[376012800000,0.6821192052980132],[378691200000,0.6953642384105959],[381369600000,0.6556291390728475],[383788800000,0.662251655629139],[386467200000,0.7086092715231787],[389059200000,0.6688741721854305],[391737600000,0.6688741721854305],[394329600000,0.6821192052980132],[397008000000,0.6887417218543045],[399686400000,0.6357615894039735],[402278400000,0.6026490066225166],[404956800000,0.5761589403973509],[407548800000,0.5761589403973509],[410227200000,0.5894039735099337],[412905600000,0.5894039735099337],[415324800000,0.5562913907284767],[418003200000,0.5364238410596027],[420595200000,0.509933774834437],[423273600000,0.4569536423841059],[425865600000,0.4900662251655628],[428544000000,0.4635761589403973],[431222400000,0.4900662251655628],[433814400000,0.4966887417218542],[436492800000,0.5364238410596027],[439084800000,0.5231788079470198],[441763200000,0.5165562913907285],[444441600000,0.6291390728476821],[446947200000,0.6158940397350994],[449625600000,0.6158940397350994],[452217600000,0.5894039735099337],[454896000000,0.5894039735099337],[457488000000,0.6225165562913906],[460166400000,0.6357615894039735],[462844800000,0.6357615894039735],[465436800000,0.6291390728476821],[468115200000,0.5761589403973509],[470707200000,0.5960264900662251],[473385600000,0.5364238410596027],[476064000000,0.4569536423841059],[478483200000,0.4304635761589403],[481161600000,0.509933774834437],[483753600000,0.5894039735099337],[486432000000,0.4900662251655628],[489024000000,0.4569536423841059],[491702400000,0.3973509933774834],[494380800000,0.3377483443708609],[496972800000,0.4569536423841059],[499651200000,0.4503311258278145],[502243200000,0.423841059602649],[504921600000,0.423841059602649],[507600000000,0.4701986754966888],[510019200000,0.509933774834437],[512697600000,0.4966887417218542],[515289600000,0.4701986754966888],[517968000000,0.4768211920529801],[520560000000,0.4701986754966888],[523238400000,0.4503311258278145],[525916800000,0.3311258278145695],[528508800000,0.4105960264900662],[531187200000,0.4370860927152318],[533779200000,0.3178807947019867],[536457600000,0.4966887417218542],[539136000000,0.4172185430463576],[541555200000,0.4172185430463576],[544233600000,0.152317880794702],[546825600000,0.3973509933774834],[549504000000,0.3642384105960265],[552096000000,0.3509933774834437],[554774400000,0.3311258278145695],[557452800000,0.357615894039735],[560044800000,0.4039735099337748],[562723200000,0.4172185430463576],[565315200000,0.4304635761589403],[567993600000,0.390728476821192],[570672000000,0.423841059602649],[573177600000,0.3973509933774834],[575856000000,0.4370860927152318],[578448000000,0.4105960264900662],[581126400000,0.4105960264900662],[583718400000,0.423841059602649],[586396800000,0.4105960264900662],[589075200000,0.4437086092715232],[591667200000,0.423841059602649],[594345600000,0.4105960264900662],[596937600000,0.4039735099337748],[599616000000,0.4172185430463576],[602294400000,0.4503311258278145],[604713600000,0.4834437086092714],[607392000000,0.4105960264900662],[609984000000,0.390728476821192],[612662400000,0.3973509933774834],[615254400000,0.3973509933774834],[617932800000,0.357615894039735],[620611200000,0.390728476821192],[623203200000,0.4172185430463576],[625881600000,0.423841059602649],[628473600000,0.3708609271523178],[631152000000,0.3841059602649006],[633830400000,0.423841059602649],[636249600000,0.4039735099337748],[638928000000,0.4370860927152318],[641520000000,0.4304635761589403],[644198400000,0.423841059602649],[646790400000,0.4304635761589403],[649468800000,0.390728476821192],[652147200000,0.390728476821192],[654739200000,0.3708609271523178],[657417600000,0.3774834437086093],[660009600000,0.4370860927152318],[662688000000,0.4701986754966888],[665366400000,0.4370860927152318],[667785600000,0.3841059602649006],[670464000000,0.423841059602649],[673056000000,0.4105960264900662],[675734400000,0.4437086092715232],[678326400000,0.3973509933774834],[681004800000,0.423841059602649],[683683200000,0.4370860927152318],[686275200000,0.4701986754966888],[688953600000,0.4503311258278145],[691545600000,0.4966887417218542],[694224000000,0.4768211920529801],[696902400000,0.5033112582781457],[699408000000,0.4966887417218542],[702086400000,0.509933774834437],[704678400000,0.509933774834437],[707356800000,0.5231788079470198],[709948800000,0.4900662251655628],[712627200000,0.4966887417218542],[715305600000,0.4304635761589403],[717897600000,0.3841059602649006],[720576000000,0.3841059602649006],[723168000000,0.5562913907284767],[725846400000,0.423841059602649],[728524800000,0.4437086092715232],[730944000000,0.4437086092715232],[733622400000,0.4304635761589403],[736214400000,0.4039735099337748],[738892800000,0.3708609271523178],[741484800000,0.357615894039735],[744163200000,0.3642384105960265],[746841600000,0.3112582781456953],[749433600000,0.271523178807947],[752112000000,0.271523178807947],[754704000000,0.4569536423841059],[757382400000,0.3245033112582781],[760060800000,0.2847682119205298],[762480000000,0.3046357615894039],[765158400000,0.2781456953642384],[767750400000,0.357615894039735],[770428800000,0.3112582781456953],[773020800000,0.3178807947019867],[775699200000,0.2847682119205298],[778377600000,0.3046357615894039],[780969600000,0.3245033112582781],[783648000000,0.3178807947019867],[786240000000,0.3311258278145695],[788918400000,0.3509933774834437],[791596800000,0.3708609271523178],[794016000000,0.3509933774834437],[796694400000,0.3112582781456953],[799286400000,0.3245033112582781],[801964800000,0.2980132450331126],[804556800000,0.3245033112582781],[807235200000,0.2980132450331126],[809913600000,0.3046357615894039],[812505600000,0.3245033112582781],[815184000000,0.2913907284768211],[817776000000,0.2582781456953642],[820454400000,0.2980132450331126],[823132800000,0.2980132450331126],[825638400000,0.2913907284768211],[828316800000,0.2317880794701987],[830908800000,0.2980132450331126],[833587200000,0.3245033112582781],[836179200000,0.2980132450331126],[838857600000,0.2913907284768211],[841536000000,0.2980132450331126],[844128000000,0.2781456953642384],[846806400000,0.2781456953642384],[849398400000,0.2781456953642384],[852076800000,0.2649006622516556],[854755200000,0.2649006622516556],[857174400000,0.2781456953642384],[859852800000,0.2847682119205298],[862444800000,0.3046357615894039],[865123200000,0.2913907284768211],[867715200000,0.2582781456953642],[870393600000,0.2516556291390728],[873072000000,0.2649006622516556],[875664000000,0.2649006622516556],[878342400000,0.2781456953642384],[880934400000,0.2781456953642384],[883612800000,0.3443708609271523],[886291200000,0.3443708609271523],[888710400000,0.3509933774834437],[891388800000,0.3311258278145695],[893980800000,0.3112582781456953],[896659200000,0.3046357615894039],[899251200000,0.3112582781456953],[901929600000,0.3046357615894039],[904608000000,0.2781456953642384],[907200000000,0.2649006622516556],[909878400000,0.271523178807947],[912470400000,0.23841059602649],[915148800000,0.2781456953642384],[917827200000,0.2649006622516556],[920246400000,0.2450331125827815],[922924800000,0.1986754966887417],[925516800000,0.1788079470198675],[928195200000,0.1721854304635761],[930787200000,0.1721854304635761],[933465600000,0.1655629139072848],[936144000000,0.1324503311258278],[938736000000,0.1589403973509933],[941414400000,0.1721854304635761],[944006400000,0.1456953642384106],[946684800000,0.2119205298013245],[949363200000,0.1721854304635761],[951868800000,0.152317880794702],[954547200000,0.1854304635761589],[957139200000,0.1788079470198675],[959817600000,0.1788079470198675],[962409600000,0.1986754966887417],[965088000000,0.1986754966887417],[967766400000,0.152317880794702],[970358400000,0.1589403973509933],[973036800000,0.152317880794702],[975628800000,0.1324503311258278],[978307200000,0.1721854304635761],[980985600000,0.1788079470198675],[983404800000,0.2052980132450331],[986083200000,0.1854304635761589],[988675200000,0.152317880794702],[991353600000,0.152317880794702],[993945600000,0.2251655629139072],[996624000000,0.3046357615894039],[999302400000,0.3178807947019867],[1001894400000,0.07947019867549666],[1004572800000,0.1258278145695364],[1007164800000,0.152317880794702],[1009843200000,0.2582781456953642],[1012521600000,0.23841059602649],[1014940800000,0.2450331125827815],[1017619200000,0.23841059602649],[1020211200000,0.2847682119205298],[1022889600000,0.2781456953642384],[1025481600000,0.2185430463576159],[1028160000000,0.2119205298013245],[1030838400000,0.2317880794701987],[1033430400000,0.2317880794701987],[1036108800000,0.2317880794701987],[1038700800000,0.2185430463576159],[1041379200000,0.2185430463576159],[1044057600000,0.2251655629139072],[1046476800000,0.2052980132450331],[1049155200000,0.2052980132450331],[1051747200000,0.23841059602649],[1054425600000,0.2251655629139072],[1057017600000,0.271523178807947],[1059696000000,0.2516556291390728],[1062374400000,0.1986754966887417],[1064966400000,0.2052980132450331],[1067644800000,0.2119205298013245],[1070236800000,0.2119205298013245],[1072915200000,0.1854304635761589],[1075593600000,0.1854304635761589],[1078099200000,0.1788079470198675],[1080777600000,0.2052980132450331],[1083369600000,0.2052980132450331],[1086048000000,0.23841059602649],[1088640000000,0.2052980132450331],[1091318400000,0.1986754966887417],[1093996800000,0.1589403973509933],[1096588800000,0.152317880794702],[1099267200000,0.1258278145695364],[1101859200000,0.3112582781456953],[1104537600000,0.09933774834437085],[1107216000000,0.07947019867549666],[1109635200000,0.09271523178807946],[1112313600000,0.0596026490066225],[1114905600000,0.08609271523178806],[1117584000000,0.04635761589403972],[1120176000000,0],[1122854400000,0.03311258278145695],[1125532800000,0.03311258278145695],[1128124800000,0.0596026490066225],[1130803200000,0.08609271523178806],[1133395200000,0.09933774834437085],[1136073600000,0.1324503311258278],[1138752000000,0.1324503311258278],[1141171200000,0.1324503311258278],[1143849600000,0.119205298013245],[1146441600000,0.1059602649006622],[1149120000000,0.119205298013245],[1151712000000,0.07947019867549666],[1154390400000,0.09271523178807946],[1157068800000,0.09271523178807946],[1159660800000,0.09271523178807946],[1162339200000,0.1125827814569536],[1164931200000,0.09933774834437085],[1167609600000,0.09933774834437085],[1170288000000,0.1258278145695364],[1172707200000,0.1456953642384106],[1175385600000,0.1324503311258278],[1177977600000,0.119205298013245],[1180656000000,0.1059602649006622],[1183248000000,0.09933774834437085],[1185926400000,0.07947019867549666],[1188604800000,0.08609271523178806],[1191196800000,0.07947019867549666],[1193875200000,0.0596026490066225],[1196467200000,0.09271523178807946],[1199145600000,0.09933774834437085],[1201824000000,0.1258278145695364],[1204329600000,0.119205298013245],[1207008000000,0.07947019867549666],[1209600000000,0.3708609271523178],[1212278400000,0.2185430463576159],[1214870400000,0.1456953642384106],[1217548800000,0.1059602649006622],[1220227200000,0.1655629139072848],[1222819200000,0.2185430463576159],[1225497600000,0.2781456953642384],[1228089600000,0.2781456953642384],[1230768000000,0.2649006622516556],[1233446400000,0.2185430463576159],[1235865600000,0.2450331125827815],[1238544000000,0.3046357615894039],[1241136000000,0.3973509933774834],[1243814400000,0.2980132450331126],[1246406400000,0.2516556291390728],[1249084800000,0.1788079470198675],[1251763200000,0.2450331125827815],[1254355200000,0.2119205298013245],[1257033600000,0.2450331125827815],[1259625600000,0.2450331125827815],[1262304000000,0.2582781456953642],[1264982400000,0.23841059602649],[1267401600000,0.2317880794701987],[1270080000000,0.2781456953642384],[1272672000000,0.3178807947019867],[1275350400000,0.3112582781456953],[1277942400000,0.3046357615894039],[1280620800000,0.3112582781456953],[1283299200000,0.2980132450331126],[1285891200000,0.2913907284768211],[1288569600000,0.2913907284768211],[1291161600000,0.3245033112582781],[1293840000000,0.3443708609271523],[1296518400000,0.357615894039735],[1298937600000,0.3178807947019867],[1301616000000,0.3112582781456953],[1304208000000,0.3112582781456953],[1306886400000,0.3311258278145695],[1309478400000,0.3377483443708609],[1312156800000,0.3311258278145695],[1314835200000,0.3046357615894039],[1317427200000,0.3046357615894039],[1320105600000,0.3178807947019867],[1322697600000,0.3708609271523178],[1325376000000,0.3841059602649006],[1328054400000,0.3841059602649006],[1330560000000,0.4172185430463576],[1333238400000,0.4304635761589403],[1335830400000,0.4370860927152318],[1338508800000,0.4569536423841059],[1341100800000,0.3973509933774834],[1343779200000,0.3841059602649006],[1346457600000,0.3973509933774834],[1349049600000,0.4370860927152318],[1351728000000,0.4966887417218542],[1354320000000,0.6490066225165563],[1356998400000,0.271523178807947],[1359676800000,0.23841059602649],[1362096000000,0.2450331125827815],[1364774400000,0.2781456953642384],[1367366400000,0.2980132450331126],[1370044800000,0.3046357615894039],[1372636800000,0.2913907284768211],[1375315200000,0.2980132450331126],[1377993600000,0.3046357615894039],[1380585600000,0.271523178807947],[1383264000000,0.2649006622516556],[1385856000000,0.2781456953642384],[1388534400000,0.3245033112582781],[1391212800000,0.3377483443708609],[1393632000000,0.3443708609271523],[1396310400000,0.3443708609271523],[1398902400000,0.3443708609271523],[1401580800000,0.3443708609271523],[1404172800000,0.3509933774834437],[1406851200000,0.3311258278145695],[1409529600000,0.3443708609271523],[1412121600000,0.3311258278145695],[1414800000000,0.3377483443708609],[1417392000000,0.357615894039735],[1420070400000,0.3642384105960265],[1422748800000,0.3774834437086093],[1425168000000,0.3443708609271523],[1427846400000,0.357615894039735]]},{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,0.02358490566037736],[-76377600000,0.03301886792452831],[-73699200000,0.02830188679245281],[-71107200000,0.04245283018867926],[-68428800000,0.03301886792452831],[-65836800000,0.03773584905660377],[-63158400000,0.05188679245283017],[-60480000000,0.02358490566037736],[-57974400000,0.004716981132075455],[-55296000000,0.02830188679245281],[-52704000000,0.0188679245283019],[-50025600000,0.0188679245283019],[-47433600000,0.02358490566037736],[-44755200000,0.009433962264150952],[-42076800000,0.02830188679245281],[-39484800000,0.03773584905660377],[-36806400000,0.0188679245283019],[-34214400000,0.0188679245283019],[-31536000000,0.0188679245283019],[-28857600000,0.04245283018867926],[-26438400000,0],[-23760000000,0],[-21168000000,0.009433962264150952],[-18489600000,0.0188679245283019],[-15897600000,0.0188679245283019],[-13219200000,0.0188679245283019],[-10540800000,0.03301886792452831],[-7948800000,0.02358490566037736],[-5270400000,0.03773584905660377],[-2678400000,0.02830188679245281],[0,0.02830188679245281],[2678400000,0.02358490566037736],[5097600000,0.02830188679245281],[7776000000,0.004716981132075455],[10368000000,0.03301886792452831],[13046400000,0.04245283018867926],[15638400000,0.05188679245283017],[18316800000,0.06603773584905662],[20995200000,0.05660377358490567],[23587200000,0.05660377358490567],[26265600000,0.07547169811320753],[28857600000,0.08962264150943398],[31536000000,0.1037735849056604],[34214400000,0.1084905660377358],[36633600000,0.1132075471698113],[39312000000,0.1179245283018868],[41904000000,0.1273584905660377],[44582400000,0.08018867924528303],[47174400000,0.1037735849056604],[49852800000,0.1132075471698113],[52531200000,0.08490566037735849],[55123200000,0.1179245283018868],[57801600000,0.1132075471698113],[60393600000,0.1037735849056604],[63072000000,0.1037735849056604],[65750400000,0.1226415094339623],[68256000000,0.1226415094339623],[70934400000,0.1273584905660377],[73526400000,0.1226415094339623],[76204800000,0.06603773584905662],[78796800000,0.0990566037735849],[81475200000,0.09433962264150944],[84153600000,0.07547169811320753],[86745600000,0.08018867924528303],[89424000000,0.08018867924528303],[92016000000,0.0990566037735849],[94694400000,0.08018867924528303],[97372800000,0.05660377358490567],[99792000000,0.07075471698113207],[102470400000,0.04716981132075472],[105062400000,0.04245283018867926],[107740800000,0.04716981132075472],[110332800000,0.05660377358490567],[113011200000,0.04245283018867926],[115689600000,0.06603773584905662],[118281600000,0.07075471698113207],[120960000000,0.05188679245283017],[123552000000,0.03301886792452831],[126230400000,0.04716981132075472],[128908800000,0.05188679245283017],[131328000000,0.03773584905660377],[134006400000,0.04716981132075472],[136598400000,0.02830188679245281],[139276800000,0.06132075471698113],[141868800000,0.08018867924528303],[144547200000,0.04716981132075472],[147225600000,0.06132075471698113],[149817600000,0.07075471698113207],[152496000000,0.05660377358490567],[155088000000,0.08018867924528303],[157766400000,0.1084905660377358],[160444800000,0.1462264150943396],[162864000000,0.1509433962264151],[165542400000,0.2216981132075471],[168134400000,0.2547169811320755],[170812800000,0.2264150943396227],[173404800000,0.2169811320754717],[176083200000,0.2452830188679245],[178761600000,0.2452830188679245],[181353600000,0.2169811320754717],[184032000000,0.2594339622641509],[186624000000,0.2358490566037736],[189302400000,0.2358490566037736],[191980800000,0.1981132075471698],[194486400000,0.2216981132075471],[197164800000,0.1981132075471698],[199756800000,0.2028301886792453],[202435200000,0.1792452830188679],[205027200000,0.1745283018867925],[207705600000,0.1839622641509434],[210384000000,0.1792452830188679],[212976000000,0.1745283018867925],[215654400000,0.2075471698113208],[218246400000,0.1886792452830189],[220924800000,0.1650943396226415],[223603200000,0.1509433962264151],[226022400000,0.1509433962264151],[228700800000,0.1556603773584906],[231292800000,0.1839622641509434],[233971200000,0.1037735849056604],[236563200000,0.1462264150943396],[239241600000,0.1415094339622641],[241920000000,0.1273584905660377],[244512000000,0.1367924528301887],[247190400000,0.1415094339622641],[249782400000,0.1320754716981132],[252460800000,0.1179245283018868],[255139200000,0.1273584905660377],[257558400000,0.1037735849056604],[260236800000,0.0990566037735849],[262828800000,0.08018867924528303],[265507200000,0.09433962264150944],[268099200000,0.08490566037735849],[270777600000,0.08490566037735849],[273456000000,0.07547169811320753],[276048000000,0.08962264150943398],[278726400000,0.07075471698113207],[281318400000,0.07547169811320753],[283996800000,0.08962264150943398],[286675200000,0.08962264150943398],[289094400000,0.08962264150943398],[291772800000,0.06603773584905662],[294364800000,0.07547169811320753],[297043200000,0.07547169811320753],[299635200000,0.08962264150943398],[302313600000,0.03773584905660377],[304992000000,0.07075471698113207],[307584000000,0.07075471698113207],[310262400000,0.06132075471698113],[312854400000,0.08018867924528303],[315532800000,0.06132075471698113],[318211200000,0.08490566037735849],[320716800000,0.09433962264150944],[323395200000,0.08490566037735849],[325987200000,0.08018867924528303],[328665600000,0.1132075471698113],[331257600000,0.1415094339622641],[333936000000,0.1650943396226415],[336614400000,0.1745283018867925],[339206400000,0.1650943396226415],[341884800000,0.1745283018867925],[344476800000,0.1650943396226415],[347155200000,0.1603773584905661],[349833600000,0.1462264150943396],[352252800000,0.1462264150943396],[354931200000,0.1603773584905661],[357523200000,0.1367924528301887],[360201600000,0.1226415094339623],[362793600000,0.1462264150943396],[365472000000,0.1509433962264151],[368150400000,0.1320754716981132],[370742400000,0.1320754716981132],[373420800000,0.1367924528301887],[376012800000,0.1367924528301887],[378691200000,0.1462264150943396],[381369600000,0.1650943396226415],[383788800000,0.1745283018867925],[386467200000,0.1933962264150943],[389059200000,0.2122641509433962],[391737600000,0.2594339622641509],[394329600000,0.2122641509433962],[397008000000,0.2216981132075471],[399686400000,0.2594339622641509],[402278400000,0.2688679245283019],[404956800000,0.2830188679245283],[407548800000,0.2924528301886792],[410227200000,0.3349056603773585],[412905600000,0.2735849056603774],[415324800000,0.3018867924528302],[418003200000,0.3254716981132076],[420595200000,0.3915094339622642],[423273600000,0.3443396226415095],[425865600000,0.2877358490566038],[428544000000,0.2500000000000001],[431222400000,0.2500000000000001],[433814400000,0.2547169811320755],[436492800000,0.2500000000000001],[439084800000,0.2216981132075471],[441763200000,0.2405660377358491],[444441600000,0.2028301886792453],[446947200000,0.2028301886792453],[449625600000,0.1981132075471698],[452217600000,0.2405660377358491],[454896000000,0.1650943396226415],[457488000000,0.1650943396226415],[460166400000,0.1556603773584906],[462844800000,0.169811320754717],[465436800000,0.1509433962264151],[468115200000,0.1509433962264151],[470707200000,0.1556603773584906],[473385600000,0.1320754716981132],[476064000000,0.1462264150943396],[478483200000,0.1462264150943396],[481161600000,0.1367924528301887],[483753600000,0.1367924528301887],[486432000000,0.1226415094339623],[489024000000,0.1367924528301887],[491702400000,0.1462264150943396],[494380800000,0.1367924528301887],[496972800000,0.1462264150943396],[499651200000,0.1415094339622641],[502243200000,0.1320754716981132],[504921600000,0.1273584905660377],[507600000000,0.1367924528301887],[510019200000,0.1320754716981132],[512697600000,0.1273584905660377],[515289600000,0.1320754716981132],[517968000000,0.1415094339622641],[520560000000,0.1367924528301887],[523238400000,0.1462264150943396],[525916800000,0.1603773584905661],[528508800000,0.1415094339622641],[531187200000,0.1462264150943396],[533779200000,0.1462264150943396],[536457600000,0.1367924528301887],[539136000000,0.1226415094339623],[541555200000,0.1226415094339623],[544233600000,0.1462264150943396],[546825600000,0.1226415094339623],[549504000000,0.1179245283018868],[552096000000,0.1179245283018868],[554774400000,0.1132075471698113],[557452800000,0.09433962264150944],[560044800000,0.1084905660377358],[562723200000,0.1037735849056604],[565315200000,0.09433962264150944],[567993600000,0.1037735849056604],[570672000000,0.1084905660377358],[573177600000,0.1132075471698113],[575856000000,0.08962264150943398],[578448000000,0.08962264150943398],[581126400000,0.08490566037735849],[583718400000,0.0990566037735849],[586396800000,0.08962264150943398],[589075200000,0.08018867924528303],[591667200000,0.07547169811320753],[594345600000,0.08018867924528303],[596937600000,0.08962264150943398],[599616000000,0.07547169811320753],[602294400000,0.06603773584905662],[604713600000,0.06603773584905662],[607392000000,0.06603773584905662],[609984000000,0.06132075471698113],[612662400000,0.06603773584905662],[615254400000,0.07547169811320753],[617932800000,0.04716981132075472],[620611200000,0.04245283018867926],[623203200000,0.04245283018867926],[625881600000,0.03773584905660377],[628473600000,0.04245283018867926],[631152000000,0.05188679245283017],[633830400000,0.06132075471698113],[636249600000,0.05188679245283017],[638928000000,0.03773584905660377],[641520000000,0.05660377358490567],[644198400000,0.05660377358490567],[646790400000,0.06603773584905662],[649468800000,0.06603773584905662],[652147200000,0.07547169811320753],[654739200000,0.08490566037735849],[657417600000,0.08018867924528303],[660009600000,0.08962264150943398],[662688000000,0.09433962264150944],[665366400000,0.1037735849056604],[667785600000,0.1273584905660377],[670464000000,0.1226415094339623],[673056000000,0.1132075471698113],[675734400000,0.1367924528301887],[678326400000,0.1415094339622641],[681004800000,0.1556603773584906],[683683200000,0.1320754716981132],[686275200000,0.1509433962264151],[688953600000,0.1650943396226415],[691545600000,0.1792452830188679],[694224000000,0.1933962264150943],[696902400000,0.1981132075471698],[699408000000,0.2028301886792453],[702086400000,0.2122641509433962],[704678400000,0.2264150943396227],[707356800000,0.2216981132075471],[709948800000,0.2169811320754717],[712627200000,0.2264150943396227],[715305600000,0.2169811320754717],[717897600000,0.2358490566037736],[720576000000,0.2358490566037736],[723168000000,0.2500000000000001],[725846400000,0.2169811320754717],[728524800000,0.2122641509433962],[730944000000,0.2122641509433962],[733622400000,0.2075471698113208],[736214400000,0.1933962264150943],[738892800000,0.2028301886792453],[741484800000,0.1981132075471698],[744163200000,0.1981132075471698],[746841600000,0.2028301886792453],[749433600000,0.1886792452830189],[752112000000,0.2028301886792453],[754704000000,0.2028301886792453],[757382400000,0.2169811320754717],[760060800000,0.2452830188679245],[762480000000,0.2500000000000001],[765158400000,0.2405660377358491],[767750400000,0.2452830188679245],[770428800000,0.2500000000000001],[773020800000,0.2358490566037736],[775699200000,0.2311320754716981],[778377600000,0.2452830188679245],[780969600000,0.2830188679245283],[783648000000,0.2358490566037736],[786240000000,0.2216981132075471],[788918400000,0.1886792452830189],[791596800000,0.1933962264150943],[794016000000,0.2028301886792453],[796694400000,0.2028301886792453],[799286400000,0.2405660377358491],[801964800000,0.1839622641509434],[804556800000,0.2122641509433962],[807235200000,0.2028301886792453],[809913600000,0.1839622641509434],[812505600000,0.1981132075471698],[815184000000,0.1886792452830189],[817776000000,0.2028301886792453],[820454400000,0.2028301886792453],[823132800000,0.1792452830188679],[825638400000,0.2028301886792453],[828316800000,0.2169811320754717],[830908800000,0.2169811320754717],[833587200000,0.2028301886792453],[836179200000,0.2028301886792453],[838857600000,0.2075471698113208],[841536000000,0.2122641509433962],[844128000000,0.2028301886792453],[846806400000,0.1745283018867925],[849398400000,0.1792452830188679],[852076800000,0.1792452830188679],[854755200000,0.1933962264150943],[857174400000,0.1839622641509434],[859852800000,0.2028301886792453],[862444800000,0.1886792452830189],[865123200000,0.1886792452830189],[867715200000,0.2028301886792453],[870393600000,0.1792452830188679],[873072000000,0.1981132075471698],[875664000000,0.1745283018867925],[878342400000,0.169811320754717],[880934400000,0.1650943396226415],[883612800000,0.1603773584905661],[886291200000,0.1415094339622641],[888710400000,0.1320754716981132],[891388800000,0.1273584905660377],[893980800000,0.09433962264150944],[896659200000,0.1367924528301887],[899251200000,0.1273584905660377],[901929600000,0.1320754716981132],[904608000000,0.1273584905660377],[907200000000,0.08490566037735849],[909878400000,0.1226415094339623],[912470400000,0.1320754716981132],[915148800000,0.1367924528301887],[917827200000,0.1320754716981132],[920246400000,0.1320754716981132],[922924800000,0.1037735849056604],[925516800000,0.1179245283018868],[928195200000,0.1084905660377358],[930787200000,0.08490566037735849],[933465600000,0.1179245283018868],[936144000000,0.09433962264150944],[938736000000,0.0990566037735849],[941414400000,0.1037735849056604],[944006400000,0.08490566037735849],[946684800000,0.08490566037735849],[949363200000,0.0990566037735849],[951868800000,0.09433962264150944],[954547200000,0.0990566037735849],[957139200000,0.08490566037735849],[959817600000,0.08018867924528303],[962409600000,0.09433962264150944],[965088000000,0.1084905660377358],[967766400000,0.05660377358490567],[970358400000,0.0990566037735849],[973036800000,0.0990566037735849],[975628800000,0.09433962264150944],[978307200000,0.08490566037735849],[980985600000,0.0990566037735849],[983404800000,0.1226415094339623],[986083200000,0.08962264150943398],[988675200000,0.1084905660377358],[991353600000,0.09433962264150944],[993945600000,0.1320754716981132],[996624000000,0.1367924528301887],[999302400000,0.1509433962264151],[1001894400000,0.1556603773584906],[1004572800000,0.1745283018867925],[1007164800000,0.1981132075471698],[1009843200000,0.2075471698113208],[1012521600000,0.2028301886792453],[1014940800000,0.2075471698113208],[1017619200000,0.2311320754716981],[1020211200000,0.2594339622641509],[1022889600000,0.3301886792452831],[1025481600000,0.2311320754716981],[1028160000000,0.2358490566037736],[1030838400000,0.2594339622641509],[1033430400000,0.2641509433962264],[1036108800000,0.2500000000000001],[1038700800000,0.2641509433962264],[1041379200000,0.2641509433962264],[1044057600000,0.2594339622641509],[1046476800000,0.2688679245283019],[1049155200000,0.2924528301886792],[1051747200000,0.2783018867924529],[1054425600000,0.3537735849056604],[1057017600000,0.2971698113207548],[1059696000000,0.2877358490566038],[1062374400000,0.2924528301886792],[1064966400000,0.3018867924528302],[1067644800000,0.2971698113207548],[1070236800000,0.3018867924528302],[1072915200000,0.3113207547169811],[1075593600000,0.2924528301886792],[1078099200000,0.2924528301886792],[1080777600000,0.2594339622641509],[1083369600000,0.2783018867924529],[1086048000000,0.3301886792452831],[1088640000000,0.2311320754716981],[1091318400000,0.2452830188679245],[1093996800000,0.2641509433962264],[1096588800000,0.2594339622641509],[1099267200000,0.2688679245283019],[1101859200000,0.2594339622641509],[1104537600000,0.2547169811320755],[1107216000000,0.2452830188679245],[1109635200000,0.2500000000000001],[1112313600000,0.2358490566037736],[1114905600000,0.2405660377358491],[1117584000000,0.2358490566037736],[1120176000000,0.2264150943396227],[1122854400000,0.2452830188679245],[1125532800000,0.2075471698113208],[1128124800000,0.2169811320754717],[1130803200000,0.2122641509433962],[1133395200000,0.2216981132075471],[1136073600000,0.2169811320754717],[1138752000000,0.2405660377358491],[1141171200000,0.2216981132075471],[1143849600000,0.2075471698113208],[1146441600000,0.2122641509433962],[1149120000000,0.1556603773584906],[1151712000000,0.1886792452830189],[1154390400000,0.2075471698113208],[1157068800000,0.1886792452830189],[1159660800000,0.1839622641509434],[1162339200000,0.2028301886792453],[1164931200000,0.1650943396226415],[1167609600000,0.2028301886792453],[1170288000000,0.2122641509433962],[1172707200000,0.2405660377358491],[1175385600000,0.2169811320754717],[1177977600000,0.1981132075471698],[1180656000000,0.1745283018867925],[1183248000000,0.2216981132075471],[1185926400000,0.2264150943396227],[1188604800000,0.2216981132075471],[1191196800000,0.2075471698113208],[1193875200000,0.2169811320754717],[1196467200000,0.2075471698113208],[1199145600000,0.2358490566037736],[1201824000000,0.2216981132075471],[1204329600000,0.2216981132075471],[1207008000000,0.2547169811320755],[1209600000000,0.1839622641509434],[1212278400000,0.2358490566037736],[1214870400000,0.2688679245283019],[1217548800000,0.2688679245283019],[1220227200000,0.2924528301886792],[1222819200000,0.3018867924528302],[1225497600000,0.2735849056603774],[1228089600000,0.3066037735849056],[1230768000000,0.3160377358490566],[1233446400000,0.3632075471698113],[1235865600000,0.3915094339622642],[1238544000000,0.4292452830188679],[1241136000000,0.4811320754716981],[1243814400000,0.6226415094339622],[1246406400000,0.5660377358490566],[1249084800000,0.5801886792452831],[1251763200000,0.6509433962264152],[1254355200000,0.7028301886792453],[1257033600000,0.7452830188679246],[1259625600000,0.7594339622641511],[1262304000000,0.7547169811320755],[1264982400000,0.75],[1267401600000,0.7735849056603773],[1270080000000,0.8537735849056605],[1272672000000,0.8632075471698114],[1275350400000,1],[1277942400000,0.8632075471698114],[1280620800000,0.8018867924528302],[1283299200000,0.768867924528302],[1285891200000,0.8113207547169812],[1288569600000,0.8018867924528302],[1291161600000,0.8443396226415094],[1293840000000,0.8254716981132075],[1296518400000,0.8066037735849058],[1298937600000,0.8254716981132075],[1301616000000,0.7971698113207547],[1304208000000,0.8301886792452832],[1306886400000,0.8679245283018867],[1309478400000,0.8490566037735849],[1312156800000,0.8679245283018867],[1314835200000,0.8490566037735849],[1317427200000,0.7830188679245284],[1320105600000,0.7924528301886793],[1322697600000,0.7783018867924528],[1325376000000,0.7924528301886793],[1328054400000,0.7405660377358491],[1330560000000,0.7169811320754716],[1333238400000,0.7122641509433963],[1335830400000,0.75],[1338508800000,0.7735849056603773],[1341100800000,0.6367924528301887],[1343779200000,0.6792452830188679],[1346457600000,0.6981132075471699],[1349049600000,0.75],[1351728000000,0.6886792452830189],[1354320000000,0.6462264150943396],[1356998400000,0.5566037735849058],[1359676800000,0.6226415094339622],[1362096000000,0.6415094339622642],[1364774400000,0.6179245283018869],[1367366400000,0.6179245283018869],[1370044800000,0.6132075471698113],[1372636800000,0.5754716981132075],[1375315200000,0.589622641509434],[1377993600000,0.589622641509434],[1380585600000,0.5801886792452831],[1383264000000,0.6179245283018869],[1385856000000,0.6273584905660378],[1388534400000,0.5377358490566038],[1391212800000,0.5613207547169812],[1393632000000,0.5566037735849058],[1396310400000,0.5518867924528301],[1398902400000,0.5],[1401580800000,0.4622641509433963],[1404172800000,0.4292452830188679],[1406851200000,0.419811320754717],[1409529600000,0.4433962264150944],[1412121600000,0.4528301886792453],[1414800000000,0.4245283018867925],[1417392000000,0.419811320754717],[1420070400000,0.4339622641509434],[1422748800000,0.419811320754717],[1425168000000,0.3773584905660378],[1427846400000,0.3537735849056604]]},{\"name\":\"unemploy\",\"type\":\"line\",\"data\":[[-79056000000,0.02044683034656983],[-76377600000,0.02052577563748323],[-73699200000,0.02155206441935738],[-71107200000,0.03615694323833583],[-68428800000,0.03007815583800426],[-65836800000,0.02628878187416121],[-63158400000,0.01523644114628562],[-60480000000,0.02494671192863346],[-57974400000,0.01515749585537223],[-55296000000,0.001894686981921528],[-52704000000,0.004341991000236836],[-50025600000,0.01997315860108944],[-47433600000,0.01563116760085261],[-44755200000,0.006552459145811952],[-42076800000,7.894529091339702e-05],[-39484800000,0.0003157811636535881],[-36806400000,0.002368358727401911],[-34214400000,0],[-31536000000,0.002605194600142102],[-28857600000,0.0005526170363937791],[-26438400000,0.002131522854661719],[-23760000000,0.005763006236677982],[-21168000000,0.002210468145575116],[-18489600000,0.01034183310965501],[-15897600000,0.01444698823715165],[-13219200000,0.01349964474619089],[-10540800000,0.02802557827425594],[-7948800000,0.02873608589247651],[-5270400000,0.01349964474619089],[-2678400000,0.01571011289176601],[0,0.04073577011131286],[2678400000,0.06062998342148891],[5097600000,0.07499802636772716],[7776000000,0.08778716349569748],[10368000000,0.09741848898713192],[13046400000,0.1094181732059683],[15638400000,0.1176284834609616],[18316800000,0.1240230520249467],[20995200000,0.1398121102076261],[23587200000,0.1504697244809347],[26265600000,0.1747059287913476],[28857600000,0.1887581905739323],[31536000000,0.1816531143917265],[34214400000,0.1751006552459146],[36633600000,0.1817320596826399],[39312000000,0.1795215915370648],[41904000000,0.1824425673008605],[44582400000,0.1787321386279308],[47174400000,0.185521433646483],[49852800000,0.1933370174469093],[52531200000,0.1860740506828768],[55123200000,0.1791268650824978],[57801600000,0.195468540301571],[60393600000,0.1949159232651772],[63072000000,0.1842583089918686],[65750400000,0.1770742875187495],[68256000000,0.1857582695192232],[70934400000,0.1795215915370648],[73526400000,0.1766006157732691],[76204800000,0.1766795610641825],[78796800000,0.1758901081550485],[81475200000,0.1779426857187969],[84153600000,0.1708376095365911],[86745600000,0.1728901871003395],[89424000000,0.1513381226809821],[92016000000,0.1466803505170917],[94694400000,0.1295492223888845],[97372800000,0.1394963290439725],[99792000000,0.1349175021709955],[102470400000,0.1400489460803663],[105062400000,0.1297860582616247],[107740800000,0.1324701981526802],[110332800000,0.1278913712797032],[113011200000,0.1278913712797032],[115689600000,0.131443909370806],[118281600000,0.1151811794426462],[120960000000,0.1350753927528223],[123552000000,0.1424173048077682],[126230400000,0.1546538248993448],[128908800000,0.1615220652088103],[131328000000,0.1538643719902108],[134006400000,0.1526012473355964],[136598400000,0.159469487645062],[139276800000,0.1769953422278361],[141868800000,0.1877319017920581],[144547200000,0.1844951448646088],[147225600000,0.2172574405936686],[149817600000,0.2240467356122207],[152496000000,0.2727559801057867],[155088000000,0.3119128443988316],[157766400000,0.38020052103892],[160444800000,0.3817004815662746],[162864000000,0.4178574248046104],[165542400000,0.4361727322965185],[168134400000,0.4537775321702061],[170812800000,0.4369621852056525],[173404800000,0.4296202731507066],[176083200000,0.4139101602589406],[178761600000,0.4135154338043736],[181353600000,0.4114628562406252],[184032000000,0.4033314912765453],[186624000000,0.3993842267308755],[189302400000,0.3828057156390621],[191980800000,0.3663850951290756],[194486400000,0.3588063472013894],[197164800000,0.3667008762927291],[199756800000,0.3448330307097182],[202435200000,0.366069313965422],[205027200000,0.3793321228388727],[207705600000,0.3815425909844478],[210384000000,0.370648140838399],[212976000000,0.3745954053840688],[215654400000,0.3895950106576143],[218246400000,0.3836741138391095],[220924800000,0.3627536117470593],[223603200000,0.375621694165943],[226022400000,0.364885134601721],[228700800000,0.3453067024551986],[231292800000,0.3336227994000158],[233971200000,0.3512275992737033],[236563200000,0.3271492855451172],[239241600000,0.3347280334728033],[241920000000,0.3209915528538723],[244512000000,0.321938896344833],[247190400000,0.3260440514723297],[249782400000,0.2921765216704824],[252460800000,0.3003078866345623],[255139200000,0.2868082418883713],[257558400000,0.2883082024157259],[260236800000,0.2759137917423226],[262828800000,0.2717296913239125],[265507200000,0.2639141075234862],[268099200000,0.2860977342701508],[270777600000,0.2680192626509829],[273456000000,0.2715718007420858],[276048000000,0.2575195389595011],[278726400000,0.2677824267782427],[281318400000,0.2797031657061656],[283996800000,0.2703086760874714],[286675200000,0.2753611747059288],[289094400000,0.2703086760874714],[291772800000,0.2671508644509355],[294364800000,0.2490723928317676],[297043200000,0.2584668824504618],[299635200000,0.2613878582142575],[302313600000,0.2869661324701981],[304992000000,0.2767032446514565],[307584000000,0.2850714454882766],[310262400000,0.2804926186152996],[312854400000,0.2873608589247652],[315532800000,0.3156232730717612],[318211200000,0.3171232335991158],[320716800000,0.3192547564537775],[323395200000,0.3689113444383043],[325987200000,0.4183310965500908],[328665600000,0.427330859714218],[331257600000,0.4482513618062682],[333936000000,0.4417778479513697],[336614400000,0.4212520723138864],[339206400000,0.4265414068050841],[341884800000,0.4214099628957133],[344476800000,0.3973316491671272],[347155200000,0.4251993368595564],[349833600000,0.4236204310412884],[352252800000,0.418173205968264],[354931200000,0.4092523880950502],[357523200000,0.4333307018236362],[360201600000,0.427330859714218],[362793600000,0.4087787163495697],[365472000000,0.4224362516775874],[368150400000,0.4377516381147865],[370742400000,0.4705928791347596],[373420800000,0.5008289255545907],[376012800000,0.5196179047919791],[378691200000,0.5298807926107207],[381369600000,0.554195942212047],[383788800000,0.5691955474855925],[386467200000,0.596747454014368],[389059200000,0.6039314754874872],[391737600000,0.6199573695429068],[394329600000,0.6445093550169733],[397008000000,0.647035604326202],[399686400000,0.6735612220731033],[402278400000,0.6981921528380832],[404956800000,0.7304807768216626],[407548800000,0.7394015946948764],[410227200000,0.6985868792926502],[412905600000,0.6994552774926975],[415324800000,0.6886397726375622],[418003200000,0.6775874319096866],[420595200000,0.6685876687455593],[423273600000,0.6758506355095919],[425865600000,0.6207468224520407],[428544000000,0.6266677192705455],[431222400000,0.5997473750690772],[433814400000,0.5685639851582853],[436492800000,0.5379332122838872],[439084800000,0.5246704034104366],[441763200000,0.4991710744454093],[444441600000,0.4820399463172022],[446947200000,0.4784874082260993],[449625600000,0.4797505328807137],[452217600000,0.4555932738612142],[454896000000,0.4374358569511329],[457488000000,0.4619878424251994],[460166400000,0.4605668271887582],[462844800000,0.4485671429699218],[465436800000,0.4496723770427094],[468115200000,0.4352253888055577],[470707200000,0.4478566353517013],[473385600000,0.4529880792610721],[476064000000,0.4449356595879056],[478483200000,0.4463566748243467],[481161600000,0.450777611115497],[483753600000,0.443435699060551],[486432000000,0.4559090550248678],[489024000000,0.4600931554432778],[491702400000,0.435067498223731],[494380800000,0.4391726533512276],[496972800000,0.4431199178968975],[499651200000,0.42969921844162],[502243200000,0.4304886713507539],[504921600000,0.4034104365674587],[507600000000,0.4513302281518907],[510019200000,0.4498302676245362],[512697600000,0.4483303070971816],[515289600000,0.4542512039156864],[517968000000,0.4596984289887108],[520560000000,0.4447777690060788],[523238400000,0.4302518354780137],[525916800000,0.4440672613878582],[528508800000,0.4387779268966606],[531187200000,0.4321465224599353],[533779200000,0.4103576221678377],[536457600000,0.4110681297860583],[539136000000,0.4089366069313966],[541555200000,0.4086997710586563],[544233600000,0.3834372779663693],[546825600000,0.385963527275598],[549504000000,0.3720691560748401],[552096000000,0.3618062682560985],[554774400000,0.3612536512197048],[557452800000,0.3487013499644746],[560044800000,0.3585695113286492],[562723200000,0.343412015473277],[565315200000,0.3355964316728507],[567993600000,0.3369385016183785],[570672000000,0.3350438146364569],[573177600000,0.3308597142180469],[575856000000,0.3091497592168627],[578448000000,0.3232020209994474],[581126400000,0.3048077682166259],[583718400000,0.3094655403805163],[586396800000,0.3282545196179048],[589075200000,0.3093865950896029],[591667200000,0.3065445646167206],[594345600000,0.3040972605984053],[596937600000,0.3025973000710507],[599616000000,0.3155443277808479],[602294400000,0.2900449988158206],[604713600000,0.2778874240151575],[607392000000,0.2986500355253809],[609984000000,0.291308123470435],[612662400000,0.3072550722349412],[615254400000,0.3007815583800426],[617932800000,0.302044683034657],[620611200000,0.3082813610168154],[623203200000,0.3114391726533512],[625881600000,0.3189389752901239],[628473600000,0.3143601484171469],[631152000000,0.3210704981447857],[633830400000,0.3130970237625326],[636249600000,0.3089129233441225],[638928000000,0.3246230362358885],[641520000000,0.3202810452356517],[644198400000,0.3082813610168154],[646790400000,0.3344911976000632],[649468800000,0.3554906449830267],[652147200000,0.3697007973474382],[654739200000,0.3768848188205574],[657417600000,0.4009631325491435],[660009600000,0.4117786374042788],[662688000000,0.4207784005684061],[665366400000,0.4405147232967553],[667785600000,0.4658561616799558],[670464000000,0.4542512039156864],[673056000000,0.4776979553169654],[675734400000,0.4742243625167759],[678326400000,0.4658561616799558],[681004800000,0.4721717849530275],[683683200000,0.4765927212441778],[686275200000,0.4860661561537854],[688953600000,0.4930922870450777],[691545600000,0.5141706797189548],[694224000000,0.5208810294465935],[696902400000,0.5343806741927845],[699408000000,0.5348543459382648],[702086400000,0.531301807847162],[704678400000,0.5572748085576695],[707356800000,0.580642614668035],[709948800000,0.5656430093944896],[712627200000,0.5606694560669456],[715305600000,0.5601957843214652],[717897600000,0.5299597379016342],[720576000000,0.5431436014841715],[723168000000,0.5425120391568643],[725846400000,0.5241967316649562],[728524800000,0.5129865003552538],[730944000000,0.5029604484092524],[733622400000,0.5072234941185758],[736214400000,0.5103023604641983],[738892800000,0.5080918923186232],[741484800000,0.4930133417541644],[744163200000,0.4798294781716271],[746841600000,0.4759611589168706],[749433600000,0.4788031893897529],[752112000000,0.4623825688797663],[754704000000,0.4572511249703955],[757382400000,0.4693297544801452],[760060800000,0.4656193258072156],[762480000000,0.4566985079340017],[765158400000,0.4457251124970396],[767750400000,0.4128838714770664],[770428800000,0.4138312149680272],[773020800000,0.4153311754953817],[775699200000,0.4143048867135075],[778377600000,0.3985947738217415],[780969600000,0.390542354148575],[783648000000,0.370253414383832],[786240000000,0.3588063472013894],[788918400000,0.370253414383832],[791596800000,0.3554116996921134],[794016000000,0.3527275598010579],[796694400000,0.3915686429304492],[799286400000,0.3745954053840688],[801964800000,0.3743585695113287],[804556800000,0.3822530986026684],[807235200000,0.3788584510933923],[809913600000,0.3783847793479119],[812505600000,0.3665429857109023],[815184000000,0.3742796242204153],[817776000000,0.3740427883476751],[820454400000,0.379411068129786],[823132800000,0.3653588063472014],[825638400000,0.3657535328017684],[828316800000,0.3734112260203679],[830908800000,0.3740427883476751],[833587200000,0.3481487329280809],[836179200000,0.3672534933291229],[838857600000,0.3313333859635273],[841536000000,0.3389910791821268],[844128000000,0.3430962343096234],[846806400000,0.3592800189468698],[849398400000,0.3606220888923976],[852076800000,0.3531222862556249],[854755200000,0.3487013499644746],[857174400000,0.3406489302913081],[859852800000,0.3306228783453067],[862444800000,0.3134128049261862],[865123200000,0.3247809268177153],[867715200000,0.3134128049261862],[870393600000,0.3097023762532565],[873072000000,0.3134917502170996],[875664000000,0.2975448014525934],[878342400000,0.2860187889792374],[880934400000,0.2992815978526881],[883612800000,0.2907555064340412],[886291200000,0.2858608983974106],[888710400000,0.2950185521433646],[891388800000,0.2570458672140207],[893980800000,0.2654140680508408],[896659200000,0.2784400410515513],[899251200000,0.2821504697244809],[901929600000,0.2758348464514092],[904608000000,0.2853872266519302],[907200000000,0.2838083208336623],[909878400000,0.2695981684692508],[912470400000,0.2642298886871398],[915148800000,0.2598089523959896],[917827200000,0.2704665666692982],[920246400000,0.2445725112497039],[922924800000,0.2620194205415647],[925516800000,0.2455988000315781],[928195200000,0.2578353201231546],[930787200000,0.2636772716507461],[933465600000,0.2489145022499408],[936144000000,0.2549932896502723],[938736000000,0.244177784795137],[941414400000,0.2392831767585064],[944006400000,0.2343096234309623],[946684800000,0.2386516144311992],[949363200000,0.2504934080682087],[951868800000,0.2406252467040341],[954547200000,0.2207310333938581],[957139200000,0.242598878976869],[959817600000,0.2341517328491355],[962409600000,0.2417304807768217],[965088000000,0.2500986816136417],[967766400000,0.2320991552853872],[970358400000,0.2249151338122681],[973036800000,0.2332043893581748],[975628800000,0.2328096629036078],[978307200000,0.2635193810689193],[980985600000,0.2687297702692034],[983404800000,0.2728349253967001],[986083200000,0.2830978132154417],[988675200000,0.2795452751243389],[991353600000,0.2999131601799953],[993945600000,0.3077287439804215],[996624000000,0.3439646325096708],[999302400000,0.3518591616010105],[1001894400000,0.3954369621852056],[1004572800000,0.4198310570774453],[1007164800000,0.4399621062603616],[1009843200000,0.4339622641509434],[1012521600000,0.4365674587510855],[1014940800000,0.4435935896423778],[1017619200000,0.46688245046183],[1020211200000,0.4510933922791506],[1022889600000,0.4506197205336702],[1025481600000,0.45038288466093],[1028160000000,0.4435935896423778],[1030838400000,0.4394094892239678],[1033430400000,0.443830425515118],[1036108800000,0.4606457724796716],[1038700800000,0.4701192073892792],[1041379200000,0.4606457724796716],[1044057600000,0.4683824109891845],[1046476800000,0.4660140522617826],[1049155200000,0.4860661561537854],[1051747200000,0.4951448646088261],[1054425600000,0.5195389595010658],[1057017600000,0.4994079103181495],[1059696000000,0.4903292018631089],[1062374400000,0.4923028341359438],[1064966400000,0.4773821741533117],[1067644800000,0.4650667087708218],[1070236800000,0.444619878424252],[1072915200000,0.448803978842662],[1075593600000,0.4327780847872424],[1078099200000,0.4583563590431831],[1080777600000,0.4330149206599826],[1083369600000,0.4363306228783453],[1086048000000,0.4421725744059367],[1088640000000,0.4303307807689271],[1091318400000,0.4188047682955712],[1093996800000,0.4138312149680272],[1096588800000,0.4244098839504223],[1099267200000,0.4142259414225942],[1101859200000,0.4143838320044209],[1104537600000,0.4025420383674114],[1107216000000,0.4180153153864372],[1109635200000,0.3988316096944817],[1112313600000,0.3937001657851109],[1114905600000,0.3920423146759296],[1117584000000,0.3820162627299282],[1120176000000,0.3727007184021473],[1122854400000,0.3678850556564301],[1125532800000,0.3843056761664167],[1128124800000,0.3764111470750769],[1130803200000,0.3853319649482909],[1133395200000,0.3626746664561459],[1136073600000,0.3457014289097655],[1138752000000,0.3551748638193732],[1141171200000,0.3463329912370727],[1143849600000,0.3501223652009158],[1146441600000,0.3390700244730402],[1149120000000,0.3407278755822215],[1151712000000,0.3544643562011526],[1154390400000,0.3478329517644272],[1157068800000,0.3285703007815584],[1159660800000,0.3190968658719507],[1162339200000,0.3305439330543933],[1164931200000,0.3218599510539196],[1167609600000,0.3498065840372622],[1170288000000,0.3348859240546301],[1172707200000,0.3194126470356043],[1175385600000,0.3288071366542986],[1177977600000,0.3221757322175732],[1180656000000,0.3389910791821268],[1183248000000,0.3524117786374043],[1185926400000,0.3459382647825057],[1188604800000,0.3540696297465856],[1191196800000,0.3593589642377832],[1193875200000,0.3595958001105234],[1196467200000,0.3915686429304492],[1199145600000,0.3947264545669851],[1201824000000,0.3798847398752664],[1204329600000,0.4055419594221205],[1207008000000,0.390937080603142],[1209600000000,0.450777611115497],[1212278400000,0.4649877634799084],[1214870400000,0.4935659587905581],[1217548800000,0.53311754953817],[1220227200000,0.5375384858293203],[1222819200000,0.5833267545590906],[1225497600000,0.6199573695429068],[1228089600000,0.6790084471461277],[1230768000000,0.7399542117312702],[1233446400000,0.8062682560985237],[1235865600000,0.8479513697007973],[1238544000000,0.8816610089208179],[1241136000000,0.9326596668508723],[1243814400000,0.9490802873608589],[1246406400000,0.9407120865240388],[1249084800000,0.9575274334885924],[1251763200000,0.9729217652167048],[1254355200000,1],[1257033600000,0.9895002763085182],[1259625600000,0.9799478961079972],[1262304000000,0.9758427409805005],[1264982400000,0.9811320754716981],[1267401600000,0.9881582063629905],[1270080000000,0.9978684771453383],[1272672000000,0.9602905186705613],[1275350400000,0.9306860345780374],[1277942400000,0.9336859556327465],[1280620800000,0.9444225151969685],[1283299200000,0.9389752901239441],[1285891200000,0.9340017367964001],[1288569600000,0.9786058261624694],[1291161600000,0.9207389279229494],[1293840000000,0.8942922554669614],[1296518400000,0.8790558143206758],[1298937600000,0.8725033551748638],[1301616000000,0.8898713191758112],[1304208000000,0.8818188995026447],[1306886400000,0.8902660456303781],[1309478400000,0.8745559327386121],[1312156800000,0.878897923738849],[1314835200000,0.8891608115575906],[1317427200000,0.8612141785742481],[1320105600000,0.8381621536275361],[1322697600000,0.8216625878266361],[1325376000000,0.7982947817162707],[1328054400000,0.799557906370885],[1330560000000,0.7916633772795453],[1333238400000,0.7863740427883477],[1335830400000,0.7874792768611353],[1338508800000,0.7900055261703639],[1341100800000,0.7871634956974817],[1343779200000,0.7725586168785032],[1346457600000,0.7444540933133339],[1349049600000,0.7451646009315545],[1351728000000,0.7357701113128602],[1354320000000,0.7589010815504855],[1356998400000,0.7725586168785032],[1359676800000,0.7314281203126234],[1362096000000,0.7108233993842268],[1364774400000,0.7164285150390779],[1367366400000,0.7080603142022578],[1370044800000,0.7157180074208573],[1372636800000,0.6828767664008842],[1375315200000,0.678455830109734],[1377993600000,0.6777453224915134],[1380585600000,0.6671666535091182],[1383264000000,0.6396147469803426],[1385856000000,0.6093787005605116],[1388534400000,0.5934317517960054],[1391212800000,0.6050367095602748],[1393632000000,0.6074840135785901],[1396310400000,0.5539591063393069],[1398902400000,0.5663535170127102],[1401580800000,0.5348543459382648],[1404172800000,0.5465382489934475],[1406851200000,0.5458277413752269],[1409529600000,0.5192231783374122],[1412121600000,0.4977500592089682],[1414800000000,0.5056445883003079],[1417392000000,0.4761979947896108],[1420070400000,0.4908818188995027],[1422748800000,0.4677508486618773],[1425168000000,0.4593826478250572],[1427846400000,0.4611194442251519]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":[1,2,3,4,5],\"dashArray\":[1,2,3,4,5]},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_subtitle.html","id":null,"dir":"Reference","previous_headings":"","what":"Chart's subtitle — ax_subtitle","title":"Chart's subtitle — ax_subtitle","text":"Chart's subtitle","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_subtitle.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Chart's subtitle — ax_subtitle","text":"","code":"ax_subtitle( ax, text = NULL, align = NULL, margin = NULL, offsetX = NULL, offsetY = NULL, floating = NULL, style = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_subtitle.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Chart's subtitle — ax_subtitle","text":"ax apexchart() htmlwidget object. text Text display subtitle chart. align Alignment subtitle relative chart area. Possible Options: \"left\", \"center\" \"right\". margin Numeric. Vertical spacing around subtitle text. offsetX Numeric. Sets left offset subtitle text. offsetY Numeric. Sets top offset subtitle text floating Logical. floating option take subtitle text chart area make float top chart. style List two items: fontSize (Font Size subtitle text) color (Fore color subtitle text). ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_subtitle.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Chart's subtitle — ax_subtitle","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_subtitle.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Chart's subtitle — ax_subtitle","text":"See https://apexcharts.com/docs/options/subtitle/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_subtitle.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Chart's subtitle — ax_subtitle","text":"","code":"data(\"economics\", package = \"ggplot2\") apex( data = economics, mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_title( text = \"Median duration of unemployment\" ) %>% ax_subtitle( text = \"in weeks\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,4.5],[-76377600000,4.7],[-73699200000,4.6],[-71107200000,4.9],[-68428800000,4.7],[-65836800000,4.8],[-63158400000,5.1],[-60480000000,4.5],[-57974400000,4.1],[-55296000000,4.6],[-52704000000,4.4],[-50025600000,4.4],[-47433600000,4.5],[-44755200000,4.2],[-42076800000,4.6],[-39484800000,4.8],[-36806400000,4.4],[-34214400000,4.4],[-31536000000,4.4],[-28857600000,4.9],[-26438400000,4],[-23760000000,4],[-21168000000,4.2],[-18489600000,4.4],[-15897600000,4.4],[-13219200000,4.4],[-10540800000,4.7],[-7948800000,4.5],[-5270400000,4.8],[-2678400000,4.6],[0,4.6],[2678400000,4.5],[5097600000,4.6],[7776000000,4.1],[10368000000,4.7],[13046400000,4.9],[15638400000,5.1],[18316800000,5.4],[20995200000,5.2],[23587200000,5.2],[26265600000,5.6],[28857600000,5.9],[31536000000,6.2],[34214400000,6.3],[36633600000,6.4],[39312000000,6.5],[41904000000,6.7],[44582400000,5.7],[47174400000,6.2],[49852800000,6.4],[52531200000,5.8],[55123200000,6.5],[57801600000,6.4],[60393600000,6.2],[63072000000,6.2],[65750400000,6.6],[68256000000,6.6],[70934400000,6.7],[73526400000,6.6],[76204800000,5.4],[78796800000,6.1],[81475200000,6],[84153600000,5.6],[86745600000,5.7],[89424000000,5.7],[92016000000,6.1],[94694400000,5.7],[97372800000,5.2],[99792000000,5.5],[102470400000,5],[105062400000,4.9],[107740800000,5],[110332800000,5.2],[113011200000,4.9],[115689600000,5.4],[118281600000,5.5],[120960000000,5.1],[123552000000,4.7],[126230400000,5],[128908800000,5.1],[131328000000,4.8],[134006400000,5],[136598400000,4.6],[139276800000,5.3],[141868800000,5.7],[144547200000,5],[147225600000,5.3],[149817600000,5.5],[152496000000,5.2],[155088000000,5.7],[157766400000,6.3],[160444800000,7.1],[162864000000,7.2],[165542400000,8.699999999999999],[168134400000,9.4],[170812800000,8.800000000000001],[173404800000,8.6],[176083200000,9.199999999999999],[178761600000,9.199999999999999],[181353600000,8.6],[184032000000,9.5],[186624000000,9],[189302400000,9],[191980800000,8.199999999999999],[194486400000,8.699999999999999],[197164800000,8.199999999999999],[199756800000,8.300000000000001],[202435200000,7.8],[205027200000,7.7],[207705600000,7.9],[210384000000,7.8],[212976000000,7.7],[215654400000,8.4],[218246400000,8],[220924800000,7.5],[223603200000,7.2],[226022400000,7.2],[228700800000,7.3],[231292800000,7.9],[233971200000,6.2],[236563200000,7.1],[239241600000,7],[241920000000,6.7],[244512000000,6.9],[247190400000,7],[249782400000,6.8],[252460800000,6.5],[255139200000,6.7],[257558400000,6.2],[260236800000,6.1],[262828800000,5.7],[265507200000,6],[268099200000,5.8],[270777600000,5.8],[273456000000,5.6],[276048000000,5.9],[278726400000,5.5],[281318400000,5.6],[283996800000,5.9],[286675200000,5.9],[289094400000,5.9],[291772800000,5.4],[294364800000,5.6],[297043200000,5.6],[299635200000,5.9],[302313600000,4.8],[304992000000,5.5],[307584000000,5.5],[310262400000,5.3],[312854400000,5.7],[315532800000,5.3],[318211200000,5.8],[320716800000,6],[323395200000,5.8],[325987200000,5.7],[328665600000,6.4],[331257600000,7],[333936000000,7.5],[336614400000,7.7],[339206400000,7.5],[341884800000,7.7],[344476800000,7.5],[347155200000,7.4],[349833600000,7.1],[352252800000,7.1],[354931200000,7.4],[357523200000,6.9],[360201600000,6.6],[362793600000,7.1],[365472000000,7.2],[368150400000,6.8],[370742400000,6.8],[373420800000,6.9],[376012800000,6.9],[378691200000,7.1],[381369600000,7.5],[383788800000,7.7],[386467200000,8.1],[389059200000,8.5],[391737600000,9.5],[394329600000,8.5],[397008000000,8.699999999999999],[399686400000,9.5],[402278400000,9.699999999999999],[404956800000,10],[407548800000,10.2],[410227200000,11.1],[412905600000,9.800000000000001],[415324800000,10.4],[418003200000,10.9],[420595200000,12.3],[423273600000,11.3],[425865600000,10.1],[428544000000,9.300000000000001],[431222400000,9.300000000000001],[433814400000,9.4],[436492800000,9.300000000000001],[439084800000,8.699999999999999],[441763200000,9.1],[444441600000,8.300000000000001],[446947200000,8.300000000000001],[449625600000,8.199999999999999],[452217600000,9.1],[454896000000,7.5],[457488000000,7.5],[460166400000,7.3],[462844800000,7.6],[465436800000,7.2],[468115200000,7.2],[470707200000,7.3],[473385600000,6.8],[476064000000,7.1],[478483200000,7.1],[481161600000,6.9],[483753600000,6.9],[486432000000,6.6],[489024000000,6.9],[491702400000,7.1],[494380800000,6.9],[496972800000,7.1],[499651200000,7],[502243200000,6.8],[504921600000,6.7],[507600000000,6.9],[510019200000,6.8],[512697600000,6.7],[515289600000,6.8],[517968000000,7],[520560000000,6.9],[523238400000,7.1],[525916800000,7.4],[528508800000,7],[531187200000,7.1],[533779200000,7.1],[536457600000,6.9],[539136000000,6.6],[541555200000,6.6],[544233600000,7.1],[546825600000,6.6],[549504000000,6.5],[552096000000,6.5],[554774400000,6.4],[557452800000,6],[560044800000,6.3],[562723200000,6.2],[565315200000,6],[567993600000,6.2],[570672000000,6.3],[573177600000,6.4],[575856000000,5.9],[578448000000,5.9],[581126400000,5.8],[583718400000,6.1],[586396800000,5.9],[589075200000,5.7],[591667200000,5.6],[594345600000,5.7],[596937600000,5.9],[599616000000,5.6],[602294400000,5.4],[604713600000,5.4],[607392000000,5.4],[609984000000,5.3],[612662400000,5.4],[615254400000,5.6],[617932800000,5],[620611200000,4.9],[623203200000,4.9],[625881600000,4.8],[628473600000,4.9],[631152000000,5.1],[633830400000,5.3],[636249600000,5.1],[638928000000,4.8],[641520000000,5.2],[644198400000,5.2],[646790400000,5.4],[649468800000,5.4],[652147200000,5.6],[654739200000,5.8],[657417600000,5.7],[660009600000,5.9],[662688000000,6],[665366400000,6.2],[667785600000,6.7],[670464000000,6.6],[673056000000,6.4],[675734400000,6.9],[678326400000,7],[681004800000,7.3],[683683200000,6.8],[686275200000,7.2],[688953600000,7.5],[691545600000,7.8],[694224000000,8.1],[696902400000,8.199999999999999],[699408000000,8.300000000000001],[702086400000,8.5],[704678400000,8.800000000000001],[707356800000,8.699999999999999],[709948800000,8.6],[712627200000,8.800000000000001],[715305600000,8.6],[717897600000,9],[720576000000,9],[723168000000,9.300000000000001],[725846400000,8.6],[728524800000,8.5],[730944000000,8.5],[733622400000,8.4],[736214400000,8.1],[738892800000,8.300000000000001],[741484800000,8.199999999999999],[744163200000,8.199999999999999],[746841600000,8.300000000000001],[749433600000,8],[752112000000,8.300000000000001],[754704000000,8.300000000000001],[757382400000,8.6],[760060800000,9.199999999999999],[762480000000,9.300000000000001],[765158400000,9.1],[767750400000,9.199999999999999],[770428800000,9.300000000000001],[773020800000,9],[775699200000,8.9],[778377600000,9.199999999999999],[780969600000,10],[783648000000,9],[786240000000,8.699999999999999],[788918400000,8],[791596800000,8.1],[794016000000,8.300000000000001],[796694400000,8.300000000000001],[799286400000,9.1],[801964800000,7.9],[804556800000,8.5],[807235200000,8.300000000000001],[809913600000,7.9],[812505600000,8.199999999999999],[815184000000,8],[817776000000,8.300000000000001],[820454400000,8.300000000000001],[823132800000,7.8],[825638400000,8.300000000000001],[828316800000,8.6],[830908800000,8.6],[833587200000,8.300000000000001],[836179200000,8.300000000000001],[838857600000,8.4],[841536000000,8.5],[844128000000,8.300000000000001],[846806400000,7.7],[849398400000,7.8],[852076800000,7.8],[854755200000,8.1],[857174400000,7.9],[859852800000,8.300000000000001],[862444800000,8],[865123200000,8],[867715200000,8.300000000000001],[870393600000,7.8],[873072000000,8.199999999999999],[875664000000,7.7],[878342400000,7.6],[880934400000,7.5],[883612800000,7.4],[886291200000,7],[888710400000,6.8],[891388800000,6.7],[893980800000,6],[896659200000,6.9],[899251200000,6.7],[901929600000,6.8],[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.199999999999999],[1009843200000,8.4],[1012521600000,8.300000000000001],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.300000000000001],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.699999999999999],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.199999999999999],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.699999999999999],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.199999999999999],[1109635200000,9.300000000000001],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.800000000000001],[1122854400000,9.199999999999999],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.699999999999999],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.699999999999999],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.300000000000001],[1164931200000,7.5],[1167609600000,8.300000000000001],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.199999999999999],[1180656000000,7.7],[1183248000000,8.699999999999999],[1185926400000,8.800000000000001],[1188604800000,8.699999999999999],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.699999999999999],[1204329600000,8.699999999999999],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.699999999999999],[1217548800000,9.699999999999999],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.800000000000001],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"title\":{\"text\":\"Median duration of unemployment\"},\"subtitle\":{\"text\":\"in weeks\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_theme.html","id":null,"dir":"Reference","previous_headings":"","what":"Theme for charts — ax_theme","title":"Theme for charts — ax_theme","text":"Theme charts","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_theme.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Theme for charts — ax_theme","text":"","code":"ax_theme(ax, mode = c(\"light\", \"dark\"), palette = NULL, monochrome = NULL, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_theme.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Theme for charts — ax_theme","text":"ax apexchart() htmlwidget object. mode use light dark theme. palette Character. Available palettes: \"palette1\" \"palette10\". monochrome list parameters. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_theme.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Theme for charts — ax_theme","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_theme.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Theme for charts — ax_theme","text":"See https://apexcharts.com/docs/options/theme/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_theme.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Theme for charts — ax_theme","text":"","code":"data(\"mpg\", package = \"ggplot2\") data(\"diamonds\", package = \"ggplot2\") # Dark mode apex( data = mpg, mapping = aes(x = manufacturer) ) %>% ax_theme(mode = \"dark\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"theme\":{\"mode\":\"dark\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # Use predefined palette (1 to 10) apex( data = diamonds, mapping = aes(x = color, fill = cut) ) %>% ax_theme(palette = \"palette2\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"Fair\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":163},{\"x\":\"E\",\"y\":224},{\"x\":\"F\",\"y\":312},{\"x\":\"G\",\"y\":314},{\"x\":\"H\",\"y\":303},{\"x\":\"I\",\"y\":175},{\"x\":\"J\",\"y\":119}]},{\"name\":\"Good\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":662},{\"x\":\"E\",\"y\":933},{\"x\":\"F\",\"y\":909},{\"x\":\"G\",\"y\":871},{\"x\":\"H\",\"y\":702},{\"x\":\"I\",\"y\":522},{\"x\":\"J\",\"y\":307}]},{\"name\":\"Very Good\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":1513},{\"x\":\"E\",\"y\":2400},{\"x\":\"F\",\"y\":2164},{\"x\":\"G\",\"y\":2299},{\"x\":\"H\",\"y\":1824},{\"x\":\"I\",\"y\":1204},{\"x\":\"J\",\"y\":678}]},{\"name\":\"Premium\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":1603},{\"x\":\"E\",\"y\":2337},{\"x\":\"F\",\"y\":2331},{\"x\":\"G\",\"y\":2924},{\"x\":\"H\",\"y\":2360},{\"x\":\"I\",\"y\":1428},{\"x\":\"J\",\"y\":808}]},{\"name\":\"Ideal\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":2834},{\"x\":\"E\",\"y\":3903},{\"x\":\"F\",\"y\":3826},{\"x\":\"G\",\"y\":4884},{\"x\":\"H\",\"y\":3115},{\"x\":\"I\",\"y\":2093},{\"x\":\"J\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"theme\":{\"mode\":\"light\",\"palette\":\"palette2\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"D\",\"max\":\"J\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # monochrome palette apex( data = diamonds, mapping = aes(x = color, fill = cut) ) %>% ax_theme(monochrome = list(enabled = TRUE, color = \"#0B6121\")) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"Fair\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":163},{\"x\":\"E\",\"y\":224},{\"x\":\"F\",\"y\":312},{\"x\":\"G\",\"y\":314},{\"x\":\"H\",\"y\":303},{\"x\":\"I\",\"y\":175},{\"x\":\"J\",\"y\":119}]},{\"name\":\"Good\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":662},{\"x\":\"E\",\"y\":933},{\"x\":\"F\",\"y\":909},{\"x\":\"G\",\"y\":871},{\"x\":\"H\",\"y\":702},{\"x\":\"I\",\"y\":522},{\"x\":\"J\",\"y\":307}]},{\"name\":\"Very Good\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":1513},{\"x\":\"E\",\"y\":2400},{\"x\":\"F\",\"y\":2164},{\"x\":\"G\",\"y\":2299},{\"x\":\"H\",\"y\":1824},{\"x\":\"I\",\"y\":1204},{\"x\":\"J\",\"y\":678}]},{\"name\":\"Premium\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":1603},{\"x\":\"E\",\"y\":2337},{\"x\":\"F\",\"y\":2331},{\"x\":\"G\",\"y\":2924},{\"x\":\"H\",\"y\":2360},{\"x\":\"I\",\"y\":1428},{\"x\":\"J\",\"y\":808}]},{\"name\":\"Ideal\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":2834},{\"x\":\"E\",\"y\":3903},{\"x\":\"F\",\"y\":3826},{\"x\":\"G\",\"y\":4884},{\"x\":\"H\",\"y\":3115},{\"x\":\"I\",\"y\":2093},{\"x\":\"J\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"theme\":{\"mode\":\"light\",\"monochrome\":{\"enabled\":true,\"color\":\"#0B6121\"}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"D\",\"max\":\"J\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_title.html","id":null,"dir":"Reference","previous_headings":"","what":"Chart's title — ax_title","title":"Chart's title — ax_title","text":"Chart's title","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_title.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Chart's title — ax_title","text":"","code":"ax_title( ax, text = NULL, align = NULL, margin = NULL, offsetX = NULL, offsetY = NULL, floating = NULL, style = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_title.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Chart's title — ax_title","text":"ax apexchart() htmlwidget object. text Text display title chart. align Alignment subtitle relative chart area. Possible Options: \"left\", \"center\" \"right\". margin Numeric. Vertical spacing around title text. offsetX Numeric. Sets left offset subtitle text. offsetY Numeric. Sets top offset subtitle text floating Logical. floating option take subtitle text chart area make float top chart. style List two items: fontSize (Font Size title text) color (Fore color title text). ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_title.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Chart's title — ax_title","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_title.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Chart's title — ax_title","text":"See https://apexcharts.com/docs/options/title/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_title.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Chart's title — ax_title","text":"","code":"data(\"economics\", package = \"ggplot2\") apex( data = economics, mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_title( text = \"Median duration of unemployment, in weeks\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,4.5],[-76377600000,4.7],[-73699200000,4.6],[-71107200000,4.9],[-68428800000,4.7],[-65836800000,4.8],[-63158400000,5.1],[-60480000000,4.5],[-57974400000,4.1],[-55296000000,4.6],[-52704000000,4.4],[-50025600000,4.4],[-47433600000,4.5],[-44755200000,4.2],[-42076800000,4.6],[-39484800000,4.8],[-36806400000,4.4],[-34214400000,4.4],[-31536000000,4.4],[-28857600000,4.9],[-26438400000,4],[-23760000000,4],[-21168000000,4.2],[-18489600000,4.4],[-15897600000,4.4],[-13219200000,4.4],[-10540800000,4.7],[-7948800000,4.5],[-5270400000,4.8],[-2678400000,4.6],[0,4.6],[2678400000,4.5],[5097600000,4.6],[7776000000,4.1],[10368000000,4.7],[13046400000,4.9],[15638400000,5.1],[18316800000,5.4],[20995200000,5.2],[23587200000,5.2],[26265600000,5.6],[28857600000,5.9],[31536000000,6.2],[34214400000,6.3],[36633600000,6.4],[39312000000,6.5],[41904000000,6.7],[44582400000,5.7],[47174400000,6.2],[49852800000,6.4],[52531200000,5.8],[55123200000,6.5],[57801600000,6.4],[60393600000,6.2],[63072000000,6.2],[65750400000,6.6],[68256000000,6.6],[70934400000,6.7],[73526400000,6.6],[76204800000,5.4],[78796800000,6.1],[81475200000,6],[84153600000,5.6],[86745600000,5.7],[89424000000,5.7],[92016000000,6.1],[94694400000,5.7],[97372800000,5.2],[99792000000,5.5],[102470400000,5],[105062400000,4.9],[107740800000,5],[110332800000,5.2],[113011200000,4.9],[115689600000,5.4],[118281600000,5.5],[120960000000,5.1],[123552000000,4.7],[126230400000,5],[128908800000,5.1],[131328000000,4.8],[134006400000,5],[136598400000,4.6],[139276800000,5.3],[141868800000,5.7],[144547200000,5],[147225600000,5.3],[149817600000,5.5],[152496000000,5.2],[155088000000,5.7],[157766400000,6.3],[160444800000,7.1],[162864000000,7.2],[165542400000,8.699999999999999],[168134400000,9.4],[170812800000,8.800000000000001],[173404800000,8.6],[176083200000,9.199999999999999],[178761600000,9.199999999999999],[181353600000,8.6],[184032000000,9.5],[186624000000,9],[189302400000,9],[191980800000,8.199999999999999],[194486400000,8.699999999999999],[197164800000,8.199999999999999],[199756800000,8.300000000000001],[202435200000,7.8],[205027200000,7.7],[207705600000,7.9],[210384000000,7.8],[212976000000,7.7],[215654400000,8.4],[218246400000,8],[220924800000,7.5],[223603200000,7.2],[226022400000,7.2],[228700800000,7.3],[231292800000,7.9],[233971200000,6.2],[236563200000,7.1],[239241600000,7],[241920000000,6.7],[244512000000,6.9],[247190400000,7],[249782400000,6.8],[252460800000,6.5],[255139200000,6.7],[257558400000,6.2],[260236800000,6.1],[262828800000,5.7],[265507200000,6],[268099200000,5.8],[270777600000,5.8],[273456000000,5.6],[276048000000,5.9],[278726400000,5.5],[281318400000,5.6],[283996800000,5.9],[286675200000,5.9],[289094400000,5.9],[291772800000,5.4],[294364800000,5.6],[297043200000,5.6],[299635200000,5.9],[302313600000,4.8],[304992000000,5.5],[307584000000,5.5],[310262400000,5.3],[312854400000,5.7],[315532800000,5.3],[318211200000,5.8],[320716800000,6],[323395200000,5.8],[325987200000,5.7],[328665600000,6.4],[331257600000,7],[333936000000,7.5],[336614400000,7.7],[339206400000,7.5],[341884800000,7.7],[344476800000,7.5],[347155200000,7.4],[349833600000,7.1],[352252800000,7.1],[354931200000,7.4],[357523200000,6.9],[360201600000,6.6],[362793600000,7.1],[365472000000,7.2],[368150400000,6.8],[370742400000,6.8],[373420800000,6.9],[376012800000,6.9],[378691200000,7.1],[381369600000,7.5],[383788800000,7.7],[386467200000,8.1],[389059200000,8.5],[391737600000,9.5],[394329600000,8.5],[397008000000,8.699999999999999],[399686400000,9.5],[402278400000,9.699999999999999],[404956800000,10],[407548800000,10.2],[410227200000,11.1],[412905600000,9.800000000000001],[415324800000,10.4],[418003200000,10.9],[420595200000,12.3],[423273600000,11.3],[425865600000,10.1],[428544000000,9.300000000000001],[431222400000,9.300000000000001],[433814400000,9.4],[436492800000,9.300000000000001],[439084800000,8.699999999999999],[441763200000,9.1],[444441600000,8.300000000000001],[446947200000,8.300000000000001],[449625600000,8.199999999999999],[452217600000,9.1],[454896000000,7.5],[457488000000,7.5],[460166400000,7.3],[462844800000,7.6],[465436800000,7.2],[468115200000,7.2],[470707200000,7.3],[473385600000,6.8],[476064000000,7.1],[478483200000,7.1],[481161600000,6.9],[483753600000,6.9],[486432000000,6.6],[489024000000,6.9],[491702400000,7.1],[494380800000,6.9],[496972800000,7.1],[499651200000,7],[502243200000,6.8],[504921600000,6.7],[507600000000,6.9],[510019200000,6.8],[512697600000,6.7],[515289600000,6.8],[517968000000,7],[520560000000,6.9],[523238400000,7.1],[525916800000,7.4],[528508800000,7],[531187200000,7.1],[533779200000,7.1],[536457600000,6.9],[539136000000,6.6],[541555200000,6.6],[544233600000,7.1],[546825600000,6.6],[549504000000,6.5],[552096000000,6.5],[554774400000,6.4],[557452800000,6],[560044800000,6.3],[562723200000,6.2],[565315200000,6],[567993600000,6.2],[570672000000,6.3],[573177600000,6.4],[575856000000,5.9],[578448000000,5.9],[581126400000,5.8],[583718400000,6.1],[586396800000,5.9],[589075200000,5.7],[591667200000,5.6],[594345600000,5.7],[596937600000,5.9],[599616000000,5.6],[602294400000,5.4],[604713600000,5.4],[607392000000,5.4],[609984000000,5.3],[612662400000,5.4],[615254400000,5.6],[617932800000,5],[620611200000,4.9],[623203200000,4.9],[625881600000,4.8],[628473600000,4.9],[631152000000,5.1],[633830400000,5.3],[636249600000,5.1],[638928000000,4.8],[641520000000,5.2],[644198400000,5.2],[646790400000,5.4],[649468800000,5.4],[652147200000,5.6],[654739200000,5.8],[657417600000,5.7],[660009600000,5.9],[662688000000,6],[665366400000,6.2],[667785600000,6.7],[670464000000,6.6],[673056000000,6.4],[675734400000,6.9],[678326400000,7],[681004800000,7.3],[683683200000,6.8],[686275200000,7.2],[688953600000,7.5],[691545600000,7.8],[694224000000,8.1],[696902400000,8.199999999999999],[699408000000,8.300000000000001],[702086400000,8.5],[704678400000,8.800000000000001],[707356800000,8.699999999999999],[709948800000,8.6],[712627200000,8.800000000000001],[715305600000,8.6],[717897600000,9],[720576000000,9],[723168000000,9.300000000000001],[725846400000,8.6],[728524800000,8.5],[730944000000,8.5],[733622400000,8.4],[736214400000,8.1],[738892800000,8.300000000000001],[741484800000,8.199999999999999],[744163200000,8.199999999999999],[746841600000,8.300000000000001],[749433600000,8],[752112000000,8.300000000000001],[754704000000,8.300000000000001],[757382400000,8.6],[760060800000,9.199999999999999],[762480000000,9.300000000000001],[765158400000,9.1],[767750400000,9.199999999999999],[770428800000,9.300000000000001],[773020800000,9],[775699200000,8.9],[778377600000,9.199999999999999],[780969600000,10],[783648000000,9],[786240000000,8.699999999999999],[788918400000,8],[791596800000,8.1],[794016000000,8.300000000000001],[796694400000,8.300000000000001],[799286400000,9.1],[801964800000,7.9],[804556800000,8.5],[807235200000,8.300000000000001],[809913600000,7.9],[812505600000,8.199999999999999],[815184000000,8],[817776000000,8.300000000000001],[820454400000,8.300000000000001],[823132800000,7.8],[825638400000,8.300000000000001],[828316800000,8.6],[830908800000,8.6],[833587200000,8.300000000000001],[836179200000,8.300000000000001],[838857600000,8.4],[841536000000,8.5],[844128000000,8.300000000000001],[846806400000,7.7],[849398400000,7.8],[852076800000,7.8],[854755200000,8.1],[857174400000,7.9],[859852800000,8.300000000000001],[862444800000,8],[865123200000,8],[867715200000,8.300000000000001],[870393600000,7.8],[873072000000,8.199999999999999],[875664000000,7.7],[878342400000,7.6],[880934400000,7.5],[883612800000,7.4],[886291200000,7],[888710400000,6.8],[891388800000,6.7],[893980800000,6],[896659200000,6.9],[899251200000,6.7],[901929600000,6.8],[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.199999999999999],[1009843200000,8.4],[1012521600000,8.300000000000001],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.300000000000001],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.699999999999999],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.199999999999999],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.699999999999999],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.199999999999999],[1109635200000,9.300000000000001],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.800000000000001],[1122854400000,9.199999999999999],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.699999999999999],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.699999999999999],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.300000000000001],[1164931200000,7.5],[1167609600000,8.300000000000001],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.199999999999999],[1180656000000,7.7],[1183248000000,8.699999999999999],[1185926400000,8.800000000000001],[1188604800000,8.699999999999999],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.699999999999999],[1204329600000,8.699999999999999],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.699999999999999],[1217548800000,9.699999999999999],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.800000000000001],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"title\":{\"text\":\"Median duration of unemployment, in weeks\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_tooltip.html","id":null,"dir":"Reference","previous_headings":"","what":"Tooltip options — ax_tooltip","title":"Tooltip options — ax_tooltip","text":"Tooltip options","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_tooltip.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Tooltip options — ax_tooltip","text":"","code":"ax_tooltip( ax, enabled = NULL, shared = NULL, followCursor = NULL, intersect = NULL, inverseOrder = NULL, custom = NULL, fillSeriesColor = NULL, onDatasetHover = NULL, theme = NULL, x = NULL, y = NULL, z = NULL, marker = NULL, items = NULL, fixed = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_tooltip.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Tooltip options — ax_tooltip","text":"ax apexchart() htmlwidget object. enabled Logical. Show tooltip user hovers chart area. shared Logical. multiple series, show shared tooltip. followCursor Logical. Follow user's cursor position instead putting tooltip actual data points. intersect Logical. Show tooltip user hovers exactly datapoint. inverseOrder Logical. multiple series, shared tooltip, inverse order series (better comparison stacked charts). custom JS function. Draw custom html tooltip instead default one based values provided function arguments. fillSeriesColor Logical. enabled, fill tooltip background corresponding series color. onDatasetHover list parameters. theme list parameters. x list parameters. y list parameters. z list parameters. marker list parameters. items list parameters. fixed list parameters. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_tooltip.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Tooltip options — ax_tooltip","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_tooltip.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Tooltip options — ax_tooltip","text":"See https://apexcharts.com/docs/options/tooltip/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_tooltip.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Tooltip options — ax_tooltip","text":"","code":"data(\"mpg\", package = \"ggplot2\") # Hide tooltip apex( data = mpg, mapping = aes(x = manufacturer, fill = year) ) %>% ax_tooltip(enabled = FALSE) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"1999\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":7},{\"x\":\"dodge\",\"y\":16},{\"x\":\"ford\",\"y\":15},{\"x\":\"honda\",\"y\":5},{\"x\":\"hyundai\",\"y\":6},{\"x\":\"jeep\",\"y\":2},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":2},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":6},{\"x\":\"pontiac\",\"y\":3},{\"x\":\"subaru\",\"y\":6},{\"x\":\"toyota\",\"y\":20},{\"x\":\"volkswagen\",\"y\":16}]},{\"name\":\"2008\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":12},{\"x\":\"dodge\",\"y\":21},{\"x\":\"ford\",\"y\":10},{\"x\":\"honda\",\"y\":4},{\"x\":\"hyundai\",\"y\":8},{\"x\":\"jeep\",\"y\":6},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":1},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":7},{\"x\":\"pontiac\",\"y\":2},{\"x\":\"subaru\",\"y\":8},{\"x\":\"toyota\",\"y\":14},{\"x\":\"volkswagen\",\"y\":11}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true,\"enabled\":false},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # Share between series apex( data = mpg, mapping = aes(x = manufacturer, fill = year) ) %>% ax_tooltip(shared = TRUE) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"1999\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":7},{\"x\":\"dodge\",\"y\":16},{\"x\":\"ford\",\"y\":15},{\"x\":\"honda\",\"y\":5},{\"x\":\"hyundai\",\"y\":6},{\"x\":\"jeep\",\"y\":2},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":2},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":6},{\"x\":\"pontiac\",\"y\":3},{\"x\":\"subaru\",\"y\":6},{\"x\":\"toyota\",\"y\":20},{\"x\":\"volkswagen\",\"y\":16}]},{\"name\":\"2008\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":12},{\"x\":\"dodge\",\"y\":21},{\"x\":\"ford\",\"y\":10},{\"x\":\"honda\",\"y\":4},{\"x\":\"hyundai\",\"y\":8},{\"x\":\"jeep\",\"y\":6},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":1},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":7},{\"x\":\"pontiac\",\"y\":2},{\"x\":\"subaru\",\"y\":8},{\"x\":\"toyota\",\"y\":14},{\"x\":\"volkswagen\",\"y\":11}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # Fixed tooltip data(\"economics\", package = \"ggplot2\") apex( data = economics, mapping = aes(x = date, y = psavert), type = \"line\" ) %>% ax_tooltip( fixed = list(enabled = TRUE, position = \"topLeft\") ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[-79056000000,12.6],[-76377600000,12.6],[-73699200000,11.9],[-71107200000,12.9],[-68428800000,12.8],[-65836800000,11.8],[-63158400000,11.7],[-60480000000,12.3],[-57974400000,11.7],[-55296000000,12.3],[-52704000000,12],[-50025600000,11.7],[-47433600000,10.7],[-44755200000,10.5],[-42076800000,10.6],[-39484800000,10.8],[-36806400000,10.6],[-34214400000,11.1],[-31536000000,10.3],[-28857600000,9.699999999999999],[-26438400000,10.2],[-23760000000,9.699999999999999],[-21168000000,10.1],[-18489600000,11.1],[-15897600000,11.8],[-13219200000,11.5],[-10540800000,11.6],[-7948800000,11.4],[-5270400000,11.6],[-2678400000,11.8],[0,11.8],[2678400000,11.7],[5097600000,12.4],[7776000000,13.3],[10368000000,12.4],[13046400000,12.3],[15638400000,13.5],[18316800000,13.4],[20995200000,12.9],[23587200000,13.1],[26265600000,13.6],[28857600000,13.2],[31536000000,13.3],[34214400000,13.3],[36633600000,13.5],[39312000000,13.2],[41904000000,13.6],[44582400000,14.7],[47174400000,13.8],[49852800000,13.6],[52531200000,13.3],[55123200000,13.3],[57801600000,13.1],[60393600000,13],[63072000000,12.5],[65750400000,12.8],[68256000000,11.8],[70934400000,11.5],[73526400000,11.7],[76204800000,11.7],[78796800000,11.7],[81475200000,12],[84153600000,12.2],[86745600000,13],[89424000000,13.6],[92016000000,13.7],[94694400000,12.4],[97372800000,12.5],[99792000000,12.7],[102470400000,13.2],[105062400000,13.2],[107740800000,13.6],[110332800000,13.2],[113011200000,13.9],[115689600000,13.1],[118281600000,14.4],[120960000000,14.4],[123552000000,14.8],[126230400000,14.3],[128908800000,14.2],[131328000000,13.4],[134006400000,13.1],[136598400000,12.8],[139276800000,12.8],[141868800000,12.8],[144547200000,12.1],[147225600000,12.9],[149817600000,13.4],[152496000000,13.8],[155088000000,14],[157766400000,13.2],[160444800000,12.5],[162864000000,12.7],[165542400000,14.2],[168134400000,17.3],[170812800000,14.3],[173404800000,12.6],[176083200000,13],[178761600000,13],[181353600000,13.4],[184032000000,12.7],[186624000000,12],[189302400000,11.7],[191980800000,12.3],[194486400000,12.2],[197164800000,11.7],[199756800000,12.3],[202435200000,11.4],[205027200000,11.7],[207705600000,11.7],[210384000000,11.4],[212976000000,11.1],[215654400000,11.4],[218246400000,10.6],[220924800000,10.6],[223603200000,9.300000000000001],[226022400000,10.5],[228700800000,10.5],[231292800000,10.3],[233971200000,10.6],[236563200000,10.5],[239241600000,10.9],[241920000000,11.1],[244512000000,11],[247190400000,11.2],[249782400000,11.4],[252460800000,11.9],[255139200000,11.1],[257558400000,11],[260236800000,10.8],[262828800000,10.3],[265507200000,10],[268099200000,10.9],[270777600000,10.5],[273456000000,10.6],[276048000000,10.7],[278726400000,10.5],[281318400000,10.4],[283996800000,11.1],[286675200000,11.1],[289094400000,11.2],[291772800000,11],[294364800000,10.3],[297043200000,9.9],[299635200000,10.6],[302313600000,9.699999999999999],[304992000000,9.4],[307584000000,9.699999999999999],[310262400000,9.699999999999999],[312854400000,10.1],[315532800000,9.9],[318211200000,10.1],[320716800000,10.2],[323395200000,11.3],[325987200000,11.4],[328665600000,11.2],[331257600000,11.3],[333936000000,11.3],[336614400000,11.7],[339206400000,11.3],[341884800000,11.6],[344476800000,11.4],[347155200000,10.9],[349833600000,10.8],[352252800000,10.8],[354931200000,10.9],[357523200000,11],[360201600000,10.8],[362793600000,12.3],[365472000000,12],[368150400000,12.4],[370742400000,13],[373420800000,13.2],[376012800000,12.5],[378691200000,12.7],[381369600000,12.1],[383788800000,12.2],[386467200000,12.9],[389059200000,12.3],[391737600000,12.3],[394329600000,12.5],[397008000000,12.6],[399686400000,11.8],[402278400000,11.3],[404956800000,10.9],[407548800000,10.9],[410227200000,11.1],[412905600000,11.1],[415324800000,10.6],[418003200000,10.3],[420595200000,9.9],[423273600000,9.1],[425865600000,9.6],[428544000000,9.199999999999999],[431222400000,9.6],[433814400000,9.699999999999999],[436492800000,10.3],[439084800000,10.1],[441763200000,10],[444441600000,11.7],[446947200000,11.5],[449625600000,11.5],[452217600000,11.1],[454896000000,11.1],[457488000000,11.6],[460166400000,11.8],[462844800000,11.8],[465436800000,11.7],[468115200000,10.9],[470707200000,11.2],[473385600000,10.3],[476064000000,9.1],[478483200000,8.699999999999999],[481161600000,9.9],[483753600000,11.1],[486432000000,9.6],[489024000000,9.1],[491702400000,8.199999999999999],[494380800000,7.3],[496972800000,9.1],[499651200000,9],[502243200000,8.6],[504921600000,8.6],[507600000000,9.300000000000001],[510019200000,9.9],[512697600000,9.699999999999999],[515289600000,9.300000000000001],[517968000000,9.4],[520560000000,9.300000000000001],[523238400000,9],[525916800000,7.2],[528508800000,8.4],[531187200000,8.800000000000001],[533779200000,7],[536457600000,9.699999999999999],[539136000000,8.5],[541555200000,8.5],[544233600000,4.5],[546825600000,8.199999999999999],[549504000000,7.7],[552096000000,7.5],[554774400000,7.2],[557452800000,7.6],[560044800000,8.300000000000001],[562723200000,8.5],[565315200000,8.699999999999999],[567993600000,8.1],[570672000000,8.6],[573177600000,8.199999999999999],[575856000000,8.800000000000001],[578448000000,8.4],[581126400000,8.4],[583718400000,8.6],[586396800000,8.4],[589075200000,8.9],[591667200000,8.6],[594345600000,8.4],[596937600000,8.300000000000001],[599616000000,8.5],[602294400000,9],[604713600000,9.5],[607392000000,8.4],[609984000000,8.1],[612662400000,8.199999999999999],[615254400000,8.199999999999999],[617932800000,7.6],[620611200000,8.1],[623203200000,8.5],[625881600000,8.6],[628473600000,7.8],[631152000000,8],[633830400000,8.6],[636249600000,8.300000000000001],[638928000000,8.800000000000001],[641520000000,8.699999999999999],[644198400000,8.6],[646790400000,8.699999999999999],[649468800000,8.1],[652147200000,8.1],[654739200000,7.8],[657417600000,7.9],[660009600000,8.800000000000001],[662688000000,9.300000000000001],[665366400000,8.800000000000001],[667785600000,8],[670464000000,8.6],[673056000000,8.4],[675734400000,8.9],[678326400000,8.199999999999999],[681004800000,8.6],[683683200000,8.800000000000001],[686275200000,9.300000000000001],[688953600000,9],[691545600000,9.699999999999999],[694224000000,9.4],[696902400000,9.800000000000001],[699408000000,9.699999999999999],[702086400000,9.9],[704678400000,9.9],[707356800000,10.1],[709948800000,9.6],[712627200000,9.699999999999999],[715305600000,8.699999999999999],[717897600000,8],[720576000000,8],[723168000000,10.6],[725846400000,8.6],[728524800000,8.9],[730944000000,8.9],[733622400000,8.699999999999999],[736214400000,8.300000000000001],[738892800000,7.8],[741484800000,7.6],[744163200000,7.7],[746841600000,6.9],[749433600000,6.3],[752112000000,6.3],[754704000000,9.1],[757382400000,7.1],[760060800000,6.5],[762480000000,6.8],[765158400000,6.4],[767750400000,7.6],[770428800000,6.9],[773020800000,7],[775699200000,6.5],[778377600000,6.8],[780969600000,7.1],[783648000000,7],[786240000000,7.2],[788918400000,7.5],[791596800000,7.8],[794016000000,7.5],[796694400000,6.9],[799286400000,7.1],[801964800000,6.7],[804556800000,7.1],[807235200000,6.7],[809913600000,6.8],[812505600000,7.1],[815184000000,6.6],[817776000000,6.1],[820454400000,6.7],[823132800000,6.7],[825638400000,6.6],[828316800000,5.7],[830908800000,6.7],[833587200000,7.1],[836179200000,6.7],[838857600000,6.6],[841536000000,6.7],[844128000000,6.4],[846806400000,6.4],[849398400000,6.4],[852076800000,6.2],[854755200000,6.2],[857174400000,6.4],[859852800000,6.5],[862444800000,6.8],[865123200000,6.6],[867715200000,6.1],[870393600000,6],[873072000000,6.2],[875664000000,6.2],[878342400000,6.4],[880934400000,6.4],[883612800000,7.4],[886291200000,7.4],[888710400000,7.5],[891388800000,7.2],[893980800000,6.9],[896659200000,6.8],[899251200000,6.9],[901929600000,6.8],[904608000000,6.4],[907200000000,6.2],[909878400000,6.3],[912470400000,5.8],[915148800000,6.4],[917827200000,6.2],[920246400000,5.9],[922924800000,5.2],[925516800000,4.9],[928195200000,4.8],[930787200000,4.8],[933465600000,4.7],[936144000000,4.2],[938736000000,4.6],[941414400000,4.8],[944006400000,4.4],[946684800000,5.4],[949363200000,4.8],[951868800000,4.5],[954547200000,5],[957139200000,4.9],[959817600000,4.9],[962409600000,5.2],[965088000000,5.2],[967766400000,4.5],[970358400000,4.6],[973036800000,4.5],[975628800000,4.2],[978307200000,4.8],[980985600000,4.9],[983404800000,5.3],[986083200000,5],[988675200000,4.5],[991353600000,4.5],[993945600000,5.6],[996624000000,6.8],[999302400000,7],[1001894400000,3.4],[1004572800000,4.1],[1007164800000,4.5],[1009843200000,6.1],[1012521600000,5.8],[1014940800000,5.9],[1017619200000,5.8],[1020211200000,6.5],[1022889600000,6.4],[1025481600000,5.5],[1028160000000,5.4],[1030838400000,5.7],[1033430400000,5.7],[1036108800000,5.7],[1038700800000,5.5],[1041379200000,5.5],[1044057600000,5.6],[1046476800000,5.3],[1049155200000,5.3],[1051747200000,5.8],[1054425600000,5.6],[1057017600000,6.3],[1059696000000,6],[1062374400000,5.2],[1064966400000,5.3],[1067644800000,5.4],[1070236800000,5.4],[1072915200000,5],[1075593600000,5],[1078099200000,4.9],[1080777600000,5.3],[1083369600000,5.3],[1086048000000,5.8],[1088640000000,5.3],[1091318400000,5.2],[1093996800000,4.6],[1096588800000,4.5],[1099267200000,4.1],[1101859200000,6.9],[1104537600000,3.7],[1107216000000,3.4],[1109635200000,3.6],[1112313600000,3.1],[1114905600000,3.5],[1117584000000,2.9],[1120176000000,2.2],[1122854400000,2.7],[1125532800000,2.7],[1128124800000,3.1],[1130803200000,3.5],[1133395200000,3.7],[1136073600000,4.2],[1138752000000,4.2],[1141171200000,4.2],[1143849600000,4],[1146441600000,3.8],[1149120000000,4],[1151712000000,3.4],[1154390400000,3.6],[1157068800000,3.6],[1159660800000,3.6],[1162339200000,3.9],[1164931200000,3.7],[1167609600000,3.7],[1170288000000,4.1],[1172707200000,4.4],[1175385600000,4.2],[1177977600000,4],[1180656000000,3.8],[1183248000000,3.7],[1185926400000,3.4],[1188604800000,3.5],[1191196800000,3.4],[1193875200000,3.1],[1196467200000,3.6],[1199145600000,3.7],[1201824000000,4.1],[1204329600000,4],[1207008000000,3.4],[1209600000000,7.8],[1212278400000,5.5],[1214870400000,4.4],[1217548800000,3.8],[1220227200000,4.7],[1222819200000,5.5],[1225497600000,6.4],[1228089600000,6.4],[1230768000000,6.2],[1233446400000,5.5],[1235865600000,5.9],[1238544000000,6.8],[1241136000000,8.199999999999999],[1243814400000,6.7],[1246406400000,6],[1249084800000,4.9],[1251763200000,5.9],[1254355200000,5.4],[1257033600000,5.9],[1259625600000,5.9],[1262304000000,6.1],[1264982400000,5.8],[1267401600000,5.7],[1270080000000,6.4],[1272672000000,7],[1275350400000,6.9],[1277942400000,6.8],[1280620800000,6.9],[1283299200000,6.7],[1285891200000,6.6],[1288569600000,6.6],[1291161600000,7.1],[1293840000000,7.4],[1296518400000,7.6],[1298937600000,7],[1301616000000,6.9],[1304208000000,6.9],[1306886400000,7.2],[1309478400000,7.3],[1312156800000,7.2],[1314835200000,6.8],[1317427200000,6.8],[1320105600000,7],[1322697600000,7.8],[1325376000000,8],[1328054400000,8],[1330560000000,8.5],[1333238400000,8.699999999999999],[1335830400000,8.800000000000001],[1338508800000,9.1],[1341100800000,8.199999999999999],[1343779200000,8],[1346457600000,8.199999999999999],[1349049600000,8.800000000000001],[1351728000000,9.699999999999999],[1354320000000,12],[1356998400000,6.3],[1359676800000,5.8],[1362096000000,5.9],[1364774400000,6.4],[1367366400000,6.7],[1370044800000,6.8],[1372636800000,6.6],[1375315200000,6.7],[1377993600000,6.8],[1380585600000,6.3],[1383264000000,6.2],[1385856000000,6.4],[1388534400000,7.1],[1391212800000,7.3],[1393632000000,7.4],[1396310400000,7.4],[1398902400000,7.4],[1401580800000,7.4],[1404172800000,7.5],[1406851200000,7.2],[1409529600000,7.4],[1412121600000,7.2],[1414800000000,7.3],[1417392000000,7.6],[1420070400000,7.7],[1422748800000,7.9],[1425168000000,7.4],[1427846400000,7.6]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"tooltip\":{\"fixed\":{\"enabled\":true,\"position\":\"topLeft\"}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_xaxis.html","id":null,"dir":"Reference","previous_headings":"","what":"X-axis options — ax_xaxis","title":"X-axis options — ax_xaxis","text":"X-axis options","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_xaxis.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"X-axis options — ax_xaxis","text":"","code":"ax_xaxis( ax, type = NULL, categories = NULL, labels = NULL, axisBorder = NULL, axisTicks = NULL, tickAmount = NULL, min = NULL, max = NULL, range = NULL, floating = NULL, position = NULL, title = NULL, crosshairs = NULL, tooltip = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_xaxis.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"X-axis options — ax_xaxis","text":"ax apexchart() htmlwidget object. type Character. Available Options : \"categories\" \"datetime\". categories Categories labels displayed x-axis. labels list parameters. axisBorder list parameters. axisTicks list parameters. tickAmount Number Tick Intervals show. min Lowest number set x-axis. graph drawing beyond number clipped . max Highest number set x-axis. graph drawing beyond number clipped . range Range takes max value x-axis, subtracts provided range value gets min value based . , technically helps keep range min max values gets updated dynamically. floating Logical. Floating takes x-axis taken normal flow places x-axis svg element directly, similar absolutely positioned element. Set offsetX offsetY adjust position manually position Setting option allows change x-axis position. Available options: \"top\" \"bottom\". title list parameters. crosshairs list parameters. tooltip list parameters. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_xaxis.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"X-axis options — ax_xaxis","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_xaxis.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"X-axis options — ax_xaxis","text":"See https://apexcharts.com/docs/options/xaxis/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_xaxis.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"X-axis options — ax_xaxis","text":"","code":"data(\"mpg\", package = \"ggplot2\") # X axis title apex( data = mpg, mapping = aes(x = manufacturer) ) %>% ax_xaxis(title = list(text = \"Car's manufacturer\")) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"title\":{\"text\":\"Car's manufacturer\"}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # force labels to rotate and increase height apex( data = mpg, mapping = aes(x = manufacturer) ) %>% ax_xaxis(labels = list(rotateAlways = TRUE, maxHeight = 180)) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"},\"rotateAlways\":true,\"maxHeight\":180}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # force to not rotate apex( data = mpg, mapping = aes(x = manufacturer) ) %>% ax_xaxis(labels = list(rotate = 0, trim = FALSE)) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"},\"rotate\":0,\"trim\":false}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} data(\"economics\", package = \"ggplot2\") # Custom crosshair apex( data = tail(economics, 50), mapping = aes(x = date, y = psavert), type = \"line\" ) %>% ax_xaxis( crosshairs = list( opacity = 1, width = 2, fill = list(color = \"red\"), stroke = list(width = 0) ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[1298937600000,7],[1301616000000,6.9],[1304208000000,6.9],[1306886400000,7.2],[1309478400000,7.3],[1312156800000,7.2],[1314835200000,6.8],[1317427200000,6.8],[1320105600000,7],[1322697600000,7.8],[1325376000000,8],[1328054400000,8],[1330560000000,8.5],[1333238400000,8.699999999999999],[1335830400000,8.800000000000001],[1338508800000,9.1],[1341100800000,8.199999999999999],[1343779200000,8],[1346457600000,8.199999999999999],[1349049600000,8.800000000000001],[1351728000000,9.699999999999999],[1354320000000,12],[1356998400000,6.3],[1359676800000,5.8],[1362096000000,5.9],[1364774400000,6.4],[1367366400000,6.7],[1370044800000,6.8],[1372636800000,6.6],[1375315200000,6.7],[1377993600000,6.8],[1380585600000,6.3],[1383264000000,6.2],[1385856000000,6.4],[1388534400000,7.1],[1391212800000,7.3],[1393632000000,7.4],[1396310400000,7.4],[1398902400000,7.4],[1401580800000,7.4],[1404172800000,7.5],[1406851200000,7.2],[1409529600000,7.4],[1412121600000,7.2],[1414800000000,7.3],[1417392000000,7.6],[1420070400000,7.7],[1422748800000,7.9],[1425168000000,7.4],[1427846400000,7.6]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"crosshairs\":{\"opacity\":1,\"width\":2,\"fill\":{\"color\":\"red\"},\"stroke\":{\"width\":0}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2011-03-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Date format (zoom to see changes) apex( data = tail(economics, 150), mapping = aes(x = date, y = psavert), type = \"line\" ) %>% ax_xaxis( labels = list( datetimeFormatter = list( year = \"yyyy-MM\", month = \"yyyy-MM-dd\", day = \"yyyy-MM-dd HH:mm\" ) ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[1036108800000,5.7],[1038700800000,5.5],[1041379200000,5.5],[1044057600000,5.6],[1046476800000,5.3],[1049155200000,5.3],[1051747200000,5.8],[1054425600000,5.6],[1057017600000,6.3],[1059696000000,6],[1062374400000,5.2],[1064966400000,5.3],[1067644800000,5.4],[1070236800000,5.4],[1072915200000,5],[1075593600000,5],[1078099200000,4.9],[1080777600000,5.3],[1083369600000,5.3],[1086048000000,5.8],[1088640000000,5.3],[1091318400000,5.2],[1093996800000,4.6],[1096588800000,4.5],[1099267200000,4.1],[1101859200000,6.9],[1104537600000,3.7],[1107216000000,3.4],[1109635200000,3.6],[1112313600000,3.1],[1114905600000,3.5],[1117584000000,2.9],[1120176000000,2.2],[1122854400000,2.7],[1125532800000,2.7],[1128124800000,3.1],[1130803200000,3.5],[1133395200000,3.7],[1136073600000,4.2],[1138752000000,4.2],[1141171200000,4.2],[1143849600000,4],[1146441600000,3.8],[1149120000000,4],[1151712000000,3.4],[1154390400000,3.6],[1157068800000,3.6],[1159660800000,3.6],[1162339200000,3.9],[1164931200000,3.7],[1167609600000,3.7],[1170288000000,4.1],[1172707200000,4.4],[1175385600000,4.2],[1177977600000,4],[1180656000000,3.8],[1183248000000,3.7],[1185926400000,3.4],[1188604800000,3.5],[1191196800000,3.4],[1193875200000,3.1],[1196467200000,3.6],[1199145600000,3.7],[1201824000000,4.1],[1204329600000,4],[1207008000000,3.4],[1209600000000,7.8],[1212278400000,5.5],[1214870400000,4.4],[1217548800000,3.8],[1220227200000,4.7],[1222819200000,5.5],[1225497600000,6.4],[1228089600000,6.4],[1230768000000,6.2],[1233446400000,5.5],[1235865600000,5.9],[1238544000000,6.8],[1241136000000,8.199999999999999],[1243814400000,6.7],[1246406400000,6],[1249084800000,4.9],[1251763200000,5.9],[1254355200000,5.4],[1257033600000,5.9],[1259625600000,5.9],[1262304000000,6.1],[1264982400000,5.8],[1267401600000,5.7],[1270080000000,6.4],[1272672000000,7],[1275350400000,6.9],[1277942400000,6.8],[1280620800000,6.9],[1283299200000,6.7],[1285891200000,6.6],[1288569600000,6.6],[1291161600000,7.1],[1293840000000,7.4],[1296518400000,7.6],[1298937600000,7],[1301616000000,6.9],[1304208000000,6.9],[1306886400000,7.2],[1309478400000,7.3],[1312156800000,7.2],[1314835200000,6.8],[1317427200000,6.8],[1320105600000,7],[1322697600000,7.8],[1325376000000,8],[1328054400000,8],[1330560000000,8.5],[1333238400000,8.699999999999999],[1335830400000,8.800000000000001],[1338508800000,9.1],[1341100800000,8.199999999999999],[1343779200000,8],[1346457600000,8.199999999999999],[1349049600000,8.800000000000001],[1351728000000,9.699999999999999],[1354320000000,12],[1356998400000,6.3],[1359676800000,5.8],[1362096000000,5.9],[1364774400000,6.4],[1367366400000,6.7],[1370044800000,6.8],[1372636800000,6.6],[1375315200000,6.7],[1377993600000,6.8],[1380585600000,6.3],[1383264000000,6.2],[1385856000000,6.4],[1388534400000,7.1],[1391212800000,7.3],[1393632000000,7.4],[1396310400000,7.4],[1398902400000,7.4],[1401580800000,7.4],[1404172800000,7.5],[1406851200000,7.2],[1409529600000,7.4],[1412121600000,7.2],[1414800000000,7.3],[1417392000000,7.6],[1420070400000,7.7],[1422748800000,7.9],[1425168000000,7.4],[1427846400000,7.6]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"},\"datetimeFormatter\":{\"year\":\"yyyy-MM\",\"month\":\"yyyy-MM-dd\",\"day\":\"yyyy-MM-dd HH:mm\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2002-11-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis.html","id":null,"dir":"Reference","previous_headings":"","what":"Y-axis options — ax_yaxis","title":"Y-axis options — ax_yaxis","text":"Y-axis options","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Y-axis options — ax_yaxis","text":"","code":"ax_yaxis( ax, opposite = NULL, tickAmount = NULL, max = NULL, min = NULL, floating = NULL, labels = NULL, axisBorder = NULL, axisTicks = NULL, title = NULL, tooltip = NULL, crosshairs = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Y-axis options — ax_yaxis","text":"ax apexchart() htmlwidget object. opposite Logical. enabled, draw yaxis right side chart. tickAmount Number Tick Intervals show. max Lowest number set y-axis. graph drawing beyond number clipped . min Highest number set y-axis. graph drawing beyond number clipped . floating Logical. Floating takes y-axis taken normal flow places y-axis svg element directly, similar absolutely positioned element. Set offsetX offsetY adjust position manually labels list parameters. axisBorder list parameters. axisTicks list parameters. title list parameters. tooltip list parameters. crosshairs list parameters. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Y-axis options — ax_yaxis","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Y-axis options — ax_yaxis","text":"See https://apexcharts.com/docs/options/yaxis/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Y-axis options — ax_yaxis","text":"","code":"data(\"economics_long\", package = \"ggplot2\") apex( data = economics_long, mapping = aes(x = date, y = value01, group = variable), type = \"line\" ) %>% ax_yaxis( decimalsInFloat = 2, title = list(text = \"Rescaled to [0,1]\") ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,0],[-76377600000,0.0002652497197765077],[-73699200000,0.0007615233890357775],[-71107200000,0.0004706043415389667],[-68428800000,0.0009155393553576157],[-65836800000,0.001574385433512166],[-63158400000,0.002070659102771431],[-60480000000,0.002301683052254198],[-57974400000,0.003217222407611809],[-55296000000,0.003191553079891505],[-52704000000,0.00368782674915077],[-50025600000,0.004243995516424089],[-47433600000,0.004834390053991158],[-44755200000,0.00515953487178171],[-42076800000,0.005262212182662942],[-39484800000,0.005553131230159753],[-36806400000,0.005989509801404973],[-34214400000,0.005972396916258099],[-31536000000,0.006571347896398595],[-28857600000,0.007016282910217254],[-26438400000,0.00703339579536412],[-23760000000,0.007461217924035903],[-21168000000,0.008008830248735783],[-18489600000,0.0080601689041764],[-15897600000,0.008214184870498248],[-13219200000,0.00883024873578561],[-10540800000,0.009112611340708994],[-7948800000,0.00956610279710108],[-5270400000,0.009737231648569792],[-2678400000,0.00993402982775881],[0,0.01043885993959152],[2678400000,0.01089235139598361],[5097600000,0.0107468918722352],[7776000000,0.01106348024745232],[10368000000,0.0116110925721522],[13046400000,0.01194479383251619],[15638400000,0.01213303556913178],[18316800000,0.01250951904236295],[20995200000,0.01304001848191596],[23587200000,0.01297156694132847],[26265600000,0.01282610741758007],[28857600000,0.01359618724918928],[31536000000,0.01449461371940003],[34214400000,0.0147769763243234],[36633600000,0.01499944383123273],[39312000000,0.01558128192622635],[41904000000,0.01577808010541538],[44582400000,0.01652249060930427],[47174400000,0.01644548262614336],[49852800000,0.0169588691805495],[52531200000,0.01765194102899779],[55123200000,0.01789152142105398],[57801600000,0.0183278999922992],[60393600000,0.01896963318530688],[63072000000,0.01923488290508338],[65750400000,0.01963703570603487],[68256000000,0.0207493732405815],[70934400000,0.02103173584550488],[73526400000,0.02150234018704384],[76204800000,0.02181037211968753],[78796800000,0.02252055685328268],[81475200000,0.02306816917798256],[84153600000,0.02347887842150748],[86745600000,0.0246596674966416],[89424000000,0.025138828280754],[92016000000,0.0256179890648664],[94694400000,0.0265078590925037],[97372800000,0.02730360825183322],[99792000000,0.02790255923197371],[102470400000,0.02815069606660336],[105062400000,0.02865552617843606],[107740800000,0.02888655012791882],[110332800000,0.02972508150011552],[113011200000,0.02965662995952803],[115689600000,0.03101710432870431],[118281600000,0.03093153990296995],[120960000000,0.03167595040685885],[123552000000,0.03165028107913855],[126230400000,0.03232624004243996],[128908800000,0.03277117505625862],[131328000000,0.03377227883735059],[134006400000,0.03457658443925354],[136598400000,0.03556913177777208],[139276800000,0.03604829256188448],[141868800000,0.03689538037665461],[144547200000,0.03834141917156523],[147225600000,0.03836708849928554],[149817600000,0.03871790264479641],[152496000000,0.03846120936759334],[155088000000,0.03894037015170573],[157766400000,0.04012115922683986],[160444800000,0.04130194830197398],[162864000000,0.0414046256128552],[165542400000,0.04178110908608638],[168134400000,0.0438260988611375],[170812800000,0.04450205782443891],[173404800000,0.04561439535898554],[176083200000,0.04623045922427292],[178761600000,0.04689786174500089],[181353600000,0.04741980474198049],[184032000000,0.04869471468542239],[186624000000,0.0500894148248924],[189302400000,0.05137288121090774],[191980800000,0.05142421986634838],[194486400000,0.05204028373163574],[197164800000,0.05293871020184649],[199756800000,0.05270768625236372],[202435200000,0.05423073303043527],[205027200000,0.05500936930461791],[207705600000,0.05572811048078651],[210384000000,0.05665220627871756],[212976000000,0.05733672168459241],[215654400000,0.05838060767855157],[218246400000,0.0603058072575746],[220924800000,0.06060528274764485],[223603200000,0.06199998288711486],[226022400000,0.06259893386725535],[228700800000,0.06336901369886457],[231292800000,0.06420754507106124],[233971200000,0.06476371383833457],[236563200000,0.0662097526332452],[239241600000,0.06665468764706386],[241920000000,0.0674076545935262],[244512000000,0.06885369338843683],[247190400000,0.07018849842989279],[249782400000,0.07095857826150201],[252460800000,0.07040240949422868],[255139200000,0.07259285879302821],[257558400000,0.07450950192947781],[260236800000,0.07612666957585716],[262828800000,0.07746147461731311],[265507200000,0.07864226369244723],[268099200000,0.07872782811818159],[270777600000,0.08045622951801559],[273456000000,0.08096105962984831],[276048000000,0.0821589615901293],[278726400000,0.08333119422268997],[281318400000,0.08469166859186625],[283996800000,0.08519649870369897],[286675200000,0.08651419086000804],[289094400000,0.08766075416484843],[291772800000,0.0882768180301358],[294364800000,0.09002233231511667],[297043200000,0.09146837111002731],[299635200000,0.09235824113766461],[302313600000,0.09488239169682813],[304992000000,0.09644822068776687],[307584000000,0.0971070667659214],[310262400000,0.0984504282499508],[312854400000,0.09922050808156002],[315532800000,0.1018730052793251],[318211200000,0.102223819424836],[320716800000,0.1028056575198296],[323395200000,0.1016933199852829],[325987200000,0.1021125856713813],[328665600000,0.1037126404326137],[331257600000,0.106134113680896],[333936000000,0.1075630395906598],[336614400000,0.1089919655004236],[339206400000,0.112123623482301],[341884800000,0.1129535984119243],[344476800000,0.1150841526127098],[347155200000,0.1166499816036485],[349833600000,0.1178649964490763],[352252800000,0.1194650512103088],[354931200000,0.1195933978489104],[357523200000,0.1203977034508133],[360201600000,0.1221688870635145],[362793600000,0.1228191766990956],[365472000000,0.1249155051295873],[368150400000,0.1248213842612795],[370742400000,0.1246844811801046],[373420800000,0.1252577628325248],[376012800000,0.1268150353808901],[378691200000,0.1275252201144852],[381369600000,0.1295873227746832],[383788800000,0.1298354596093128],[386467200000,0.1300237013459284],[389059200000,0.1315809738942937],[391737600000,0.1318890058269374],[394329600000,0.1339511084871354],[397008000000,0.1346270674504368],[399686400000,0.1367233958809285],[402278400000,0.1385373617064969],[404956800000,0.1405481257112543],[407548800000,0.1416005681477869],[410227200000,0.1426615670268929],[412905600000,0.142918260304096],[415324800000,0.1451258224880424],[418003200000,0.1471451429353732],[420595200000,0.1488136492371932],[423273600000,0.1513891384517973],[425865600000,0.153819168142653],[428544000000,0.1551881989544028],[431222400000,0.1564288831275509],[433814400000,0.1583711955917208],[436492800000,0.1591156060956097],[439084800000,0.1614515149181576],[441763200000,0.1636590771021041],[444441600000,0.1622986027329278],[446947200000,0.1647029630960632],[449625600000,0.166919081722583],[452217600000,0.1683736769600671],[454896000000,0.170179086343062],[457488000000,0.1700935219173277],[460166400000,0.1715994558102523],[462844800000,0.1734476474061145],[465436800000,0.1732337363417786],[468115200000,0.1766648698137263],[470707200000,0.1776231913819511],[473385600000,0.1807206235935348],[476064000000,0.1826030409596907],[478483200000,0.1832618870378452],[481161600000,0.1842030957209231],[483753600000,0.1873604230305209],[486432000000,0.1867614720503804],[489024000000,0.1890118164471939],[491702400000,0.1921263615439245],[494380800000,0.1957714060802081],[496972800000,0.1924429499191417],[499651200000,0.1937520856328773],[502243200000,0.1971917755473985],[504921600000,0.1985436934740013],[507600000000,0.1979532989364342],[510019200000,0.198244217983931],[512697600000,0.1992367653224495],[515289600000,0.2011448520163257],[517968000000,0.20150422260441],[520560000000,0.20317272890623],[523238400000,0.2046615499140078],[525916800000,0.2109248658777627],[528508800000,0.2075964097166962],[531187200000,0.2072113698008916],[533779200000,0.2130896458488419],[536457600000,0.2078188772236056],[539136000000,0.21348324220722],[541555200000,0.2144757895457385],[544233600000,0.2166576824019646],[546825600000,0.2174791008890144],[549504000000,0.2195668728769327],[552096000000,0.2214407338005151],[554774400000,0.2245296095695254],[557452800000,0.2241616825388677],[560044800000,0.2248461979447425],[562723200000,0.2256761728743658],[565315200000,0.2282345492038231],[567993600000,0.2316229004629036],[570672000000,0.2322817465410582],[573177600000,0.2356273155872715],[575856000000,0.2358412266516074],[578448000000,0.2384594980790787],[581126400000,0.2405900522798642],[583718400000,0.2426607113826356],[586396800000,0.2448254913537148],[589075200000,0.2454244423338553],[591667200000,0.2487357856097749],[594345600000,0.2501475986343918],[596937600000,0.2526717491935553],[599616000000,0.2547252954111799],[602294400000,0.2550932224418376],[604713600000,0.2560173182397687],[607392000000,0.2597992658572272],[609984000000,0.2605522328036896],[612662400000,0.2618185863045581],[615254400000,0.2634528668360843],[617932800000,0.2664390652942133],[620611200000,0.266550299047668],[623203200000,0.2675514028287599],[625881600000,0.2683813777583832],[628473600000,0.2718809627709184],[631152000000,0.275859708567566],[633830400000,0.2756457975032301],[636249600000,0.2779303676703375],[638928000000,0.2792223904989262],[641520000000,0.2797186641681855],[644198400000,0.2821743631867615],[646790400000,0.2836460713093925],[649468800000,0.2859220850339264],[652147200000,0.2877873895149353],[654739200000,0.2878301717278025],[657417600000,0.2879414054812572],[660009600000,0.287034422568473],[662688000000,0.2852974647260655],[665366400000,0.2874964704674385],[667785600000,0.2914581033789392],[670464000000,0.2909532732671065],[673056000000,0.2931865047787732],[675734400000,0.293811125086634],[678326400000,0.2959930179428601],[681004800000,0.2962582676626366],[683683200000,0.2975930727040926],[686275200000,0.2968486622002037],[688953600000,0.2992102403504719],[691545600000,0.3006562791453826],[694224000000,0.3061495152775283],[696902400000,0.3074158687783968],[699408000000,0.308913246228748],[702086400000,0.3101539304018961],[704678400000,0.3124556134541503],[707356800000,0.3140556682153828],[709948800000,0.3164258028082245],[712627200000,0.3178033900625476],[715305600000,0.3207468063078096],[717897600000,0.3232624004243996],[720576000000,0.3246143183510025],[723168000000,0.3276860812348658],[725846400000,0.3280540082655236],[728524800000,0.3293032488812452],[730944000000,0.329063668489189],[733622400000,0.3325632535017242],[736214400000,0.3350446218480205],[738892800000,0.3365505557409452],[741484800000,0.3390233676446681],[744163200000,0.3400672536386273],[746841600000,0.3426684121809517],[749433600000,0.3444909344490935],[752112000000,0.3463134567172353],[754704000000,0.3477680519547194],[757382400000,0.3489659539150004],[760060800000,0.3530302641373823],[762480000000,0.3541768274422227],[765158400000,0.3563244945281551],[767750400000,0.3561875914469801],[770428800000,0.3595588298209137],[773020800000,0.3605599336020057],[775699200000,0.3641536394828487],[778377600000,0.3652146383619547],[780969600000,0.3684575300972868],[783648000000,0.3695441983041132],[786240000000,0.3709132291158629],[788918400000,0.3717346476029126],[791596800000,0.3717004218326189],[794016000000,0.3746609509630277],[796694400000,0.3750716602065526],[799286400000,0.3787423740705565],[801964800000,0.3825414345731619],[804556800000,0.3819168142653011],[807235200000,0.3849201256085771],[809913600000,0.3862207048797393],[812505600000,0.3856559796698925],[815184000000,0.3892240162230152],[817776000000,0.3928091656612847],[820454400000,0.3917995054376193],[823132800000,0.3958295898897075],[825638400000,0.399294949131949],[828316800000,0.4022640347049312],[830908800000,0.403615952631534],[833587200000,0.4041293391859401],[836179200000,0.4060203129946694],[838857600000,0.407996851229133],[841536000000,0.4098450428249952],[844128000000,0.4125745480059211],[846806400000,0.414516860470091],[849398400000,0.4168613257352125],[852076800000,0.419642169571579],[854755200000,0.4216015949208958],[857174400000,0.4233299963207298],[859852800000,0.423766374891975],[862444800000,0.4238433828751359],[865123200000,0.426752573350104],[867715200000,0.4314243909951999],[870393600000,0.4346929520582523],[873072000000,0.4359507491165474],[875664000000,0.4390310684429842],[878342400000,0.4410332760051682],[880934400000,0.4436857732029332],[883612800000,0.4434975314663176],[886291200000,0.4463981654987124],[888710400000,0.4486656227806728],[891388800000,0.4518999580734315],[893980800000,0.4561610664750024],[896659200000,0.4590531440648237],[899251200000,0.4606189730557624],[901929600000,0.4636137279564649],[904608000000,0.4670876436412798],[907200000000,0.4699283825756604],[909878400000,0.4713487520428507],[912470400000,0.4760633519008138],[915148800000,0.4762687065225762],[917827200000,0.4787415184262992],[920246400000,0.4814025720666376],[922924800000,0.4868188002156224],[925516800000,0.489342950774786],[928195200000,0.4917644240230682],[930787200000,0.494117445730763],[933465600000,0.4979678448888091],[936144000000,0.502442864354716],[938736000000,0.5044365154743266],[941414400000,0.5074997219156164],[944006400000,0.5161246160296395],[946684800000,0.5158336969821428],[949363200000,0.5230553345141224],[951868800000,0.5287111430551635],[954547200000,0.5274533459968684],[957139200000,0.5305764475361725],[959817600000,0.5336824361903295],[962409600000,0.5354108375901636],[965088000000,0.5384055924908661],[967766400000,0.5455758913674051],[970358400000,0.5460293828237972],[973036800000,0.5472443976692251],[975628800000,0.5509493373035228],[978307200000,0.5536275038290082],[980985600000,0.555236115032814],[983404800000,0.5545601560695126],[986083200000,0.5556981629317795],[988675200000,0.5596255700729865],[991353600000,0.5607892462629738],[993945600000,0.5617732371589189],[996624000000,0.5649134515833698],[999302400000,0.5566907102702982],[1001894400000,0.5734271119439383],[1004572800000,0.5699617527016968],[1007164800000,0.5682333513018628],[1009843200000,0.5705093650263967],[1012521600000,0.5742741997587084],[1014940800000,0.5758913674050877],[1017619200000,0.5817268612401708],[1020211200000,0.5797845487760009],[1022889600000,0.5828220858895706],[1025481600000,0.5881441931702476],[1028160000000,0.5899496025532426],[1030838400000,0.5890511760830318],[1033430400000,0.5924480837846857],[1036108800000,0.5949294521309821],[1038700800000,0.5994729231374765],[1041379200000,0.6012098809798839],[1044057600000,0.6014494613719401],[1046476800000,0.6067972379803374],[1049155200000,0.6087309940019339],[1051747200000,0.6093385014246478],[1054425600000,0.6136595049242328],[1057017600000,0.6187591446980004],[1059696000000,0.626998998896219],[1062374400000,0.6270417811090861],[1064966400000,0.6279573204644437],[1067644800000,0.6325692430115256],[1070236800000,0.6351019500132625],[1072915200000,0.6400817995910021],[1075593600000,0.6428540869847953],[1078099200000,0.6476628077110661],[1080777600000,0.6487409194753191],[1083369600000,0.6551240256351021],[1086048000000,0.6537549948233523],[1088640000000,0.6598899641485056],[1091318400000,0.6628162675086208],[1093996800000,0.668634648458557],[1096588800000,0.6732123452353451],[1099267200000,0.6771483088191255],[1101859200000,0.6823591823463477],[1104537600000,0.6813923043355496],[1107216000000,0.6864406054538766],[1109635200000,0.6898888518109711],[1112313600000,0.6964003046093558],[1114905600000,0.6962548450856073],[1117584000000,0.7031770071275166],[1120176000000,0.7121356025019039],[1122854400000,0.7123837393365334],[1125532800000,0.7169528796707481],[1128124800000,0.7204439082407099],[1130803200000,0.7214621249069487],[1133395200000,0.7241231785472872],[1136073600000,0.7318410897485261],[1138752000000,0.7344336918482772],[1141171200000,0.7371717534717767],[1143849600000,0.7416809987079771],[1146441600000,0.7451292450650718],[1149120000000,0.7473282508064447],[1151712000000,0.7543274208315152],[1154390400000,0.7542589692909276],[1157068800000,0.7570740388975881],[1159660800000,0.7586569807736736],[1162339200000,0.7592559317538141],[1164931200000,0.766854052759025],[1167609600000,0.77090125009626],[1170288000000,0.7735109650811578],[1172707200000,0.7767880825867838],[1175385600000,0.7794063540142552],[1177977600000,0.7824524475703981],[1180656000000,0.7838214783821478],[1183248000000,0.7874408535907111],[1185926400000,0.7912313576507432],[1188604800000,0.7949961923830549],[1191196800000,0.7974861171719246],[1193875200000,0.8035440785139171],[1196467200000,0.8044510614267012],[1199145600000,0.8062992530225633],[1201824000000,0.8048788835553731],[1204329600000,0.8088148471391534],[1207008000000,0.8120149566616184],[1209600000000,0.8168921289284766],[1212278400000,0.8215211643607054],[1214870400000,0.8212473581983556],[1217548800000,0.820391713941012],[1220227200000,0.8160108153434129],[1222819200000,0.8088918551223143],[1225497600000,0.7969556177323716],[1228089600000,0.7892462629737061],[1230768000000,0.7937897339802004],[1233446400000,0.7922666872021289],[1235865600000,0.7882023769797469],[1238544000000,0.7887414328618734],[1241136000000,0.7908035355220714],[1243814400000,0.795766272214664],[1246406400000,0.7987439142302197],[1249084800000,0.8089517502203284],[1251763200000,0.8023119507833423],[1254355200000,0.8064618254314586],[1257033600000,0.8071976794927741],[1259625600000,0.8121946419556605],[1262304000000,0.8124427787902901],[1264982400000,0.8149070342514397],[1267401600000,0.8199125531568996],[1270080000000,0.8219489864893772],[1272672000000,0.8234977025951691],[1275350400000,0.8252432168801499],[1277942400000,0.8280925122571041],[1280620800000,0.8318145647765486],[1283299200000,0.8335943048318232],[1285891200000,0.8383602433452269],[1288569600000,0.8426384646319447],[1291161600000,0.8458385741544097],[1293840000000,0.8495520702312807],[1296518400000,0.8525125993616894],[1298937600000,0.8593919791907317],[1301616000000,0.8625664193854764],[1304208000000,0.8646541913733946],[1306886400000,0.8667761891316066],[1309478400000,0.870258661258995],[1312156800000,0.8722351994934586],[1314835200000,0.8754438654584971],[1317427200000,0.8767273318445125],[1320105600000,0.8772749441692123],[1322697600000,0.8783616123760386],[1325376000000,0.8860538542495573],[1328054400000,0.8938744427616775],[1330560000000,0.8937289832379289],[1333238400000,0.8961162307159176],[1335830400000,0.8951664655902662],[1338508800000,0.89325837889639],[1341100800000,0.8959023196515817],[1343779200000,0.8982040027038359],[1346457600000,0.903115400740988],[1349049600000,0.9063925182466138],[1351728000000,0.909558401998785],[1354320000000,0.9098749903740021],[1356998400000,0.9152056540972525],[1359676800000,0.9183544249642769],[1362096000000,0.9172848696425975],[1364774400000,0.9154281216041619],[1367366400000,0.9187822470929488],[1370044800000,0.92085290619572],[1372636800000,0.9232401536737087],[1375315200000,0.9260209975100753],[1377993600000,0.9292467763602604],[1380585600000,0.9337731344816079],[1383264000000,0.9395744025463973],[1385856000000,0.9421670046461483],[1388534400000,0.9417049567471828],[1391212800000,0.9462997664091178],[1393632000000,0.9528711143055164],[1396310400000,0.9579707540792841],[1398902400000,0.9618896047779175],[1401580800000,0.9677593243832945],[1404172800000,0.9714813769027389],[1406851200000,0.978651675779278],[1409529600000,0.9797725697563981],[1412121600000,0.985385596084572],[1414800000000,0.9878156257754276],[1417392000000,0.9887226086882118],[1420070400000,0.9873535778764622],[1422748800000,0.9904681229731926],[1425168000000,0.9969624628864303],[1427846400000,1]]},{\"name\":\"pop\",\"type\":\"line\",\"data\":[[-79056000000,0],[-76377600000,0.001635298854358106],[-73699200000,0.003295250455264325],[-71107200000,0.004922331727439728],[-68428800000,0.006459019595605386],[-65836800000,0.00776561516265533],[-63158400000,0.009006470072243642],[-60480000000,0.009926839276706496],[-57974400000,0.01104443045355425],[-55296000000,0.01229350294532526],[-52704000000,0.01355079301927898],[-50025600000,0.01498886990125219],[-47433600000,0.01638585887231188],[-44755200000,0.01796363465139106],[-42076800000,0.01958249834138376],[-39484800000,0.02118492686701105],[-36806400000,0.02263122133116696],[-34214400000,0.02390494656948609],[-31536000000,0.02504719049288195],[-28857600000,0.02604151793698915],[-26438400000,0.02720841460693312],[-23760000000,0.02834244094814628],[-21168000000,0.02973942991920597],[-18489600000,0.03118572438336188],[-15897600000,0.03258271335442157],[-13219200000,0.03422622979096238],[-10540800000,0.03597657479587835],[-7948800000,0.0377187022186116],[-5270400000,0.039345783490787],[-2678400000,0.04078386037276022],[0,0.04221371967255072],[2678400000,0.04352031523960066],[5097600000,0.04473651740264087],[7776000000,0.04674982503740336],[10368000000,0.04844264696704039],[13046400000,0.0502751677937834],[15638400000,0.0520994710383437],[18316800000,0.05409634350874078],[20995200000,0.05610965114350328],[23587200000,0.05814761152481388],[26265600000,0.06008696091993204],[28857600000,0.0618455235070307],[31536000000,0.06371913224468723],[34214400000,0.06537908384559345],[36633600000,0.06691577171375911],[39312000000,0.06864146397212696],[41904000000,0.07024389249775424],[44582400000,0.07190384409866046],[47174400000,0.07353914295301857],[49852800000,0.07534701103321347],[52531200000,0.0772617076817835],[55123200000,0.07915996916598815],[57801600000,0.08088566142435599],[60393600000,0.08240591412815625],[63072000000,0.08386042617449486],[65750400000,0.08504375800880425],[68256000000,0.08628461291839255],[70934400000,0.08771447221818307],[73526400000,0.08902106778523301],[76204800000,0.09050023257811973],[78796800000,0.09190543913136213],[81475200000,0.09337638634206616],[84153600000,0.09504455552515507],[86745600000,0.0966962895438786],[89424000000,0.09815080159021722],[92016000000,0.09950670265036338],[94694400000,0.1008543861283268],[97372800000,0.1019637597229919],[99792000000,0.1030649157354742],[102470400000,0.1044290343778031],[105062400000,0.1057191947804876],[107740800000,0.1071079661693646],[110332800000,0.1084474320651454],[113011200000,0.1099512496045802],[115689600000,0.1115701132945729],[118281600000,0.1130985835805559],[120960000000,0.1144051791476058],[123552000000,0.1156460340571941],[126230400000,0.1168540186380516],[128908800000,0.1180209153079956],[131328000000,0.1191467240670261],[134006400000,0.1203793613944317],[136598400000,0.1216284338862027],[139276800000,0.1230500756038105],[141868800000,0.1244306294105048],[144547200000,0.1259755348608531],[147225600000,0.1276519216261248],[149817600000,0.1293365259735791],[152496000000,0.1307663852733696],[155088000000,0.1320565456760541],[157766400000,0.133280965421277],[160444800000,0.1343821214337594],[162864000000,0.135475059864059],[165542400000,0.1367487851023781],[168134400000,0.1381457740734378],[170812800000,0.1401590817082003],[173404800000,0.1418436860556547],[176083200000,0.143667989300215],[178761600000,0.1452950705723904],[181353600000,0.1468892815158349],[184032000000,0.1484013166374525],[186624000000,0.1497161297866851],[189302400000,0.1510638132646486],[191980800000,0.152329320920785],[194486400000,0.153414041768902],[197164800000,0.1546220263497595],[199756800000,0.155912186752444],[202435200000,0.1573584812165999],[205027200000,0.1587883405163904],[207705600000,0.1604154217885658],[210384000000,0.1621164613003856],[212976000000,0.1637928480656572],[215654400000,0.165354188680371],[218246400000,0.1667676128157961],[220924800000,0.1681892545334039],[223603200000,0.16954515559355],[226022400000,0.1708599687427827],[228700800000,0.1723391335356694],[231292800000,0.1737772104176426],[233971200000,0.1753138982858083],[236563200000,0.1768998916470702],[239241600000,0.1786995421450824],[241920000000,0.1805895860471043],[244512000000,0.1823645837985683],[247190400000,0.1840491881460227],[249782400000,0.1856433990894673],[252460800000,0.1870732583892578],[255139200000,0.1883223308810288],[257558400000,0.1896617967768096],[260236800000,0.1912970956311676],[262828800000,0.1928173483349679],[265507200000,0.1944855175180568],[268099200000,0.1961783394476939],[270777600000,0.1979862075278888],[273456000000,0.2000241679091994],[276048000000,0.2018156008250288],[278726400000,0.2035084227546659],[281318400000,0.2050944161159278],[283996800000,0.206696844641555],[286675200000,0.2082417500919034],[289094400000,0.2097373500491556],[291772800000,0.2114055192322445],[294364800000,0.2129997301756891],[297043200000,0.2147336400162396],[299635200000,0.2164757674389729],[302313600000,0.2184479871628218],[304992000000,0.2205188178728633],[307584000000,0.2226060837472701],[310262400000,0.2244632573205612],[312854400000,0.2262382550720253],[315532800000,0.2279475121660277],[318211200000,0.2296321165134821],[320716800000,0.2312181098747439],[323395200000,0.2329602372974772],[325987200000,0.234521577912191],[328665600000,0.2367485426837038],[331257600000,0.2384249294489754],[333936000000,0.2402903206044492],[336614400000,0.2422050172530193],[339206400000,0.2441032787372239],[341884800000,0.2457057072628512],[344476800000,0.2470780434873628],[347155200000,0.24837642147223],[349833600000,0.2494775774847124],[352252800000,0.2507348675586661],[354931200000,0.2522058147693701],[357523200000,0.2536192389047952],[360201600000,0.2551477091907782],[362793600000,0.2568323135382325],[365472000000,0.2586483992006101],[368150400000,0.2604973551917185],[370742400000,0.2623791815115577],[373420800000,0.2638665638866272],[376012800000,0.2652389001111387],[378691200000,0.266619453917833],[381369600000,0.2679013967383349],[383788800000,0.2691915571410194],[386467200000,0.2706296340229926],[389059200000,0.2719773175009561],[391737600000,0.2734811350403909],[394329600000,0.2750917811482009],[397008000000,0.2767681679134725],[399686400000,0.2784692074252922],[402278400000,0.280252422758939],[404956800000,0.2817069348052776],[407548800000,0.2830792710297892],[410227200000,0.2844105193433873],[412905600000,0.2856513742529756],[415324800000,0.2868018357585542],[418003200000,0.2881823895652484],[420595200000,0.2893410686530097],[423273600000,0.2909517147608197],[425865600000,0.2925048377933508],[428544000000,0.2940990487367954],[431222400000,0.2957425651733362],[433814400000,0.2974353871029732],[436492800000,0.2988405936562156],[439084800000,0.3001307540589002],[441763200000,0.3013633913863057],[444441600000,0.3025302880562497],[446947200000,0.3037464902192899],[449625600000,0.3050941736972534],[452217600000,0.3063596813533898],[454896000000,0.3077320175779014],[457488000000,0.3092769230282498],[460166400000,0.3109286570469733],[462844800000,0.3126625668875238],[465436800000,0.3144375646389879],[468115200000,0.3159413821784227],[470707200000,0.3172315425811073],[473385600000,0.3184806150728783],[476064000000,0.3195817710853606],[478483200000,0.3206500567691122],[481161600000,0.3220306105758065],[483753600000,0.323460469875597],[486432000000,0.3250711159834069],[489024000000,0.3266817620912169],[491702400000,0.3284321070961329],[494380800000,0.3302317575941451],[496972800000,0.3319985377634265],[499651200000,0.3335927487068711],[502243200000,0.3349897376779307],[504921600000,0.3363127684093461],[507600000000,0.3375454057367517],[510019200000,0.3386958672423303],[512697600000,0.3400599858846591],[515289600000,0.3415144979309978],[517968000000,0.3430594033813461],[520560000000,0.3446371791604253],[523238400000,0.3463053483435142],[525916800000,0.3480639109306129],[528508800000,0.3497567328602499],[531187200000,0.3513427262215118],[533779200000,0.3526000162954655],[536457600000,0.353947699773429],[539136000000,0.3551474667721038],[541555200000,0.3563718865173267],[544233600000,0.3577935282349345],[546825600000,0.3591987347881769],[549504000000,0.3607189874919771],[552096000000,0.3623296335997871],[554774400000,0.3640388906937896],[557452800000,0.3657728005343401],[560044800000,0.3676053213610831],[562723200000,0.369191314722345],[565315200000,0.3705883036934047],[567993600000,0.3720017278288298],[570672000000,0.3732343651562354],[573177600000,0.3744505673192756],[575856000000,0.3758146859616044],[578448000000,0.3771705870217507],[581126400000,0.3787812331295606],[583718400000,0.380548013298842],[586396800000,0.3823476637968542],[589075200000,0.3841884022057799],[591667200000,0.3860702285256191],[594345600000,0.3876397867225156],[596937600000,0.3890532108579407],[599616000000,0.390433764664635],[602294400000,0.3916992723207714],[604713600000,0.3929483448125424],[607392000000,0.3945179030094389],[609984000000,0.3960381557132391],[612662400000,0.3977474128072416],[615254400000,0.3996210215448981],[617932800000,0.4015192830291027],[620611200000,0.4035161554994998],[623203200000,0.4055787686273585],[625881600000,0.4073373312144572],[628473600000,0.4089644124866326],[631152000000,0.4104435772795194],[633830400000,0.4118241310862136],[636249600000,0.4133443837900139],[638928000000,0.4157603529517289],[641520000000,0.4178887067370492],[644198400000,0.4202225000769372],[646790400000,0.4225480758346424],[649468800000,0.4250708735647326],[652147200000,0.4276347592057362],[654739200000,0.4301493393536437],[657417600000,0.4325242206044451],[660009600000,0.4348251436156023],[662688000000,0.4369863677296534],[665366400000,0.4390078929465986],[667785600000,0.4409554599238995],[670464000000,0.4431824246954123],[673056000000,0.4454011718847424],[675734400000,0.4478171410464574],[678326400000,0.4501673695507107],[681004800000,0.4527476903560798],[683683200000,0.4553690990723624],[686275200000,0.457908331966818],[688953600000,0.4602339077245232],[691545600000,0.4622554329414684],[694224000000,0.4643098284871444],[696902400000,0.4662327427178972],[699408000000,0.4683282261744867],[702086400000,0.4707031074252881],[704678400000,0.4731108590048205],[707356800000,0.4756090039883625],[709948800000,0.4781153665540872],[712627200000,0.4808929093318412],[715305600000,0.4834896653015757],[717897600000,0.486061768524762],[720576000000,0.4884119970290154],[723168000000,0.4905978738896147],[725846400000,0.492783750750214],[728524800000,0.4947559704740629],[730944000000,0.496670667122633],[733622400000,0.4988236736545014],[736214400000,0.5010095505151008],[738892800000,0.503335126272806],[741484800000,0.5057346602701556],[744163200000,0.5082903283289765],[746841600000,0.5107638205659705],[749433600000,0.5131962248920509],[752112000000,0.5153492314239193],[754704000000,0.5173954093874126],[757382400000,0.5194087170221751],[760060800000,0.5210851037874468],[762480000000,0.5229669301072859],[765158400000,0.5252596355362604],[767750400000,0.5272811607532055],[770428800000,0.5295409958534492],[773020800000,0.5318747891933372],[775699200000,0.5342414528619559],[778377600000,0.5366492044414882],[780969600000,0.5389829977813761],[783648000000,0.5411031339845138],[786240000000,0.5431164416192763],[788918400000,0.5450886613431253],[791596800000,0.5469458349164164],[794016000000,0.5487947909075248],[796694400000,0.5509313622750278],[799286400000,0.552928234745425],[801964800000,0.5551634170991204],[804556800000,0.5575218631855565],[807235200000,0.5598720916898099],[809913600000,0.5624113245842653],[812505600000,0.5649094695678074],[815184000000,0.5670378233531278],[817776000000,0.5689114320907843],[820454400000,0.5706206891847867],[823132800000,0.5723710341897027],[825638400000,0.5742692956739074],[828316800000,0.5763894318770449],[830908800000,0.5784849153336346],[833587200000,0.5807694031804262],[836179200000,0.5830785437737661],[838857600000,0.5856177766682217],[841536000000,0.5881487919804945],[844128000000,0.5905894138887576],[846806400000,0.5930300357970207],[849398400000,0.5950597785961486],[852076800000,0.596990910409084],[854755200000,0.5988398664001925],[857174400000,0.6007792157953106],[859852800000,0.6029322223271791],[862444800000,0.6050605761124994],[865123200000,0.6073614991236566],[867715200000,0.6097445979566407],[870393600000,0.6124153121660195],[873072000000,0.615012068135754],[875664000000,0.6174691252083826],[878342400000,0.6197207427264435],[880934400000,0.6217422679433887],[883612800000,0.6238295338177955],[886291200000,0.6255716612405288],[888710400000,0.6272891359167139],[891388800000,0.6294010545376688],[893980800000,0.6315376259051719],[896659200000,0.6337728082588674],[899251200000,0.6360655136878418],[901929600000,0.6385554410892011],[904608000000,0.6409878454152815],[907200000000,0.6433627266660831],[909878400000,0.645614344184144],[912470400000,0.6476605221476373],[915148800000,0.6498299638438712],[917827200000,0.6514899154447773],[920246400000,0.6531827373744143],[922924800000,0.6552617856666385],[925516800000,0.6574476625272377],[928195200000,0.6597814558671258],[930787200000,0.6621974250288407],[933465600000,0.6647202227589308],[936144000000,0.6671937149959248],[938736000000,0.669658989650736],[941414400000,0.6718613016757007],[944006400000,0.6738746093104632],[946684800000,0.6760111806779663],[949363200000,0.6777697432650649],[951868800000,0.6795693937630771],[954547200000,0.6815744838156569],[957139200000,0.6834152222245826],[959817600000,0.6854614001880759],[962409600000,0.6875897539733963],[965088000000,0.689792065998361],[967766400000,0.6920847714273354],[970358400000,0.6942953010344828],[973036800000,0.6963661317445242],[975628800000,0.6983630042149213],[978307200000,0.700203742623847],[980985600000,0.7019869579574938],[983404800000,0.7037373029624097],[986083200000,0.7056355644466143],[988675200000,0.7075173907664536],[991353600000,0.709588221476495],[993945600000,0.7116179642756228],[996624000000,0.7137627532253087],[999302400000,0.7160061531611869],[1001894400000,0.7181016366177764],[1004572800000,0.7200985090881735],[1007164800000,0.7219803354080127],[1009843200000,0.7237717683238422],[1012521600000,0.7254645902534792],[1014940800000,0.7270752363612892],[1017619200000,0.728776275873109],[1020211200000,0.7306334494464001],[1022889600000,0.7326138867524318],[1025481600000,0.7345943240584635],[1028160000000,0.736689807515053],[1030838400000,0.7388099437181906],[1033430400000,0.7408807744282321],[1036108800000,0.7428201238233502],[1038700800000,0.7445211633351699],[1041379200000,0.7462057676826243],[1044057600000,0.7478164137904343],[1046476800000,0.7494352774804269],[1049155200000,0.7511938400675257],[1051747200000,0.7530099257299032],[1054425600000,0.7549657102893867],[1057017600000,0.7569050596845049],[1059696000000,0.7589758903945464],[1062374400000,0.7610220683580396],[1064966400000,0.7631011166502638],[1067644800000,0.7650158132988338],[1070236800000,0.7666675473175574],[1072915200000,0.7681795824391749],[1075593600000,0.7696258769033308],[1078099200000,0.7712118702645927],[1080777600000,0.7730033031804222],[1083369600000,0.7747947360962517],[1086048000000,0.7766519096695428],[1088640000000,0.7786241293933918],[1091318400000,0.780727830432164],[1093996800000,0.7827986611422054],[1096588800000,0.7849270149275257],[1099267200000,0.7868663643226439],[1101859200000,0.7887399730603004],[1104537600000,0.7905478411404954],[1107216000000,0.7921173993373918],[1109635200000,0.7936129992946439],[1112313600000,0.7952811684777329],[1114905600000,0.7970397310648315],[1117584000000,0.7989462101312189],[1120176000000,0.8010006056768949],[1122854400000,0.8030878715513017],[1125532800000,0.8052819659940837],[1128124800000,0.8074596252725003],[1130803200000,0.8093907570854357],[1133395200000,0.8112314954943615],[1136073600000,0.8130064932458255],[1138752000000,0.8147075327576453],[1141171200000,0.8164003546872822],[1143849600000,0.8182164403496599],[1146441600000,0.8199832205189412],[1149120000000,0.8219800929893384],[1151712000000,0.8240920116102932],[1154390400000,0.8262861060530753],[1157068800000,0.8286774224682422],[1159660800000,0.830986563061582],[1162339200000,0.8331149168469023],[1164931200000,0.8351364420638475],[1167609600000,0.8370593562946003],[1170288000000,0.8389329650322568],[1172707200000,0.840732615530269],[1175385600000,0.842647312178839],[1177977600000,0.8445291384986783],[1180656000000,0.8466328395374505],[1183248000000,0.8488104988158671],[1185926400000,0.8509717229299182],[1188604800000,0.8532644283588927],[1191196800000,0.8554092173085784],[1193875200000,0.8574389601077064],[1196467200000,0.8593536567562764],[1199145600000,0.8611533072542885],[1201824000000,0.8628379116017428],[1204329600000,0.8644485577095529],[1207008000000,0.8661742499679207],[1209600000000,0.8678670718975577],[1212278400000,0.8697817685461278],[1214870400000,0.8717704234343422],[1217548800000,0.8738001662334701],[1220227200000,0.8759696079297039],[1222819200000,0.8779829155644665],[1225497600000,0.8798893946308538],[1228089600000,0.8816808275466833],[1230768000000,0.8833572143119549],[1233446400000,0.8849514252553995],[1235865600000,0.8864798955413824],[1238544000000,0.8881151943957406],[1241136000000,0.8897340580857332],[1243814400000,0.8915583613302935],[1246406400000,0.8934730579788636],[1249084800000,0.8954945831958088],[1251763200000,0.8976393721454945],[1254355200000,0.8996362446158916],[1257033600000,0.9015180709357309],[1259625600000,0.9032848511050122],[1262304000000,0.904928367541553],[1264982400000,0.9065225784849976],[1267401600000,0.9080428311887979],[1270080000000,0.9078719958728018],[1272672000000,0.9093334271233382],[1275350400000,0.9108080640284419],[1277942400000,0.9124285383645424],[1280620800000,0.9141712985411042],[1283299200000,0.9159684098062219],[1285891200000,0.9178049736833985],[1288569600000,0.9194140255802654],[1291161600000,0.9209420110288995],[1293840000000,0.9224132458549796],[1296518400000,0.9236675447290189],[1298937600000,0.924916847313091],[1301616000000,0.9263206897476913],[1304208000000,0.9277245979229488],[1306886400000,0.9292378081588184],[1309478400000,0.9309292002291556],[1312156800000,0.9326410705142923],[1314835200000,0.9344797627452546],[1317427200000,0.9362468798354051],[1320105600000,0.9377701237391198],[1322697600000,0.9392508416550392],[1325376000000,0.9406763209835264],[1328054400000,0.9419566038524274],[1330560000000,0.9432746382938756],[1333238400000,0.9446532034456815],[1335830400000,0.9459959810270823],[1338508800000,0.9475331948205072],[1341100800000,0.9491207659575486],[1343779200000,0.9508592365562104],[1346457600000,0.9527033277386666],[1349049600000,0.9544062490768062],[1351728000000,0.9560488204913961],[1354320000000,0.9575188555504774],[1356998400000,0.9588077257927593],[1359676800000,0.959880514711547],[1362096000000,0.9610480770056479],[1364774400000,0.9623269875383242],[1367366400000,0.9636894544466343],[1370044800000,0.9652293307366872],[1372636800000,0.9667720667453391],[1375315200000,0.968592663860335],[1377993600000,0.9704481774820253],[1380585600000,0.972224366782906],[1383264000000,0.9739151836224904],[1385856000000,0.9754233153925709],[1388534400000,0.9769219722903952],[1391212800000,0.9782364567363403],[1393632000000,0.9795785522584196],[1396310400000,0.9809920996575775],[1398902400000,0.9824736228965508],[1401580800000,0.9840731506156676],[1404172800000,0.9857020068855945],[1406851200000,0.9876037033191516],[1409529600000,0.989506155770269],[1412121600000,0.9913833638089218],[1414800000000,0.9931129594188262],[1417392000000,0.9946081320618051],[1420070400000,0.9961077504167446],[1422748800000,0.9973064080418247],[1425168000000,0.9985906106974269],[1427846400000,1]]},{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[-79056000000,0.6887417218543045],[-76377600000,0.6887417218543045],[-73699200000,0.6423841059602647],[-71107200000,0.7086092715231787],[-68428800000,0.7019867549668874],[-65836800000,0.6357615894039735],[-63158400000,0.6291390728476821],[-60480000000,0.6688741721854305],[-57974400000,0.6291390728476821],[-55296000000,0.6688741721854305],[-52704000000,0.6490066225165563],[-50025600000,0.6291390728476821],[-47433600000,0.5629139072847682],[-44755200000,0.5496688741721855],[-42076800000,0.5562913907284767],[-39484800000,0.5695364238410596],[-36806400000,0.5562913907284767],[-34214400000,0.5894039735099337],[-31536000000,0.5364238410596027],[-28857600000,0.4966887417218542],[-26438400000,0.5298013245033112],[-23760000000,0.4966887417218542],[-21168000000,0.5231788079470198],[-18489600000,0.5894039735099337],[-15897600000,0.6357615894039735],[-13219200000,0.6158940397350994],[-10540800000,0.6225165562913906],[-7948800000,0.6092715231788078],[-5270400000,0.6225165562913906],[-2678400000,0.6357615894039735],[0,0.6357615894039735],[2678400000,0.6291390728476821],[5097600000,0.6754966887417218],[7776000000,0.7350993377483444],[10368000000,0.6754966887417218],[13046400000,0.6688741721854305],[15638400000,0.7483443708609271],[18316800000,0.7417218543046357],[20995200000,0.7086092715231787],[23587200000,0.7218543046357614],[26265600000,0.7549668874172184],[28857600000,0.7284768211920529],[31536000000,0.7350993377483444],[34214400000,0.7350993377483444],[36633600000,0.7483443708609271],[39312000000,0.7284768211920529],[41904000000,0.7549668874172184],[44582400000,0.8278145695364237],[47174400000,0.7682119205298014],[49852800000,0.7549668874172184],[52531200000,0.7350993377483444],[55123200000,0.7350993377483444],[57801600000,0.7218543046357614],[60393600000,0.7152317880794702],[63072000000,0.6821192052980132],[65750400000,0.7019867549668874],[68256000000,0.6357615894039735],[70934400000,0.6158940397350994],[73526400000,0.6291390728476821],[76204800000,0.6291390728476821],[78796800000,0.6291390728476821],[81475200000,0.6490066225165563],[84153600000,0.662251655629139],[86745600000,0.7152317880794702],[89424000000,0.7549668874172184],[92016000000,0.7615894039735098],[94694400000,0.6754966887417218],[97372800000,0.6821192052980132],[99792000000,0.6953642384105959],[102470400000,0.7284768211920529],[105062400000,0.7284768211920529],[107740800000,0.7549668874172184],[110332800000,0.7284768211920529],[113011200000,0.7748344370860926],[115689600000,0.7218543046357614],[118281600000,0.8079470198675496],[120960000000,0.8079470198675496],[123552000000,0.8344370860927153],[126230400000,0.8013245033112583],[128908800000,0.7947019867549668],[131328000000,0.7417218543046357],[134006400000,0.7218543046357614],[136598400000,0.7019867549668874],[139276800000,0.7019867549668874],[141868800000,0.7019867549668874],[144547200000,0.6556291390728475],[147225600000,0.7086092715231787],[149817600000,0.7417218543046357],[152496000000,0.7682119205298014],[155088000000,0.7814569536423841],[157766400000,0.7284768211920529],[160444800000,0.6821192052980132],[162864000000,0.6953642384105959],[165542400000,0.7947019867549668],[168134400000,1],[170812800000,0.8013245033112583],[173404800000,0.6887417218543045],[176083200000,0.7152317880794702],[178761600000,0.7152317880794702],[181353600000,0.7417218543046357],[184032000000,0.6953642384105959],[186624000000,0.6490066225165563],[189302400000,0.6291390728476821],[191980800000,0.6688741721854305],[194486400000,0.662251655629139],[197164800000,0.6291390728476821],[199756800000,0.6688741721854305],[202435200000,0.6092715231788078],[205027200000,0.6291390728476821],[207705600000,0.6291390728476821],[210384000000,0.6092715231788078],[212976000000,0.5894039735099337],[215654400000,0.6092715231788078],[218246400000,0.5562913907284767],[220924800000,0.5562913907284767],[223603200000,0.4701986754966888],[226022400000,0.5496688741721855],[228700800000,0.5496688741721855],[231292800000,0.5364238410596027],[233971200000,0.5562913907284767],[236563200000,0.5496688741721855],[239241600000,0.5761589403973509],[241920000000,0.5894039735099337],[244512000000,0.5827814569536424],[247190400000,0.5960264900662251],[249782400000,0.6092715231788078],[252460800000,0.6423841059602647],[255139200000,0.5894039735099337],[257558400000,0.5827814569536424],[260236800000,0.5695364238410596],[262828800000,0.5364238410596027],[265507200000,0.5165562913907285],[268099200000,0.5761589403973509],[270777600000,0.5496688741721855],[273456000000,0.5562913907284767],[276048000000,0.5629139072847682],[278726400000,0.5496688741721855],[281318400000,0.5430463576158939],[283996800000,0.5894039735099337],[286675200000,0.5894039735099337],[289094400000,0.5960264900662251],[291772800000,0.5827814569536424],[294364800000,0.5364238410596027],[297043200000,0.509933774834437],[299635200000,0.5562913907284767],[302313600000,0.4966887417218542],[304992000000,0.4768211920529801],[307584000000,0.4966887417218542],[310262400000,0.4966887417218542],[312854400000,0.5231788079470198],[315532800000,0.509933774834437],[318211200000,0.5231788079470198],[320716800000,0.5298013245033112],[323395200000,0.6026490066225166],[325987200000,0.6092715231788078],[328665600000,0.5960264900662251],[331257600000,0.6026490066225166],[333936000000,0.6026490066225166],[336614400000,0.6291390728476821],[339206400000,0.6026490066225166],[341884800000,0.6225165562913906],[344476800000,0.6092715231788078],[347155200000,0.5761589403973509],[349833600000,0.5695364238410596],[352252800000,0.5695364238410596],[354931200000,0.5761589403973509],[357523200000,0.5827814569536424],[360201600000,0.5695364238410596],[362793600000,0.6688741721854305],[365472000000,0.6490066225165563],[368150400000,0.6754966887417218],[370742400000,0.7152317880794702],[373420800000,0.7284768211920529],[376012800000,0.6821192052980132],[378691200000,0.6953642384105959],[381369600000,0.6556291390728475],[383788800000,0.662251655629139],[386467200000,0.7086092715231787],[389059200000,0.6688741721854305],[391737600000,0.6688741721854305],[394329600000,0.6821192052980132],[397008000000,0.6887417218543045],[399686400000,0.6357615894039735],[402278400000,0.6026490066225166],[404956800000,0.5761589403973509],[407548800000,0.5761589403973509],[410227200000,0.5894039735099337],[412905600000,0.5894039735099337],[415324800000,0.5562913907284767],[418003200000,0.5364238410596027],[420595200000,0.509933774834437],[423273600000,0.4569536423841059],[425865600000,0.4900662251655628],[428544000000,0.4635761589403973],[431222400000,0.4900662251655628],[433814400000,0.4966887417218542],[436492800000,0.5364238410596027],[439084800000,0.5231788079470198],[441763200000,0.5165562913907285],[444441600000,0.6291390728476821],[446947200000,0.6158940397350994],[449625600000,0.6158940397350994],[452217600000,0.5894039735099337],[454896000000,0.5894039735099337],[457488000000,0.6225165562913906],[460166400000,0.6357615894039735],[462844800000,0.6357615894039735],[465436800000,0.6291390728476821],[468115200000,0.5761589403973509],[470707200000,0.5960264900662251],[473385600000,0.5364238410596027],[476064000000,0.4569536423841059],[478483200000,0.4304635761589403],[481161600000,0.509933774834437],[483753600000,0.5894039735099337],[486432000000,0.4900662251655628],[489024000000,0.4569536423841059],[491702400000,0.3973509933774834],[494380800000,0.3377483443708609],[496972800000,0.4569536423841059],[499651200000,0.4503311258278145],[502243200000,0.423841059602649],[504921600000,0.423841059602649],[507600000000,0.4701986754966888],[510019200000,0.509933774834437],[512697600000,0.4966887417218542],[515289600000,0.4701986754966888],[517968000000,0.4768211920529801],[520560000000,0.4701986754966888],[523238400000,0.4503311258278145],[525916800000,0.3311258278145695],[528508800000,0.4105960264900662],[531187200000,0.4370860927152318],[533779200000,0.3178807947019867],[536457600000,0.4966887417218542],[539136000000,0.4172185430463576],[541555200000,0.4172185430463576],[544233600000,0.152317880794702],[546825600000,0.3973509933774834],[549504000000,0.3642384105960265],[552096000000,0.3509933774834437],[554774400000,0.3311258278145695],[557452800000,0.357615894039735],[560044800000,0.4039735099337748],[562723200000,0.4172185430463576],[565315200000,0.4304635761589403],[567993600000,0.390728476821192],[570672000000,0.423841059602649],[573177600000,0.3973509933774834],[575856000000,0.4370860927152318],[578448000000,0.4105960264900662],[581126400000,0.4105960264900662],[583718400000,0.423841059602649],[586396800000,0.4105960264900662],[589075200000,0.4437086092715232],[591667200000,0.423841059602649],[594345600000,0.4105960264900662],[596937600000,0.4039735099337748],[599616000000,0.4172185430463576],[602294400000,0.4503311258278145],[604713600000,0.4834437086092714],[607392000000,0.4105960264900662],[609984000000,0.390728476821192],[612662400000,0.3973509933774834],[615254400000,0.3973509933774834],[617932800000,0.357615894039735],[620611200000,0.390728476821192],[623203200000,0.4172185430463576],[625881600000,0.423841059602649],[628473600000,0.3708609271523178],[631152000000,0.3841059602649006],[633830400000,0.423841059602649],[636249600000,0.4039735099337748],[638928000000,0.4370860927152318],[641520000000,0.4304635761589403],[644198400000,0.423841059602649],[646790400000,0.4304635761589403],[649468800000,0.390728476821192],[652147200000,0.390728476821192],[654739200000,0.3708609271523178],[657417600000,0.3774834437086093],[660009600000,0.4370860927152318],[662688000000,0.4701986754966888],[665366400000,0.4370860927152318],[667785600000,0.3841059602649006],[670464000000,0.423841059602649],[673056000000,0.4105960264900662],[675734400000,0.4437086092715232],[678326400000,0.3973509933774834],[681004800000,0.423841059602649],[683683200000,0.4370860927152318],[686275200000,0.4701986754966888],[688953600000,0.4503311258278145],[691545600000,0.4966887417218542],[694224000000,0.4768211920529801],[696902400000,0.5033112582781457],[699408000000,0.4966887417218542],[702086400000,0.509933774834437],[704678400000,0.509933774834437],[707356800000,0.5231788079470198],[709948800000,0.4900662251655628],[712627200000,0.4966887417218542],[715305600000,0.4304635761589403],[717897600000,0.3841059602649006],[720576000000,0.3841059602649006],[723168000000,0.5562913907284767],[725846400000,0.423841059602649],[728524800000,0.4437086092715232],[730944000000,0.4437086092715232],[733622400000,0.4304635761589403],[736214400000,0.4039735099337748],[738892800000,0.3708609271523178],[741484800000,0.357615894039735],[744163200000,0.3642384105960265],[746841600000,0.3112582781456953],[749433600000,0.271523178807947],[752112000000,0.271523178807947],[754704000000,0.4569536423841059],[757382400000,0.3245033112582781],[760060800000,0.2847682119205298],[762480000000,0.3046357615894039],[765158400000,0.2781456953642384],[767750400000,0.357615894039735],[770428800000,0.3112582781456953],[773020800000,0.3178807947019867],[775699200000,0.2847682119205298],[778377600000,0.3046357615894039],[780969600000,0.3245033112582781],[783648000000,0.3178807947019867],[786240000000,0.3311258278145695],[788918400000,0.3509933774834437],[791596800000,0.3708609271523178],[794016000000,0.3509933774834437],[796694400000,0.3112582781456953],[799286400000,0.3245033112582781],[801964800000,0.2980132450331126],[804556800000,0.3245033112582781],[807235200000,0.2980132450331126],[809913600000,0.3046357615894039],[812505600000,0.3245033112582781],[815184000000,0.2913907284768211],[817776000000,0.2582781456953642],[820454400000,0.2980132450331126],[823132800000,0.2980132450331126],[825638400000,0.2913907284768211],[828316800000,0.2317880794701987],[830908800000,0.2980132450331126],[833587200000,0.3245033112582781],[836179200000,0.2980132450331126],[838857600000,0.2913907284768211],[841536000000,0.2980132450331126],[844128000000,0.2781456953642384],[846806400000,0.2781456953642384],[849398400000,0.2781456953642384],[852076800000,0.2649006622516556],[854755200000,0.2649006622516556],[857174400000,0.2781456953642384],[859852800000,0.2847682119205298],[862444800000,0.3046357615894039],[865123200000,0.2913907284768211],[867715200000,0.2582781456953642],[870393600000,0.2516556291390728],[873072000000,0.2649006622516556],[875664000000,0.2649006622516556],[878342400000,0.2781456953642384],[880934400000,0.2781456953642384],[883612800000,0.3443708609271523],[886291200000,0.3443708609271523],[888710400000,0.3509933774834437],[891388800000,0.3311258278145695],[893980800000,0.3112582781456953],[896659200000,0.3046357615894039],[899251200000,0.3112582781456953],[901929600000,0.3046357615894039],[904608000000,0.2781456953642384],[907200000000,0.2649006622516556],[909878400000,0.271523178807947],[912470400000,0.23841059602649],[915148800000,0.2781456953642384],[917827200000,0.2649006622516556],[920246400000,0.2450331125827815],[922924800000,0.1986754966887417],[925516800000,0.1788079470198675],[928195200000,0.1721854304635761],[930787200000,0.1721854304635761],[933465600000,0.1655629139072848],[936144000000,0.1324503311258278],[938736000000,0.1589403973509933],[941414400000,0.1721854304635761],[944006400000,0.1456953642384106],[946684800000,0.2119205298013245],[949363200000,0.1721854304635761],[951868800000,0.152317880794702],[954547200000,0.1854304635761589],[957139200000,0.1788079470198675],[959817600000,0.1788079470198675],[962409600000,0.1986754966887417],[965088000000,0.1986754966887417],[967766400000,0.152317880794702],[970358400000,0.1589403973509933],[973036800000,0.152317880794702],[975628800000,0.1324503311258278],[978307200000,0.1721854304635761],[980985600000,0.1788079470198675],[983404800000,0.2052980132450331],[986083200000,0.1854304635761589],[988675200000,0.152317880794702],[991353600000,0.152317880794702],[993945600000,0.2251655629139072],[996624000000,0.3046357615894039],[999302400000,0.3178807947019867],[1001894400000,0.07947019867549666],[1004572800000,0.1258278145695364],[1007164800000,0.152317880794702],[1009843200000,0.2582781456953642],[1012521600000,0.23841059602649],[1014940800000,0.2450331125827815],[1017619200000,0.23841059602649],[1020211200000,0.2847682119205298],[1022889600000,0.2781456953642384],[1025481600000,0.2185430463576159],[1028160000000,0.2119205298013245],[1030838400000,0.2317880794701987],[1033430400000,0.2317880794701987],[1036108800000,0.2317880794701987],[1038700800000,0.2185430463576159],[1041379200000,0.2185430463576159],[1044057600000,0.2251655629139072],[1046476800000,0.2052980132450331],[1049155200000,0.2052980132450331],[1051747200000,0.23841059602649],[1054425600000,0.2251655629139072],[1057017600000,0.271523178807947],[1059696000000,0.2516556291390728],[1062374400000,0.1986754966887417],[1064966400000,0.2052980132450331],[1067644800000,0.2119205298013245],[1070236800000,0.2119205298013245],[1072915200000,0.1854304635761589],[1075593600000,0.1854304635761589],[1078099200000,0.1788079470198675],[1080777600000,0.2052980132450331],[1083369600000,0.2052980132450331],[1086048000000,0.23841059602649],[1088640000000,0.2052980132450331],[1091318400000,0.1986754966887417],[1093996800000,0.1589403973509933],[1096588800000,0.152317880794702],[1099267200000,0.1258278145695364],[1101859200000,0.3112582781456953],[1104537600000,0.09933774834437085],[1107216000000,0.07947019867549666],[1109635200000,0.09271523178807946],[1112313600000,0.0596026490066225],[1114905600000,0.08609271523178806],[1117584000000,0.04635761589403972],[1120176000000,0],[1122854400000,0.03311258278145695],[1125532800000,0.03311258278145695],[1128124800000,0.0596026490066225],[1130803200000,0.08609271523178806],[1133395200000,0.09933774834437085],[1136073600000,0.1324503311258278],[1138752000000,0.1324503311258278],[1141171200000,0.1324503311258278],[1143849600000,0.119205298013245],[1146441600000,0.1059602649006622],[1149120000000,0.119205298013245],[1151712000000,0.07947019867549666],[1154390400000,0.09271523178807946],[1157068800000,0.09271523178807946],[1159660800000,0.09271523178807946],[1162339200000,0.1125827814569536],[1164931200000,0.09933774834437085],[1167609600000,0.09933774834437085],[1170288000000,0.1258278145695364],[1172707200000,0.1456953642384106],[1175385600000,0.1324503311258278],[1177977600000,0.119205298013245],[1180656000000,0.1059602649006622],[1183248000000,0.09933774834437085],[1185926400000,0.07947019867549666],[1188604800000,0.08609271523178806],[1191196800000,0.07947019867549666],[1193875200000,0.0596026490066225],[1196467200000,0.09271523178807946],[1199145600000,0.09933774834437085],[1201824000000,0.1258278145695364],[1204329600000,0.119205298013245],[1207008000000,0.07947019867549666],[1209600000000,0.3708609271523178],[1212278400000,0.2185430463576159],[1214870400000,0.1456953642384106],[1217548800000,0.1059602649006622],[1220227200000,0.1655629139072848],[1222819200000,0.2185430463576159],[1225497600000,0.2781456953642384],[1228089600000,0.2781456953642384],[1230768000000,0.2649006622516556],[1233446400000,0.2185430463576159],[1235865600000,0.2450331125827815],[1238544000000,0.3046357615894039],[1241136000000,0.3973509933774834],[1243814400000,0.2980132450331126],[1246406400000,0.2516556291390728],[1249084800000,0.1788079470198675],[1251763200000,0.2450331125827815],[1254355200000,0.2119205298013245],[1257033600000,0.2450331125827815],[1259625600000,0.2450331125827815],[1262304000000,0.2582781456953642],[1264982400000,0.23841059602649],[1267401600000,0.2317880794701987],[1270080000000,0.2781456953642384],[1272672000000,0.3178807947019867],[1275350400000,0.3112582781456953],[1277942400000,0.3046357615894039],[1280620800000,0.3112582781456953],[1283299200000,0.2980132450331126],[1285891200000,0.2913907284768211],[1288569600000,0.2913907284768211],[1291161600000,0.3245033112582781],[1293840000000,0.3443708609271523],[1296518400000,0.357615894039735],[1298937600000,0.3178807947019867],[1301616000000,0.3112582781456953],[1304208000000,0.3112582781456953],[1306886400000,0.3311258278145695],[1309478400000,0.3377483443708609],[1312156800000,0.3311258278145695],[1314835200000,0.3046357615894039],[1317427200000,0.3046357615894039],[1320105600000,0.3178807947019867],[1322697600000,0.3708609271523178],[1325376000000,0.3841059602649006],[1328054400000,0.3841059602649006],[1330560000000,0.4172185430463576],[1333238400000,0.4304635761589403],[1335830400000,0.4370860927152318],[1338508800000,0.4569536423841059],[1341100800000,0.3973509933774834],[1343779200000,0.3841059602649006],[1346457600000,0.3973509933774834],[1349049600000,0.4370860927152318],[1351728000000,0.4966887417218542],[1354320000000,0.6490066225165563],[1356998400000,0.271523178807947],[1359676800000,0.23841059602649],[1362096000000,0.2450331125827815],[1364774400000,0.2781456953642384],[1367366400000,0.2980132450331126],[1370044800000,0.3046357615894039],[1372636800000,0.2913907284768211],[1375315200000,0.2980132450331126],[1377993600000,0.3046357615894039],[1380585600000,0.271523178807947],[1383264000000,0.2649006622516556],[1385856000000,0.2781456953642384],[1388534400000,0.3245033112582781],[1391212800000,0.3377483443708609],[1393632000000,0.3443708609271523],[1396310400000,0.3443708609271523],[1398902400000,0.3443708609271523],[1401580800000,0.3443708609271523],[1404172800000,0.3509933774834437],[1406851200000,0.3311258278145695],[1409529600000,0.3443708609271523],[1412121600000,0.3311258278145695],[1414800000000,0.3377483443708609],[1417392000000,0.357615894039735],[1420070400000,0.3642384105960265],[1422748800000,0.3774834437086093],[1425168000000,0.3443708609271523],[1427846400000,0.357615894039735]]},{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,0.02358490566037736],[-76377600000,0.03301886792452831],[-73699200000,0.02830188679245281],[-71107200000,0.04245283018867926],[-68428800000,0.03301886792452831],[-65836800000,0.03773584905660377],[-63158400000,0.05188679245283017],[-60480000000,0.02358490566037736],[-57974400000,0.004716981132075455],[-55296000000,0.02830188679245281],[-52704000000,0.0188679245283019],[-50025600000,0.0188679245283019],[-47433600000,0.02358490566037736],[-44755200000,0.009433962264150952],[-42076800000,0.02830188679245281],[-39484800000,0.03773584905660377],[-36806400000,0.0188679245283019],[-34214400000,0.0188679245283019],[-31536000000,0.0188679245283019],[-28857600000,0.04245283018867926],[-26438400000,0],[-23760000000,0],[-21168000000,0.009433962264150952],[-18489600000,0.0188679245283019],[-15897600000,0.0188679245283019],[-13219200000,0.0188679245283019],[-10540800000,0.03301886792452831],[-7948800000,0.02358490566037736],[-5270400000,0.03773584905660377],[-2678400000,0.02830188679245281],[0,0.02830188679245281],[2678400000,0.02358490566037736],[5097600000,0.02830188679245281],[7776000000,0.004716981132075455],[10368000000,0.03301886792452831],[13046400000,0.04245283018867926],[15638400000,0.05188679245283017],[18316800000,0.06603773584905662],[20995200000,0.05660377358490567],[23587200000,0.05660377358490567],[26265600000,0.07547169811320753],[28857600000,0.08962264150943398],[31536000000,0.1037735849056604],[34214400000,0.1084905660377358],[36633600000,0.1132075471698113],[39312000000,0.1179245283018868],[41904000000,0.1273584905660377],[44582400000,0.08018867924528303],[47174400000,0.1037735849056604],[49852800000,0.1132075471698113],[52531200000,0.08490566037735849],[55123200000,0.1179245283018868],[57801600000,0.1132075471698113],[60393600000,0.1037735849056604],[63072000000,0.1037735849056604],[65750400000,0.1226415094339623],[68256000000,0.1226415094339623],[70934400000,0.1273584905660377],[73526400000,0.1226415094339623],[76204800000,0.06603773584905662],[78796800000,0.0990566037735849],[81475200000,0.09433962264150944],[84153600000,0.07547169811320753],[86745600000,0.08018867924528303],[89424000000,0.08018867924528303],[92016000000,0.0990566037735849],[94694400000,0.08018867924528303],[97372800000,0.05660377358490567],[99792000000,0.07075471698113207],[102470400000,0.04716981132075472],[105062400000,0.04245283018867926],[107740800000,0.04716981132075472],[110332800000,0.05660377358490567],[113011200000,0.04245283018867926],[115689600000,0.06603773584905662],[118281600000,0.07075471698113207],[120960000000,0.05188679245283017],[123552000000,0.03301886792452831],[126230400000,0.04716981132075472],[128908800000,0.05188679245283017],[131328000000,0.03773584905660377],[134006400000,0.04716981132075472],[136598400000,0.02830188679245281],[139276800000,0.06132075471698113],[141868800000,0.08018867924528303],[144547200000,0.04716981132075472],[147225600000,0.06132075471698113],[149817600000,0.07075471698113207],[152496000000,0.05660377358490567],[155088000000,0.08018867924528303],[157766400000,0.1084905660377358],[160444800000,0.1462264150943396],[162864000000,0.1509433962264151],[165542400000,0.2216981132075471],[168134400000,0.2547169811320755],[170812800000,0.2264150943396227],[173404800000,0.2169811320754717],[176083200000,0.2452830188679245],[178761600000,0.2452830188679245],[181353600000,0.2169811320754717],[184032000000,0.2594339622641509],[186624000000,0.2358490566037736],[189302400000,0.2358490566037736],[191980800000,0.1981132075471698],[194486400000,0.2216981132075471],[197164800000,0.1981132075471698],[199756800000,0.2028301886792453],[202435200000,0.1792452830188679],[205027200000,0.1745283018867925],[207705600000,0.1839622641509434],[210384000000,0.1792452830188679],[212976000000,0.1745283018867925],[215654400000,0.2075471698113208],[218246400000,0.1886792452830189],[220924800000,0.1650943396226415],[223603200000,0.1509433962264151],[226022400000,0.1509433962264151],[228700800000,0.1556603773584906],[231292800000,0.1839622641509434],[233971200000,0.1037735849056604],[236563200000,0.1462264150943396],[239241600000,0.1415094339622641],[241920000000,0.1273584905660377],[244512000000,0.1367924528301887],[247190400000,0.1415094339622641],[249782400000,0.1320754716981132],[252460800000,0.1179245283018868],[255139200000,0.1273584905660377],[257558400000,0.1037735849056604],[260236800000,0.0990566037735849],[262828800000,0.08018867924528303],[265507200000,0.09433962264150944],[268099200000,0.08490566037735849],[270777600000,0.08490566037735849],[273456000000,0.07547169811320753],[276048000000,0.08962264150943398],[278726400000,0.07075471698113207],[281318400000,0.07547169811320753],[283996800000,0.08962264150943398],[286675200000,0.08962264150943398],[289094400000,0.08962264150943398],[291772800000,0.06603773584905662],[294364800000,0.07547169811320753],[297043200000,0.07547169811320753],[299635200000,0.08962264150943398],[302313600000,0.03773584905660377],[304992000000,0.07075471698113207],[307584000000,0.07075471698113207],[310262400000,0.06132075471698113],[312854400000,0.08018867924528303],[315532800000,0.06132075471698113],[318211200000,0.08490566037735849],[320716800000,0.09433962264150944],[323395200000,0.08490566037735849],[325987200000,0.08018867924528303],[328665600000,0.1132075471698113],[331257600000,0.1415094339622641],[333936000000,0.1650943396226415],[336614400000,0.1745283018867925],[339206400000,0.1650943396226415],[341884800000,0.1745283018867925],[344476800000,0.1650943396226415],[347155200000,0.1603773584905661],[349833600000,0.1462264150943396],[352252800000,0.1462264150943396],[354931200000,0.1603773584905661],[357523200000,0.1367924528301887],[360201600000,0.1226415094339623],[362793600000,0.1462264150943396],[365472000000,0.1509433962264151],[368150400000,0.1320754716981132],[370742400000,0.1320754716981132],[373420800000,0.1367924528301887],[376012800000,0.1367924528301887],[378691200000,0.1462264150943396],[381369600000,0.1650943396226415],[383788800000,0.1745283018867925],[386467200000,0.1933962264150943],[389059200000,0.2122641509433962],[391737600000,0.2594339622641509],[394329600000,0.2122641509433962],[397008000000,0.2216981132075471],[399686400000,0.2594339622641509],[402278400000,0.2688679245283019],[404956800000,0.2830188679245283],[407548800000,0.2924528301886792],[410227200000,0.3349056603773585],[412905600000,0.2735849056603774],[415324800000,0.3018867924528302],[418003200000,0.3254716981132076],[420595200000,0.3915094339622642],[423273600000,0.3443396226415095],[425865600000,0.2877358490566038],[428544000000,0.2500000000000001],[431222400000,0.2500000000000001],[433814400000,0.2547169811320755],[436492800000,0.2500000000000001],[439084800000,0.2216981132075471],[441763200000,0.2405660377358491],[444441600000,0.2028301886792453],[446947200000,0.2028301886792453],[449625600000,0.1981132075471698],[452217600000,0.2405660377358491],[454896000000,0.1650943396226415],[457488000000,0.1650943396226415],[460166400000,0.1556603773584906],[462844800000,0.169811320754717],[465436800000,0.1509433962264151],[468115200000,0.1509433962264151],[470707200000,0.1556603773584906],[473385600000,0.1320754716981132],[476064000000,0.1462264150943396],[478483200000,0.1462264150943396],[481161600000,0.1367924528301887],[483753600000,0.1367924528301887],[486432000000,0.1226415094339623],[489024000000,0.1367924528301887],[491702400000,0.1462264150943396],[494380800000,0.1367924528301887],[496972800000,0.1462264150943396],[499651200000,0.1415094339622641],[502243200000,0.1320754716981132],[504921600000,0.1273584905660377],[507600000000,0.1367924528301887],[510019200000,0.1320754716981132],[512697600000,0.1273584905660377],[515289600000,0.1320754716981132],[517968000000,0.1415094339622641],[520560000000,0.1367924528301887],[523238400000,0.1462264150943396],[525916800000,0.1603773584905661],[528508800000,0.1415094339622641],[531187200000,0.1462264150943396],[533779200000,0.1462264150943396],[536457600000,0.1367924528301887],[539136000000,0.1226415094339623],[541555200000,0.1226415094339623],[544233600000,0.1462264150943396],[546825600000,0.1226415094339623],[549504000000,0.1179245283018868],[552096000000,0.1179245283018868],[554774400000,0.1132075471698113],[557452800000,0.09433962264150944],[560044800000,0.1084905660377358],[562723200000,0.1037735849056604],[565315200000,0.09433962264150944],[567993600000,0.1037735849056604],[570672000000,0.1084905660377358],[573177600000,0.1132075471698113],[575856000000,0.08962264150943398],[578448000000,0.08962264150943398],[581126400000,0.08490566037735849],[583718400000,0.0990566037735849],[586396800000,0.08962264150943398],[589075200000,0.08018867924528303],[591667200000,0.07547169811320753],[594345600000,0.08018867924528303],[596937600000,0.08962264150943398],[599616000000,0.07547169811320753],[602294400000,0.06603773584905662],[604713600000,0.06603773584905662],[607392000000,0.06603773584905662],[609984000000,0.06132075471698113],[612662400000,0.06603773584905662],[615254400000,0.07547169811320753],[617932800000,0.04716981132075472],[620611200000,0.04245283018867926],[623203200000,0.04245283018867926],[625881600000,0.03773584905660377],[628473600000,0.04245283018867926],[631152000000,0.05188679245283017],[633830400000,0.06132075471698113],[636249600000,0.05188679245283017],[638928000000,0.03773584905660377],[641520000000,0.05660377358490567],[644198400000,0.05660377358490567],[646790400000,0.06603773584905662],[649468800000,0.06603773584905662],[652147200000,0.07547169811320753],[654739200000,0.08490566037735849],[657417600000,0.08018867924528303],[660009600000,0.08962264150943398],[662688000000,0.09433962264150944],[665366400000,0.1037735849056604],[667785600000,0.1273584905660377],[670464000000,0.1226415094339623],[673056000000,0.1132075471698113],[675734400000,0.1367924528301887],[678326400000,0.1415094339622641],[681004800000,0.1556603773584906],[683683200000,0.1320754716981132],[686275200000,0.1509433962264151],[688953600000,0.1650943396226415],[691545600000,0.1792452830188679],[694224000000,0.1933962264150943],[696902400000,0.1981132075471698],[699408000000,0.2028301886792453],[702086400000,0.2122641509433962],[704678400000,0.2264150943396227],[707356800000,0.2216981132075471],[709948800000,0.2169811320754717],[712627200000,0.2264150943396227],[715305600000,0.2169811320754717],[717897600000,0.2358490566037736],[720576000000,0.2358490566037736],[723168000000,0.2500000000000001],[725846400000,0.2169811320754717],[728524800000,0.2122641509433962],[730944000000,0.2122641509433962],[733622400000,0.2075471698113208],[736214400000,0.1933962264150943],[738892800000,0.2028301886792453],[741484800000,0.1981132075471698],[744163200000,0.1981132075471698],[746841600000,0.2028301886792453],[749433600000,0.1886792452830189],[752112000000,0.2028301886792453],[754704000000,0.2028301886792453],[757382400000,0.2169811320754717],[760060800000,0.2452830188679245],[762480000000,0.2500000000000001],[765158400000,0.2405660377358491],[767750400000,0.2452830188679245],[770428800000,0.2500000000000001],[773020800000,0.2358490566037736],[775699200000,0.2311320754716981],[778377600000,0.2452830188679245],[780969600000,0.2830188679245283],[783648000000,0.2358490566037736],[786240000000,0.2216981132075471],[788918400000,0.1886792452830189],[791596800000,0.1933962264150943],[794016000000,0.2028301886792453],[796694400000,0.2028301886792453],[799286400000,0.2405660377358491],[801964800000,0.1839622641509434],[804556800000,0.2122641509433962],[807235200000,0.2028301886792453],[809913600000,0.1839622641509434],[812505600000,0.1981132075471698],[815184000000,0.1886792452830189],[817776000000,0.2028301886792453],[820454400000,0.2028301886792453],[823132800000,0.1792452830188679],[825638400000,0.2028301886792453],[828316800000,0.2169811320754717],[830908800000,0.2169811320754717],[833587200000,0.2028301886792453],[836179200000,0.2028301886792453],[838857600000,0.2075471698113208],[841536000000,0.2122641509433962],[844128000000,0.2028301886792453],[846806400000,0.1745283018867925],[849398400000,0.1792452830188679],[852076800000,0.1792452830188679],[854755200000,0.1933962264150943],[857174400000,0.1839622641509434],[859852800000,0.2028301886792453],[862444800000,0.1886792452830189],[865123200000,0.1886792452830189],[867715200000,0.2028301886792453],[870393600000,0.1792452830188679],[873072000000,0.1981132075471698],[875664000000,0.1745283018867925],[878342400000,0.169811320754717],[880934400000,0.1650943396226415],[883612800000,0.1603773584905661],[886291200000,0.1415094339622641],[888710400000,0.1320754716981132],[891388800000,0.1273584905660377],[893980800000,0.09433962264150944],[896659200000,0.1367924528301887],[899251200000,0.1273584905660377],[901929600000,0.1320754716981132],[904608000000,0.1273584905660377],[907200000000,0.08490566037735849],[909878400000,0.1226415094339623],[912470400000,0.1320754716981132],[915148800000,0.1367924528301887],[917827200000,0.1320754716981132],[920246400000,0.1320754716981132],[922924800000,0.1037735849056604],[925516800000,0.1179245283018868],[928195200000,0.1084905660377358],[930787200000,0.08490566037735849],[933465600000,0.1179245283018868],[936144000000,0.09433962264150944],[938736000000,0.0990566037735849],[941414400000,0.1037735849056604],[944006400000,0.08490566037735849],[946684800000,0.08490566037735849],[949363200000,0.0990566037735849],[951868800000,0.09433962264150944],[954547200000,0.0990566037735849],[957139200000,0.08490566037735849],[959817600000,0.08018867924528303],[962409600000,0.09433962264150944],[965088000000,0.1084905660377358],[967766400000,0.05660377358490567],[970358400000,0.0990566037735849],[973036800000,0.0990566037735849],[975628800000,0.09433962264150944],[978307200000,0.08490566037735849],[980985600000,0.0990566037735849],[983404800000,0.1226415094339623],[986083200000,0.08962264150943398],[988675200000,0.1084905660377358],[991353600000,0.09433962264150944],[993945600000,0.1320754716981132],[996624000000,0.1367924528301887],[999302400000,0.1509433962264151],[1001894400000,0.1556603773584906],[1004572800000,0.1745283018867925],[1007164800000,0.1981132075471698],[1009843200000,0.2075471698113208],[1012521600000,0.2028301886792453],[1014940800000,0.2075471698113208],[1017619200000,0.2311320754716981],[1020211200000,0.2594339622641509],[1022889600000,0.3301886792452831],[1025481600000,0.2311320754716981],[1028160000000,0.2358490566037736],[1030838400000,0.2594339622641509],[1033430400000,0.2641509433962264],[1036108800000,0.2500000000000001],[1038700800000,0.2641509433962264],[1041379200000,0.2641509433962264],[1044057600000,0.2594339622641509],[1046476800000,0.2688679245283019],[1049155200000,0.2924528301886792],[1051747200000,0.2783018867924529],[1054425600000,0.3537735849056604],[1057017600000,0.2971698113207548],[1059696000000,0.2877358490566038],[1062374400000,0.2924528301886792],[1064966400000,0.3018867924528302],[1067644800000,0.2971698113207548],[1070236800000,0.3018867924528302],[1072915200000,0.3113207547169811],[1075593600000,0.2924528301886792],[1078099200000,0.2924528301886792],[1080777600000,0.2594339622641509],[1083369600000,0.2783018867924529],[1086048000000,0.3301886792452831],[1088640000000,0.2311320754716981],[1091318400000,0.2452830188679245],[1093996800000,0.2641509433962264],[1096588800000,0.2594339622641509],[1099267200000,0.2688679245283019],[1101859200000,0.2594339622641509],[1104537600000,0.2547169811320755],[1107216000000,0.2452830188679245],[1109635200000,0.2500000000000001],[1112313600000,0.2358490566037736],[1114905600000,0.2405660377358491],[1117584000000,0.2358490566037736],[1120176000000,0.2264150943396227],[1122854400000,0.2452830188679245],[1125532800000,0.2075471698113208],[1128124800000,0.2169811320754717],[1130803200000,0.2122641509433962],[1133395200000,0.2216981132075471],[1136073600000,0.2169811320754717],[1138752000000,0.2405660377358491],[1141171200000,0.2216981132075471],[1143849600000,0.2075471698113208],[1146441600000,0.2122641509433962],[1149120000000,0.1556603773584906],[1151712000000,0.1886792452830189],[1154390400000,0.2075471698113208],[1157068800000,0.1886792452830189],[1159660800000,0.1839622641509434],[1162339200000,0.2028301886792453],[1164931200000,0.1650943396226415],[1167609600000,0.2028301886792453],[1170288000000,0.2122641509433962],[1172707200000,0.2405660377358491],[1175385600000,0.2169811320754717],[1177977600000,0.1981132075471698],[1180656000000,0.1745283018867925],[1183248000000,0.2216981132075471],[1185926400000,0.2264150943396227],[1188604800000,0.2216981132075471],[1191196800000,0.2075471698113208],[1193875200000,0.2169811320754717],[1196467200000,0.2075471698113208],[1199145600000,0.2358490566037736],[1201824000000,0.2216981132075471],[1204329600000,0.2216981132075471],[1207008000000,0.2547169811320755],[1209600000000,0.1839622641509434],[1212278400000,0.2358490566037736],[1214870400000,0.2688679245283019],[1217548800000,0.2688679245283019],[1220227200000,0.2924528301886792],[1222819200000,0.3018867924528302],[1225497600000,0.2735849056603774],[1228089600000,0.3066037735849056],[1230768000000,0.3160377358490566],[1233446400000,0.3632075471698113],[1235865600000,0.3915094339622642],[1238544000000,0.4292452830188679],[1241136000000,0.4811320754716981],[1243814400000,0.6226415094339622],[1246406400000,0.5660377358490566],[1249084800000,0.5801886792452831],[1251763200000,0.6509433962264152],[1254355200000,0.7028301886792453],[1257033600000,0.7452830188679246],[1259625600000,0.7594339622641511],[1262304000000,0.7547169811320755],[1264982400000,0.75],[1267401600000,0.7735849056603773],[1270080000000,0.8537735849056605],[1272672000000,0.8632075471698114],[1275350400000,1],[1277942400000,0.8632075471698114],[1280620800000,0.8018867924528302],[1283299200000,0.768867924528302],[1285891200000,0.8113207547169812],[1288569600000,0.8018867924528302],[1291161600000,0.8443396226415094],[1293840000000,0.8254716981132075],[1296518400000,0.8066037735849058],[1298937600000,0.8254716981132075],[1301616000000,0.7971698113207547],[1304208000000,0.8301886792452832],[1306886400000,0.8679245283018867],[1309478400000,0.8490566037735849],[1312156800000,0.8679245283018867],[1314835200000,0.8490566037735849],[1317427200000,0.7830188679245284],[1320105600000,0.7924528301886793],[1322697600000,0.7783018867924528],[1325376000000,0.7924528301886793],[1328054400000,0.7405660377358491],[1330560000000,0.7169811320754716],[1333238400000,0.7122641509433963],[1335830400000,0.75],[1338508800000,0.7735849056603773],[1341100800000,0.6367924528301887],[1343779200000,0.6792452830188679],[1346457600000,0.6981132075471699],[1349049600000,0.75],[1351728000000,0.6886792452830189],[1354320000000,0.6462264150943396],[1356998400000,0.5566037735849058],[1359676800000,0.6226415094339622],[1362096000000,0.6415094339622642],[1364774400000,0.6179245283018869],[1367366400000,0.6179245283018869],[1370044800000,0.6132075471698113],[1372636800000,0.5754716981132075],[1375315200000,0.589622641509434],[1377993600000,0.589622641509434],[1380585600000,0.5801886792452831],[1383264000000,0.6179245283018869],[1385856000000,0.6273584905660378],[1388534400000,0.5377358490566038],[1391212800000,0.5613207547169812],[1393632000000,0.5566037735849058],[1396310400000,0.5518867924528301],[1398902400000,0.5],[1401580800000,0.4622641509433963],[1404172800000,0.4292452830188679],[1406851200000,0.419811320754717],[1409529600000,0.4433962264150944],[1412121600000,0.4528301886792453],[1414800000000,0.4245283018867925],[1417392000000,0.419811320754717],[1420070400000,0.4339622641509434],[1422748800000,0.419811320754717],[1425168000000,0.3773584905660378],[1427846400000,0.3537735849056604]]},{\"name\":\"unemploy\",\"type\":\"line\",\"data\":[[-79056000000,0.02044683034656983],[-76377600000,0.02052577563748323],[-73699200000,0.02155206441935738],[-71107200000,0.03615694323833583],[-68428800000,0.03007815583800426],[-65836800000,0.02628878187416121],[-63158400000,0.01523644114628562],[-60480000000,0.02494671192863346],[-57974400000,0.01515749585537223],[-55296000000,0.001894686981921528],[-52704000000,0.004341991000236836],[-50025600000,0.01997315860108944],[-47433600000,0.01563116760085261],[-44755200000,0.006552459145811952],[-42076800000,7.894529091339702e-05],[-39484800000,0.0003157811636535881],[-36806400000,0.002368358727401911],[-34214400000,0],[-31536000000,0.002605194600142102],[-28857600000,0.0005526170363937791],[-26438400000,0.002131522854661719],[-23760000000,0.005763006236677982],[-21168000000,0.002210468145575116],[-18489600000,0.01034183310965501],[-15897600000,0.01444698823715165],[-13219200000,0.01349964474619089],[-10540800000,0.02802557827425594],[-7948800000,0.02873608589247651],[-5270400000,0.01349964474619089],[-2678400000,0.01571011289176601],[0,0.04073577011131286],[2678400000,0.06062998342148891],[5097600000,0.07499802636772716],[7776000000,0.08778716349569748],[10368000000,0.09741848898713192],[13046400000,0.1094181732059683],[15638400000,0.1176284834609616],[18316800000,0.1240230520249467],[20995200000,0.1398121102076261],[23587200000,0.1504697244809347],[26265600000,0.1747059287913476],[28857600000,0.1887581905739323],[31536000000,0.1816531143917265],[34214400000,0.1751006552459146],[36633600000,0.1817320596826399],[39312000000,0.1795215915370648],[41904000000,0.1824425673008605],[44582400000,0.1787321386279308],[47174400000,0.185521433646483],[49852800000,0.1933370174469093],[52531200000,0.1860740506828768],[55123200000,0.1791268650824978],[57801600000,0.195468540301571],[60393600000,0.1949159232651772],[63072000000,0.1842583089918686],[65750400000,0.1770742875187495],[68256000000,0.1857582695192232],[70934400000,0.1795215915370648],[73526400000,0.1766006157732691],[76204800000,0.1766795610641825],[78796800000,0.1758901081550485],[81475200000,0.1779426857187969],[84153600000,0.1708376095365911],[86745600000,0.1728901871003395],[89424000000,0.1513381226809821],[92016000000,0.1466803505170917],[94694400000,0.1295492223888845],[97372800000,0.1394963290439725],[99792000000,0.1349175021709955],[102470400000,0.1400489460803663],[105062400000,0.1297860582616247],[107740800000,0.1324701981526802],[110332800000,0.1278913712797032],[113011200000,0.1278913712797032],[115689600000,0.131443909370806],[118281600000,0.1151811794426462],[120960000000,0.1350753927528223],[123552000000,0.1424173048077682],[126230400000,0.1546538248993448],[128908800000,0.1615220652088103],[131328000000,0.1538643719902108],[134006400000,0.1526012473355964],[136598400000,0.159469487645062],[139276800000,0.1769953422278361],[141868800000,0.1877319017920581],[144547200000,0.1844951448646088],[147225600000,0.2172574405936686],[149817600000,0.2240467356122207],[152496000000,0.2727559801057867],[155088000000,0.3119128443988316],[157766400000,0.38020052103892],[160444800000,0.3817004815662746],[162864000000,0.4178574248046104],[165542400000,0.4361727322965185],[168134400000,0.4537775321702061],[170812800000,0.4369621852056525],[173404800000,0.4296202731507066],[176083200000,0.4139101602589406],[178761600000,0.4135154338043736],[181353600000,0.4114628562406252],[184032000000,0.4033314912765453],[186624000000,0.3993842267308755],[189302400000,0.3828057156390621],[191980800000,0.3663850951290756],[194486400000,0.3588063472013894],[197164800000,0.3667008762927291],[199756800000,0.3448330307097182],[202435200000,0.366069313965422],[205027200000,0.3793321228388727],[207705600000,0.3815425909844478],[210384000000,0.370648140838399],[212976000000,0.3745954053840688],[215654400000,0.3895950106576143],[218246400000,0.3836741138391095],[220924800000,0.3627536117470593],[223603200000,0.375621694165943],[226022400000,0.364885134601721],[228700800000,0.3453067024551986],[231292800000,0.3336227994000158],[233971200000,0.3512275992737033],[236563200000,0.3271492855451172],[239241600000,0.3347280334728033],[241920000000,0.3209915528538723],[244512000000,0.321938896344833],[247190400000,0.3260440514723297],[249782400000,0.2921765216704824],[252460800000,0.3003078866345623],[255139200000,0.2868082418883713],[257558400000,0.2883082024157259],[260236800000,0.2759137917423226],[262828800000,0.2717296913239125],[265507200000,0.2639141075234862],[268099200000,0.2860977342701508],[270777600000,0.2680192626509829],[273456000000,0.2715718007420858],[276048000000,0.2575195389595011],[278726400000,0.2677824267782427],[281318400000,0.2797031657061656],[283996800000,0.2703086760874714],[286675200000,0.2753611747059288],[289094400000,0.2703086760874714],[291772800000,0.2671508644509355],[294364800000,0.2490723928317676],[297043200000,0.2584668824504618],[299635200000,0.2613878582142575],[302313600000,0.2869661324701981],[304992000000,0.2767032446514565],[307584000000,0.2850714454882766],[310262400000,0.2804926186152996],[312854400000,0.2873608589247652],[315532800000,0.3156232730717612],[318211200000,0.3171232335991158],[320716800000,0.3192547564537775],[323395200000,0.3689113444383043],[325987200000,0.4183310965500908],[328665600000,0.427330859714218],[331257600000,0.4482513618062682],[333936000000,0.4417778479513697],[336614400000,0.4212520723138864],[339206400000,0.4265414068050841],[341884800000,0.4214099628957133],[344476800000,0.3973316491671272],[347155200000,0.4251993368595564],[349833600000,0.4236204310412884],[352252800000,0.418173205968264],[354931200000,0.4092523880950502],[357523200000,0.4333307018236362],[360201600000,0.427330859714218],[362793600000,0.4087787163495697],[365472000000,0.4224362516775874],[368150400000,0.4377516381147865],[370742400000,0.4705928791347596],[373420800000,0.5008289255545907],[376012800000,0.5196179047919791],[378691200000,0.5298807926107207],[381369600000,0.554195942212047],[383788800000,0.5691955474855925],[386467200000,0.596747454014368],[389059200000,0.6039314754874872],[391737600000,0.6199573695429068],[394329600000,0.6445093550169733],[397008000000,0.647035604326202],[399686400000,0.6735612220731033],[402278400000,0.6981921528380832],[404956800000,0.7304807768216626],[407548800000,0.7394015946948764],[410227200000,0.6985868792926502],[412905600000,0.6994552774926975],[415324800000,0.6886397726375622],[418003200000,0.6775874319096866],[420595200000,0.6685876687455593],[423273600000,0.6758506355095919],[425865600000,0.6207468224520407],[428544000000,0.6266677192705455],[431222400000,0.5997473750690772],[433814400000,0.5685639851582853],[436492800000,0.5379332122838872],[439084800000,0.5246704034104366],[441763200000,0.4991710744454093],[444441600000,0.4820399463172022],[446947200000,0.4784874082260993],[449625600000,0.4797505328807137],[452217600000,0.4555932738612142],[454896000000,0.4374358569511329],[457488000000,0.4619878424251994],[460166400000,0.4605668271887582],[462844800000,0.4485671429699218],[465436800000,0.4496723770427094],[468115200000,0.4352253888055577],[470707200000,0.4478566353517013],[473385600000,0.4529880792610721],[476064000000,0.4449356595879056],[478483200000,0.4463566748243467],[481161600000,0.450777611115497],[483753600000,0.443435699060551],[486432000000,0.4559090550248678],[489024000000,0.4600931554432778],[491702400000,0.435067498223731],[494380800000,0.4391726533512276],[496972800000,0.4431199178968975],[499651200000,0.42969921844162],[502243200000,0.4304886713507539],[504921600000,0.4034104365674587],[507600000000,0.4513302281518907],[510019200000,0.4498302676245362],[512697600000,0.4483303070971816],[515289600000,0.4542512039156864],[517968000000,0.4596984289887108],[520560000000,0.4447777690060788],[523238400000,0.4302518354780137],[525916800000,0.4440672613878582],[528508800000,0.4387779268966606],[531187200000,0.4321465224599353],[533779200000,0.4103576221678377],[536457600000,0.4110681297860583],[539136000000,0.4089366069313966],[541555200000,0.4086997710586563],[544233600000,0.3834372779663693],[546825600000,0.385963527275598],[549504000000,0.3720691560748401],[552096000000,0.3618062682560985],[554774400000,0.3612536512197048],[557452800000,0.3487013499644746],[560044800000,0.3585695113286492],[562723200000,0.343412015473277],[565315200000,0.3355964316728507],[567993600000,0.3369385016183785],[570672000000,0.3350438146364569],[573177600000,0.3308597142180469],[575856000000,0.3091497592168627],[578448000000,0.3232020209994474],[581126400000,0.3048077682166259],[583718400000,0.3094655403805163],[586396800000,0.3282545196179048],[589075200000,0.3093865950896029],[591667200000,0.3065445646167206],[594345600000,0.3040972605984053],[596937600000,0.3025973000710507],[599616000000,0.3155443277808479],[602294400000,0.2900449988158206],[604713600000,0.2778874240151575],[607392000000,0.2986500355253809],[609984000000,0.291308123470435],[612662400000,0.3072550722349412],[615254400000,0.3007815583800426],[617932800000,0.302044683034657],[620611200000,0.3082813610168154],[623203200000,0.3114391726533512],[625881600000,0.3189389752901239],[628473600000,0.3143601484171469],[631152000000,0.3210704981447857],[633830400000,0.3130970237625326],[636249600000,0.3089129233441225],[638928000000,0.3246230362358885],[641520000000,0.3202810452356517],[644198400000,0.3082813610168154],[646790400000,0.3344911976000632],[649468800000,0.3554906449830267],[652147200000,0.3697007973474382],[654739200000,0.3768848188205574],[657417600000,0.4009631325491435],[660009600000,0.4117786374042788],[662688000000,0.4207784005684061],[665366400000,0.4405147232967553],[667785600000,0.4658561616799558],[670464000000,0.4542512039156864],[673056000000,0.4776979553169654],[675734400000,0.4742243625167759],[678326400000,0.4658561616799558],[681004800000,0.4721717849530275],[683683200000,0.4765927212441778],[686275200000,0.4860661561537854],[688953600000,0.4930922870450777],[691545600000,0.5141706797189548],[694224000000,0.5208810294465935],[696902400000,0.5343806741927845],[699408000000,0.5348543459382648],[702086400000,0.531301807847162],[704678400000,0.5572748085576695],[707356800000,0.580642614668035],[709948800000,0.5656430093944896],[712627200000,0.5606694560669456],[715305600000,0.5601957843214652],[717897600000,0.5299597379016342],[720576000000,0.5431436014841715],[723168000000,0.5425120391568643],[725846400000,0.5241967316649562],[728524800000,0.5129865003552538],[730944000000,0.5029604484092524],[733622400000,0.5072234941185758],[736214400000,0.5103023604641983],[738892800000,0.5080918923186232],[741484800000,0.4930133417541644],[744163200000,0.4798294781716271],[746841600000,0.4759611589168706],[749433600000,0.4788031893897529],[752112000000,0.4623825688797663],[754704000000,0.4572511249703955],[757382400000,0.4693297544801452],[760060800000,0.4656193258072156],[762480000000,0.4566985079340017],[765158400000,0.4457251124970396],[767750400000,0.4128838714770664],[770428800000,0.4138312149680272],[773020800000,0.4153311754953817],[775699200000,0.4143048867135075],[778377600000,0.3985947738217415],[780969600000,0.390542354148575],[783648000000,0.370253414383832],[786240000000,0.3588063472013894],[788918400000,0.370253414383832],[791596800000,0.3554116996921134],[794016000000,0.3527275598010579],[796694400000,0.3915686429304492],[799286400000,0.3745954053840688],[801964800000,0.3743585695113287],[804556800000,0.3822530986026684],[807235200000,0.3788584510933923],[809913600000,0.3783847793479119],[812505600000,0.3665429857109023],[815184000000,0.3742796242204153],[817776000000,0.3740427883476751],[820454400000,0.379411068129786],[823132800000,0.3653588063472014],[825638400000,0.3657535328017684],[828316800000,0.3734112260203679],[830908800000,0.3740427883476751],[833587200000,0.3481487329280809],[836179200000,0.3672534933291229],[838857600000,0.3313333859635273],[841536000000,0.3389910791821268],[844128000000,0.3430962343096234],[846806400000,0.3592800189468698],[849398400000,0.3606220888923976],[852076800000,0.3531222862556249],[854755200000,0.3487013499644746],[857174400000,0.3406489302913081],[859852800000,0.3306228783453067],[862444800000,0.3134128049261862],[865123200000,0.3247809268177153],[867715200000,0.3134128049261862],[870393600000,0.3097023762532565],[873072000000,0.3134917502170996],[875664000000,0.2975448014525934],[878342400000,0.2860187889792374],[880934400000,0.2992815978526881],[883612800000,0.2907555064340412],[886291200000,0.2858608983974106],[888710400000,0.2950185521433646],[891388800000,0.2570458672140207],[893980800000,0.2654140680508408],[896659200000,0.2784400410515513],[899251200000,0.2821504697244809],[901929600000,0.2758348464514092],[904608000000,0.2853872266519302],[907200000000,0.2838083208336623],[909878400000,0.2695981684692508],[912470400000,0.2642298886871398],[915148800000,0.2598089523959896],[917827200000,0.2704665666692982],[920246400000,0.2445725112497039],[922924800000,0.2620194205415647],[925516800000,0.2455988000315781],[928195200000,0.2578353201231546],[930787200000,0.2636772716507461],[933465600000,0.2489145022499408],[936144000000,0.2549932896502723],[938736000000,0.244177784795137],[941414400000,0.2392831767585064],[944006400000,0.2343096234309623],[946684800000,0.2386516144311992],[949363200000,0.2504934080682087],[951868800000,0.2406252467040341],[954547200000,0.2207310333938581],[957139200000,0.242598878976869],[959817600000,0.2341517328491355],[962409600000,0.2417304807768217],[965088000000,0.2500986816136417],[967766400000,0.2320991552853872],[970358400000,0.2249151338122681],[973036800000,0.2332043893581748],[975628800000,0.2328096629036078],[978307200000,0.2635193810689193],[980985600000,0.2687297702692034],[983404800000,0.2728349253967001],[986083200000,0.2830978132154417],[988675200000,0.2795452751243389],[991353600000,0.2999131601799953],[993945600000,0.3077287439804215],[996624000000,0.3439646325096708],[999302400000,0.3518591616010105],[1001894400000,0.3954369621852056],[1004572800000,0.4198310570774453],[1007164800000,0.4399621062603616],[1009843200000,0.4339622641509434],[1012521600000,0.4365674587510855],[1014940800000,0.4435935896423778],[1017619200000,0.46688245046183],[1020211200000,0.4510933922791506],[1022889600000,0.4506197205336702],[1025481600000,0.45038288466093],[1028160000000,0.4435935896423778],[1030838400000,0.4394094892239678],[1033430400000,0.443830425515118],[1036108800000,0.4606457724796716],[1038700800000,0.4701192073892792],[1041379200000,0.4606457724796716],[1044057600000,0.4683824109891845],[1046476800000,0.4660140522617826],[1049155200000,0.4860661561537854],[1051747200000,0.4951448646088261],[1054425600000,0.5195389595010658],[1057017600000,0.4994079103181495],[1059696000000,0.4903292018631089],[1062374400000,0.4923028341359438],[1064966400000,0.4773821741533117],[1067644800000,0.4650667087708218],[1070236800000,0.444619878424252],[1072915200000,0.448803978842662],[1075593600000,0.4327780847872424],[1078099200000,0.4583563590431831],[1080777600000,0.4330149206599826],[1083369600000,0.4363306228783453],[1086048000000,0.4421725744059367],[1088640000000,0.4303307807689271],[1091318400000,0.4188047682955712],[1093996800000,0.4138312149680272],[1096588800000,0.4244098839504223],[1099267200000,0.4142259414225942],[1101859200000,0.4143838320044209],[1104537600000,0.4025420383674114],[1107216000000,0.4180153153864372],[1109635200000,0.3988316096944817],[1112313600000,0.3937001657851109],[1114905600000,0.3920423146759296],[1117584000000,0.3820162627299282],[1120176000000,0.3727007184021473],[1122854400000,0.3678850556564301],[1125532800000,0.3843056761664167],[1128124800000,0.3764111470750769],[1130803200000,0.3853319649482909],[1133395200000,0.3626746664561459],[1136073600000,0.3457014289097655],[1138752000000,0.3551748638193732],[1141171200000,0.3463329912370727],[1143849600000,0.3501223652009158],[1146441600000,0.3390700244730402],[1149120000000,0.3407278755822215],[1151712000000,0.3544643562011526],[1154390400000,0.3478329517644272],[1157068800000,0.3285703007815584],[1159660800000,0.3190968658719507],[1162339200000,0.3305439330543933],[1164931200000,0.3218599510539196],[1167609600000,0.3498065840372622],[1170288000000,0.3348859240546301],[1172707200000,0.3194126470356043],[1175385600000,0.3288071366542986],[1177977600000,0.3221757322175732],[1180656000000,0.3389910791821268],[1183248000000,0.3524117786374043],[1185926400000,0.3459382647825057],[1188604800000,0.3540696297465856],[1191196800000,0.3593589642377832],[1193875200000,0.3595958001105234],[1196467200000,0.3915686429304492],[1199145600000,0.3947264545669851],[1201824000000,0.3798847398752664],[1204329600000,0.4055419594221205],[1207008000000,0.390937080603142],[1209600000000,0.450777611115497],[1212278400000,0.4649877634799084],[1214870400000,0.4935659587905581],[1217548800000,0.53311754953817],[1220227200000,0.5375384858293203],[1222819200000,0.5833267545590906],[1225497600000,0.6199573695429068],[1228089600000,0.6790084471461277],[1230768000000,0.7399542117312702],[1233446400000,0.8062682560985237],[1235865600000,0.8479513697007973],[1238544000000,0.8816610089208179],[1241136000000,0.9326596668508723],[1243814400000,0.9490802873608589],[1246406400000,0.9407120865240388],[1249084800000,0.9575274334885924],[1251763200000,0.9729217652167048],[1254355200000,1],[1257033600000,0.9895002763085182],[1259625600000,0.9799478961079972],[1262304000000,0.9758427409805005],[1264982400000,0.9811320754716981],[1267401600000,0.9881582063629905],[1270080000000,0.9978684771453383],[1272672000000,0.9602905186705613],[1275350400000,0.9306860345780374],[1277942400000,0.9336859556327465],[1280620800000,0.9444225151969685],[1283299200000,0.9389752901239441],[1285891200000,0.9340017367964001],[1288569600000,0.9786058261624694],[1291161600000,0.9207389279229494],[1293840000000,0.8942922554669614],[1296518400000,0.8790558143206758],[1298937600000,0.8725033551748638],[1301616000000,0.8898713191758112],[1304208000000,0.8818188995026447],[1306886400000,0.8902660456303781],[1309478400000,0.8745559327386121],[1312156800000,0.878897923738849],[1314835200000,0.8891608115575906],[1317427200000,0.8612141785742481],[1320105600000,0.8381621536275361],[1322697600000,0.8216625878266361],[1325376000000,0.7982947817162707],[1328054400000,0.799557906370885],[1330560000000,0.7916633772795453],[1333238400000,0.7863740427883477],[1335830400000,0.7874792768611353],[1338508800000,0.7900055261703639],[1341100800000,0.7871634956974817],[1343779200000,0.7725586168785032],[1346457600000,0.7444540933133339],[1349049600000,0.7451646009315545],[1351728000000,0.7357701113128602],[1354320000000,0.7589010815504855],[1356998400000,0.7725586168785032],[1359676800000,0.7314281203126234],[1362096000000,0.7108233993842268],[1364774400000,0.7164285150390779],[1367366400000,0.7080603142022578],[1370044800000,0.7157180074208573],[1372636800000,0.6828767664008842],[1375315200000,0.678455830109734],[1377993600000,0.6777453224915134],[1380585600000,0.6671666535091182],[1383264000000,0.6396147469803426],[1385856000000,0.6093787005605116],[1388534400000,0.5934317517960054],[1391212800000,0.6050367095602748],[1393632000000,0.6074840135785901],[1396310400000,0.5539591063393069],[1398902400000,0.5663535170127102],[1401580800000,0.5348543459382648],[1404172800000,0.5465382489934475],[1406851200000,0.5458277413752269],[1409529600000,0.5192231783374122],[1412121600000,0.4977500592089682],[1414800000000,0.5056445883003079],[1417392000000,0.4761979947896108],[1420070400000,0.4908818188995027],[1422748800000,0.4677508486618773],[1425168000000,0.4593826478250572],[1427846400000,0.4611194442251519]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"title\":{\"text\":\"Rescaled to [0,1]\"}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Format tick labels temperature <- data.frame( month = head(month.name), tp = c(4, -2, 2, 7, 11, 14) ) apex(temperature, aes(month, tp), \"line\") %>% ax_yaxis( labels = list( formatter = htmlwidgets::JS(\"function(value) {return value + '\\u00b0C';}\") ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"tp\",\"type\":\"line\",\"data\":[{\"x\":\"January\",\"y\":4},{\"x\":\"February\",\"y\":-2},{\"x\":\"March\",\"y\":2},{\"x\":\"April\",\"y\":7},{\"x\":\"May\",\"y\":11},{\"x\":\"June\",\"y\":14}]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"},\"formatter\":\"function(value) {return value + '°C';}\"}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"April\",\"max\":\"May\"},\"type\":\"line\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis2.html","id":null,"dir":"Reference","previous_headings":"","what":"Secondary Y-axis options — ax_yaxis2","title":"Secondary Y-axis options — ax_yaxis2","text":"Secondary Y-axis options","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis2.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Secondary Y-axis options — ax_yaxis2","text":"","code":"ax_yaxis2(ax, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis2.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Secondary Y-axis options — ax_yaxis2","text":"ax apexchart() htmlwidget object. ... See arguments ax_yaxis.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis2.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Secondary Y-axis options — ax_yaxis2","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis2.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Secondary Y-axis options — ax_yaxis2","text":"","code":"library(apexcharter) data(\"economics_long\", package = \"ggplot2\") eco <- economics_long %>% subset(variable %in% c(\"pce\", \"pop\")) %>% transform(value = round(value)) # add second y-axis apex(eco, aes(x = date, y = value, color = variable), type = \"line\") %>% ax_yaxis(title = list(text = \"Pce\")) %>% ax_yaxis2(opposite = TRUE, title = list(text = \"Pop\")) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,507],[-76377600000,510],[-73699200000,516],[-71107200000,512],[-68428800000,517],[-65836800000,525],[-63158400000,531],[-60480000000,534],[-57974400000,544],[-55296000000,544],[-52704000000,550],[-50025600000,556],[-47433600000,563],[-44755200000,567],[-42076800000,568],[-39484800000,572],[-36806400000,577],[-34214400000,576],[-31536000000,584],[-28857600000,589],[-26438400000,589],[-23760000000,594],[-21168000000,600],[-18489600000,601],[-15897600000,603],[-13219200000,610],[-10540800000,613],[-7948800000,618],[-5270400000,620],[-2678400000,623],[0,629],[2678400000,634],[5097600000,632],[7776000000,636],[10368000000,642],[13046400000,646],[15638400000,648],[18316800000,653],[20995200000,659],[23587200000,658],[26265600000,657],[28857600000,666],[31536000000,676],[34214400000,679],[36633600000,682],[39312000000,689],[41904000000,691],[44582400000,700],[47174400000,699],[49852800000,705],[52531200000,713],[55123200000,716],[57801600000,721],[60393600000,728],[63072000000,732],[65750400000,736],[68256000000,749],[70934400000,752],[73526400000,758],[76204800000,762],[78796800000,770],[81475200000,776],[84153600000,781],[86745600000,795],[89424000000,800],[92016000000,806],[94694400000,816],[97372800000,826],[99792000000,833],[102470400000,836],[105062400000,842],[107740800000,844],[110332800000,854],[113011200000,853],[115689600000,869],[118281600000,868],[120960000000,877],[123552000000,877],[126230400000,884],[128908800000,890],[131328000000,901],[134006400000,911],[136598400000,922],[139276800000,928],[141868800000,938],[144547200000,955],[147225600000,955],[149817600000,959],[152496000000,956],[155088000000,962],[157766400000,976],[160444800000,989],[162864000000,991],[165542400000,995],[168134400000,1019],[170812800000,1027],[173404800000,1040],[176083200000,1047],[178761600000,1055],[181353600000,1061],[184032000000,1076],[186624000000,1092],[189302400000,1107],[191980800000,1108],[194486400000,1115],[197164800000,1125],[199756800000,1123],[202435200000,1140],[205027200000,1150],[207705600000,1158],[210384000000,1169],[212976000000,1177],[215654400000,1189],[218246400000,1212],[220924800000,1215],[223603200000,1231],[226022400000,1238],[228700800000,1247],[231292800000,1257],[233971200000,1264],[236563200000,1280],[239241600000,1286],[241920000000,1294],[244512000000,1311],[247190400000,1327],[249782400000,1336],[252460800000,1330],[255139200000,1355],[257558400000,1378],[260236800000,1396],[262828800000,1412],[265507200000,1426],[268099200000,1427],[270777600000,1447],[273456000000,1453],[276048000000,1467],[278726400000,1481],[281318400000,1496],[283996800000,1502],[286675200000,1518],[289094400000,1531],[291772800000,1538],[294364800000,1559],[297043200000,1576],[299635200000,1586],[302313600000,1616],[304992000000,1634],[307584000000,1642],[310262400000,1657],[312854400000,1666],[315532800000,1697],[318211200000,1701],[320716800000,1708],[323395200000,1695],[325987200000,1700],[328665600000,1719],[331257600000,1747],[333936000000,1764],[336614400000,1780],[339206400000,1817],[341884800000,1827],[344476800000,1852],[347155200000,1870],[349833600000,1884],[352252800000,1903],[354931200000,1904],[357523200000,1914],[360201600000,1934],[362793600000,1942],[365472000000,1967],[368150400000,1966],[370742400000,1964],[373420800000,1971],[376012800000,1989],[378691200000,1997],[381369600000,2021],[383788800000,2024],[386467200000,2026],[389059200000,2044],[391737600000,2048],[394329600000,2072],[397008000000,2080],[399686400000,2105],[402278400000,2126],[404956800000,2149],[407548800000,2162],[410227200000,2174],[412905600000,2177],[415324800000,2203],[418003200000,2226],[420595200000,2246],[423273600000,2276],[425865600000,2304],[428544000000,2320],[431222400000,2335],[433814400000,2358],[436492800000,2366],[439084800000,2394],[441763200000,2419],[444441600000,2404],[446947200000,2432],[449625600000,2458],[452217600000,2474],[454896000000,2496],[457488000000,2495],[460166400000,2512],[462844800000,2534],[465436800000,2531],[468115200000,2571],[470707200000,2583],[473385600000,2619],[476064000000,2641],[478483200000,2648],[481161600000,2660],[483753600000,2696],[486432000000,2689],[489024000000,2716],[491702400000,2752],[494380800000,2795],[496972800000,2756],[499651200000,2771],[502243200000,2811],[504921600000,2827],[507600000000,2820],[510019200000,2824],[512697600000,2835],[515289600000,2858],[517968000000,2862],[520560000000,2881],[523238400000,2899],[525916800000,2972],[528508800000,2933],[531187200000,2928],[533779200000,2997],[536457600000,2936],[539136000000,3002],[541555200000,3013],[544233600000,3039],[546825600000,3048],[549504000000,3073],[552096000000,3095],[554774400000,3131],[557452800000,3126],[560044800000,3134],[562723200000,3144],[565315200000,3174],[567993600000,3214],[570672000000,3221],[573177600000,3260],[575856000000,3263],[578448000000,3294],[581126400000,3318],[583718400000,3343],[586396800000,3368],[589075200000,3375],[591667200000,3414],[594345600000,3430],[596937600000,3460],[599616000000,3484],[602294400000,3488],[604713600000,3499],[607392000000,3543],[609984000000,3552],[612662400000,3567],[615254400000,3586],[617932800000,3621],[620611200000,3622],[623203200000,3634],[625881600000,3643],[628473600000,3684],[631152000000,3731],[633830400000,3728],[636249600000,3755],[638928000000,3770],[641520000000,3776],[644198400000,3804],[646790400000,3822],[649468800000,3848],[652147200000,3870],[654739200000,3871],[657417600000,3872],[660009600000,3861],[662688000000,3841],[665366400000,3867],[667785600000,3913],[670464000000,3907],[673056000000,3933],[675734400000,3940],[678326400000,3966],[681004800000,3969],[683683200000,3985],[686275200000,3976],[688953600000,4004],[691545600000,4020],[694224000000,4085],[696902400000,4100],[699408000000,4117],[702086400000,4132],[704678400000,4158],[707356800000,4177],[709948800000,4205],[712627200000,4221],[715305600000,4255],[717897600000,4285],[720576000000,4300],[723168000000,4336],[725846400000,4341],[728524800000,4355],[730944000000,4352],[733622400000,4393],[736214400000,4422],[738892800000,4440],[741484800000,4469],[744163200000,4481],[746841600000,4512],[749433600000,4533],[752112000000,4554],[754704000000,4571],[757382400000,4585],[760060800000,4633],[762480000000,4646],[765158400000,4671],[767750400000,4670],[770428800000,4709],[773020800000,4721],[775699200000,4763],[778377600000,4775],[780969600000,4813],[783648000000,4826],[786240000000,4842],[788918400000,4851],[791596800000,4851],[794016000000,4885],[796694400000,4890],[799286400000,4933],[801964800000,4978],[804556800000,4970],[807235200000,5005],[809913600000,5020],[812505600000,5014],[815184000000,5056],[817776000000,5098],[820454400000,5086],[823132800000,5133],[825638400000,5173],[828316800000,5208],[830908800000,5224],[833587200000,5230],[836179200000,5252],[838857600000,5275],[841536000000,5297],[844128000000,5328],[846806400000,5351],[849398400000,5379],[852076800000,5411],[854755200000,5434],[857174400000,5454],[859852800000,5459],[862444800000,5460],[865123200000,5494],[867715200000,5549],[870393600000,5587],[873072000000,5602],[875664000000,5638],[878342400000,5661],[880934400000,5692],[883612800000,5690],[886291200000,5724],[888710400000,5750],[891388800000,5788],[893980800000,5838],[896659200000,5872],[899251200000,5890],[901929600000,5925],[904608000000,5966],[907200000000,5999],[909878400000,6015],[912470400000,6070],[915148800000,6073],[917827200000,6102],[920246400000,6133],[922924800000,6196],[925516800000,6226],[928195200000,6254],[930787200000,6282],[933465600000,6326],[936144000000,6379],[938736000000,6402],[941414400000,6438],[944006400000,6539],[946684800000,6535],[949363200000,6620],[951868800000,6686],[954547200000,6671],[957139200000,6708],[959817600000,6744],[962409600000,6764],[965088000000,6799],[967766400000,6883],[970358400000,6888],[973036800000,6902],[975628800000,6946],[978307200000,6977],[980985600000,6996],[983404800000,6988],[986083200000,7001],[988675200000,7047],[991353600000,7061],[993945600000,7072],[996624000000,7109],[999302400000,7013],[1001894400000,7208],[1004572800000,7168],[1007164800000,7148],[1009843200000,7174],[1012521600000,7218],[1014940800000,7237],[1017619200000,7305],[1020211200000,7283],[1022889600000,7318],[1025481600000,7380],[1028160000000,7402],[1030838400000,7391],[1033430400000,7431],[1036108800000,7460],[1038700800000,7513],[1041379200000,7533],[1044057600000,7536],[1046476800000,7598],[1049155200000,7621],[1051747200000,7628],[1054425600000,7679],[1057017600000,7738],[1059696000000,7834],[1062374400000,7835],[1064966400000,7846],[1067644800000,7900],[1070236800000,7929],[1072915200000,7987],[1075593600000,8020],[1078099200000,8076],[1080777600000,8089],[1083369600000,8163],[1086048000000,8147],[1088640000000,8219],[1091318400000,8253],[1093996800000,8321],[1096588800000,8375],[1099267200000,8421],[1101859200000,8482],[1104537600000,8470],[1107216000000,8529],[1109635200000,8570],[1112313600000,8646],[1114905600000,8644],[1117584000000,8725],[1120176000000,8830],[1122854400000,8832],[1125532800000,8886],[1128124800000,8927],[1130803200000,8938],[1133395200000,8970],[1136073600000,9060],[1138752000000,9090],[1141171200000,9122],[1143849600000,9175],[1146441600000,9215],[1149120000000,9241],[1151712000000,9323],[1154390400000,9322],[1157068800000,9355],[1159660800000,9373],[1162339200000,9380],[1164931200000,9469],[1167609600000,9516],[1170288000000,9547],[1172707200000,9585],[1175385600000,9616],[1177977600000,9651],[1180656000000,9667],[1183248000000,9710],[1185926400000,9754],[1188604800000,9798],[1191196800000,9827],[1193875200000,9898],[1196467200000,9908],[1199145600000,9930],[1201824000000,9913],[1204329600000,9959],[1207008000000,9997],[1209600000000,10054],[1212278400000,10108],[1214870400000,10105],[1217548800000,10095],[1220227200000,10044],[1222819200000,9960],[1225497600000,9821],[1228089600000,9731],[1230768000000,9784],[1233446400000,9766],[1235865600000,9718],[1238544000000,9725],[1241136000000,9749],[1243814400000,9807],[1246406400000,9842],[1249084800000,9961],[1251763200000,9883],[1254355200000,9932],[1257033600000,9940],[1259625600000,9999],[1262304000000,10002],[1264982400000,10031],[1267401600000,10089],[1270080000000,10113],[1272672000000,10131],[1275350400000,10151],[1277942400000,10185],[1280620800000,10228],[1283299200000,10249],[1285891200000,10305],[1288569600000,10355],[1291161600000,10392],[1293840000000,10436],[1296518400000,10470],[1298937600000,10550],[1301616000000,10588],[1304208000000,10612],[1306886400000,10637],[1309478400000,10678],[1312156800000,10701],[1314835200000,10738],[1317427200000,10753],[1320105600000,10760],[1322697600000,10772],[1325376000000,10862],[1328054400000,10954],[1330560000000,10952],[1333238400000,10980],[1335830400000,10969],[1338508800000,10946],[1341100800000,10977],[1343779200000,11004],[1346457600000,11062],[1349049600000,11100],[1351728000000,11137],[1354320000000,11140],[1356998400000,11203],[1359676800000,11240],[1362096000000,11227],[1364774400000,11205],[1367366400000,11245],[1370044800000,11269],[1372636800000,11297],[1375315200000,11329],[1377993600000,11367],[1380585600000,11420],[1383264000000,11488],[1385856000000,11518],[1388534400000,11512],[1391212800000,11566],[1393632000000,11643],[1396310400000,11703],[1398902400000,11748],[1401580800000,11817],[1404172800000,11860],[1406851200000,11944],[1409529600000,11957],[1412121600000,12023],[1414800000000,12051],[1417392000000,12062],[1420070400000,12046],[1422748800000,12082],[1425168000000,12158],[1427846400000,12194]]},{\"name\":\"pop\",\"type\":\"line\",\"data\":[[-79056000000,198712],[-76377600000,198911],[-73699200000,199113],[-71107200000,199311],[-68428800000,199498],[-65836800000,199657],[-63158400000,199808],[-60480000000,199920],[-57974400000,200056],[-55296000000,200208],[-52704000000,200361],[-50025600000,200536],[-47433600000,200706],[-44755200000,200898],[-42076800000,201095],[-39484800000,201290],[-36806400000,201466],[-34214400000,201621],[-31536000000,201760],[-28857600000,201881],[-26438400000,202023],[-23760000000,202161],[-21168000000,202331],[-18489600000,202507],[-15897600000,202677],[-13219200000,202877],[-10540800000,203090],[-7948800000,203302],[-5270400000,203500],[-2678400000,203675],[0,203849],[2678400000,204008],[5097600000,204156],[7776000000,204401],[10368000000,204607],[13046400000,204830],[15638400000,205052],[18316800000,205295],[20995200000,205540],[23587200000,205788],[26265600000,206024],[28857600000,206238],[31536000000,206466],[34214400000,206668],[36633600000,206855],[39312000000,207065],[41904000000,207260],[44582400000,207462],[47174400000,207661],[49852800000,207881],[52531200000,208114],[55123200000,208345],[57801600000,208555],[60393600000,208740],[63072000000,208917],[65750400000,209061],[68256000000,209212],[70934400000,209386],[73526400000,209545],[76204800000,209725],[78796800000,209896],[81475200000,210075],[84153600000,210278],[86745600000,210479],[89424000000,210656],[92016000000,210821],[94694400000,210985],[97372800000,211120],[99792000000,211254],[102470400000,211420],[105062400000,211577],[107740800000,211746],[110332800000,211909],[113011200000,212092],[115689600000,212289],[118281600000,212475],[120960000000,212634],[123552000000,212785],[126230400000,212932],[128908800000,213074],[131328000000,213211],[134006400000,213361],[136598400000,213513],[139276800000,213686],[141868800000,213854],[144547200000,214042],[147225600000,214246],[149817600000,214451],[152496000000,214625],[155088000000,214782],[157766400000,214931],[160444800000,215065],[162864000000,215198],[165542400000,215353],[168134400000,215523],[170812800000,215768],[173404800000,215973],[176083200000,216195],[178761600000,216393],[181353600000,216587],[184032000000,216771],[186624000000,216931],[189302400000,217095],[191980800000,217249],[194486400000,217381],[197164800000,217528],[199756800000,217685],[202435200000,217861],[205027200000,218035],[207705600000,218233],[210384000000,218440],[212976000000,218644],[215654400000,218834],[218246400000,219006],[220924800000,219179],[223603200000,219344],[226022400000,219504],[228700800000,219684],[231292800000,219859],[233971200000,220046],[236563200000,220239],[239241600000,220458],[241920000000,220688],[244512000000,220904],[247190400000,221109],[249782400000,221303],[252460800000,221477],[255139200000,221629],[257558400000,221792],[260236800000,221991],[262828800000,222176],[265507200000,222379],[268099200000,222585],[270777600000,222805],[273456000000,223053],[276048000000,223271],[278726400000,223477],[281318400000,223670],[283996800000,223865],[286675200000,224053],[289094400000,224235],[291772800000,224438],[294364800000,224632],[297043200000,224843],[299635200000,225055],[302313600000,225295],[304992000000,225547],[307584000000,225801],[310262400000,226027],[312854400000,226243],[315532800000,226451],[318211200000,226656],[320716800000,226849],[323395200000,227061],[325987200000,227251],[328665600000,227522],[331257600000,227726],[333936000000,227953],[336614400000,228186],[339206400000,228417],[341884800000,228612],[344476800000,228779],[347155200000,228937],[349833600000,229071],[352252800000,229224],[354931200000,229403],[357523200000,229575],[360201600000,229761],[362793600000,229966],[365472000000,230187],[368150400000,230412],[370742400000,230641],[373420800000,230822],[376012800000,230989],[378691200000,231157],[381369600000,231313],[383788800000,231470],[386467200000,231645],[389059200000,231809],[391737600000,231992],[394329600000,232188],[397008000000,232392],[399686400000,232599],[402278400000,232816],[404956800000,232993],[407548800000,233160],[410227200000,233322],[412905600000,233473],[415324800000,233613],[418003200000,233781],[420595200000,233922],[423273600000,234118],[425865600000,234307],[428544000000,234501],[431222400000,234701],[433814400000,234907],[436492800000,235078],[439084800000,235235],[441763200000,235385],[444441600000,235527],[446947200000,235675],[449625600000,235839],[452217600000,235993],[454896000000,236160],[457488000000,236348],[460166400000,236549],[462844800000,236760],[465436800000,236976],[468115200000,237159],[470707200000,237316],[473385600000,237468],[476064000000,237602],[478483200000,237732],[481161600000,237900],[483753600000,238074],[486432000000,238270],[489024000000,238466],[491702400000,238679],[494380800000,238898],[496972800000,239113],[499651200000,239307],[502243200000,239477],[504921600000,239638],[507600000000,239788],[510019200000,239928],[512697600000,240094],[515289600000,240271],[517968000000,240459],[520560000000,240651],[523238400000,240854],[525916800000,241068],[528508800000,241274],[531187200000,241467],[533779200000,241620],[536457600000,241784],[539136000000,241930],[541555200000,242079],[544233600000,242252],[546825600000,242423],[549504000000,242608],[552096000000,242804],[554774400000,243012],[557452800000,243223],[560044800000,243446],[562723200000,243639],[565315200000,243809],[567993600000,243981],[570672000000,244131],[573177600000,244279],[575856000000,244445],[578448000000,244610],[581126400000,244806],[583718400000,245021],[586396800000,245240],[589075200000,245464],[591667200000,245693],[594345600000,245884],[596937600000,246056],[599616000000,246224],[602294400000,246378],[604713600000,246530],[607392000000,246721],[609984000000,246906],[612662400000,247114],[615254400000,247342],[617932800000,247573],[620611200000,247816],[623203200000,248067],[625881600000,248281],[628473600000,248479],[631152000000,248659],[633830400000,248827],[636249600000,249012],[638928000000,249306],[641520000000,249565],[644198400000,249849],[646790400000,250132],[649468800000,250439],[652147200000,250751],[654739200000,251057],[657417600000,251346],[660009600000,251626],[662688000000,251889],[665366400000,252135],[667785600000,252372],[670464000000,252643],[673056000000,252913],[675734400000,253207],[678326400000,253493],[681004800000,253807],[683683200000,254126],[686275200000,254435],[688953600000,254718],[691545600000,254964],[694224000000,255214],[696902400000,255448],[699408000000,255703],[702086400000,255992],[704678400000,256285],[707356800000,256589],[709948800000,256894],[712627200000,257232],[715305600000,257548],[717897600000,257861],[720576000000,258147],[723168000000,258413],[725846400000,258679],[728524800000,258919],[730944000000,259152],[733622400000,259414],[736214400000,259680],[738892800000,259963],[741484800000,260255],[744163200000,260566],[746841600000,260867],[749433600000,261163],[752112000000,261425],[754704000000,261674],[757382400000,261919],[760060800000,262123],[762480000000,262352],[765158400000,262631],[767750400000,262877],[770428800000,263152],[773020800000,263436],[775699200000,263724],[778377600000,264017],[780969600000,264301],[783648000000,264559],[786240000000,264804],[788918400000,265044],[791596800000,265270],[794016000000,265495],[796694400000,265755],[799286400000,265998],[801964800000,266270],[804556800000,266557],[807235200000,266843],[809913600000,267152],[812505600000,267456],[815184000000,267715],[817776000000,267943],[820454400000,268151],[823132800000,268364],[825638400000,268595],[828316800000,268853],[830908800000,269108],[833587200000,269386],[836179200000,269667],[838857600000,269976],[841536000000,270284],[844128000000,270581],[846806400000,270878],[849398400000,271125],[852076800000,271360],[854755200000,271585],[857174400000,271821],[859852800000,272083],[862444800000,272342],[865123200000,272622],[867715200000,272912],[870393600000,273237],[873072000000,273553],[875664000000,273852],[878342400000,274126],[880934400000,274372],[883612800000,274626],[886291200000,274838],[888710400000,275047],[891388800000,275304],[893980800000,275564],[896659200000,275836],[899251200000,276115],[901929600000,276418],[904608000000,276714],[907200000000,277003],[909878400000,277277],[912470400000,277526],[915148800000,277790],[917827200000,277992],[920246400000,278198],[922924800000,278451],[925516800000,278717],[928195200000,279001],[930787200000,279295],[933465600000,279602],[936144000000,279903],[938736000000,280203],[941414400000,280471],[944006400000,280716],[946684800000,280976],[949363200000,281190],[951868800000,281409],[954547200000,281653],[957139200000,281877],[959817600000,282126],[962409600000,282385],[965088000000,282653],[967766400000,282932],[970358400000,283201],[973036800000,283453],[975628800000,283696],[978307200000,283920],[980985600000,284137],[983404800000,284350],[986083200000,284581],[988675200000,284810],[991353600000,285062],[993945600000,285309],[996624000000,285570],[999302400000,285843],[1001894400000,286098],[1004572800000,286341],[1007164800000,286570],[1009843200000,286788],[1012521600000,286994],[1014940800000,287190],[1017619200000,287397],[1020211200000,287623],[1022889600000,287864],[1025481600000,288105],[1028160000000,288360],[1030838400000,288618],[1033430400000,288870],[1036108800000,289106],[1038700800000,289313],[1041379200000,289518],[1044057600000,289714],[1046476800000,289911],[1049155200000,290125],[1051747200000,290346],[1054425600000,290584],[1057017600000,290820],[1059696000000,291072],[1062374400000,291321],[1064966400000,291574],[1067644800000,291807],[1070236800000,292008],[1072915200000,292192],[1075593600000,292368],[1078099200000,292561],[1080777600000,292779],[1083369600000,292997],[1086048000000,293223],[1088640000000,293463],[1091318400000,293719],[1093996800000,293971],[1096588800000,294230],[1099267200000,294466],[1101859200000,294694],[1104537600000,294914],[1107216000000,295105],[1109635200000,295287],[1112313600000,295490],[1114905600000,295704],[1117584000000,295936],[1120176000000,296186],[1122854400000,296440],[1125532800000,296707],[1128124800000,296972],[1130803200000,297207],[1133395200000,297431],[1136073600000,297647],[1138752000000,297854],[1141171200000,298060],[1143849600000,298281],[1146441600000,298496],[1149120000000,298739],[1151712000000,298996],[1154390400000,299263],[1157068800000,299554],[1159660800000,299835],[1162339200000,300094],[1164931200000,300340],[1167609600000,300574],[1170288000000,300802],[1172707200000,301021],[1175385600000,301254],[1177977600000,301483],[1180656000000,301739],[1183248000000,302004],[1185926400000,302267],[1188604800000,302546],[1191196800000,302807],[1193875200000,303054],[1196467200000,303287],[1199145600000,303506],[1201824000000,303711],[1204329600000,303907],[1207008000000,304117],[1209600000000,304323],[1212278400000,304556],[1214870400000,304798],[1217548800000,305045],[1220227200000,305309],[1222819200000,305554],[1225497600000,305786],[1228089600000,306004],[1230768000000,306208],[1233446400000,306402],[1235865600000,306588],[1238544000000,306787],[1241136000000,306984],[1243814400000,307206],[1246406400000,307439],[1249084800000,307685],[1251763200000,307946],[1254355200000,308189],[1257033600000,308418],[1259625600000,308633],[1262304000000,308833],[1264982400000,309027],[1267401600000,309212],[1270080000000,309191],[1272672000000,309369],[1275350400000,309549],[1277942400000,309746],[1280620800000,309958],[1283299200000,310176],[1285891200000,310400],[1288569600000,310596],[1291161600000,310782],[1293840000000,310961],[1296518400000,311113],[1298937600000,311265],[1301616000000,311436],[1304208000000,311607],[1306886400000,311791],[1309478400000,311997],[1312156800000,312205],[1314835200000,312429],[1317427200000,312644],[1320105600000,312830],[1322697600000,313010],[1325376000000,313183],[1328054400000,313339],[1330560000000,313499],[1333238400000,313667],[1335830400000,313831],[1338508800000,314018],[1341100800000,314211],[1343779200000,314422],[1346457600000,314647],[1349049600000,314854],[1351728000000,315054],[1354320000000,315233],[1356998400000,315390],[1359676800000,315520],[1362096000000,315662],[1364774400000,315818],[1367366400000,315984],[1370044800000,316171],[1372636800000,316359],[1375315200000,316580],[1377993600000,316806],[1380585600000,317022],[1383264000000,317228],[1385856000000,317412],[1388534400000,317594],[1391212800000,317754],[1393632000000,317917],[1396310400000,318089],[1398902400000,318270],[1401580800000,318464],[1404172800000,318662],[1406851200000,318894],[1409529600000,319125],[1412121600000,319354],[1414800000000,319564],[1417392000000,319746],[1420070400000,319929],[1422748800000,320075],[1425168000000,320231],[1427846400000,320402]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":[{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"title\":{\"text\":\"Pce\"}},{\"opposite\":true,\"title\":{\"text\":\"Pop\"}}]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Customize axis a bit more apex(eco, aes(x = date, y = value, color = variable), type = \"line\") %>% ax_yaxis( title = list(text = \"Pce\"), axisBorder = list( show = TRUE, color = \"#008FFB\" ), labels = list( style = list( colors = \"#008FFB\" ) ), tooltip = list( enabled = TRUE ) ) %>% ax_yaxis2( opposite = TRUE, min = 160000, forceNiceScale = TRUE, title = list(text = \"Pop\"), axisBorder = list( show = TRUE, color = \"#00E396\" ), labels = list( style = list( colors = \"#00E396\" ) ), tooltip = list( enabled = TRUE ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,507],[-76377600000,510],[-73699200000,516],[-71107200000,512],[-68428800000,517],[-65836800000,525],[-63158400000,531],[-60480000000,534],[-57974400000,544],[-55296000000,544],[-52704000000,550],[-50025600000,556],[-47433600000,563],[-44755200000,567],[-42076800000,568],[-39484800000,572],[-36806400000,577],[-34214400000,576],[-31536000000,584],[-28857600000,589],[-26438400000,589],[-23760000000,594],[-21168000000,600],[-18489600000,601],[-15897600000,603],[-13219200000,610],[-10540800000,613],[-7948800000,618],[-5270400000,620],[-2678400000,623],[0,629],[2678400000,634],[5097600000,632],[7776000000,636],[10368000000,642],[13046400000,646],[15638400000,648],[18316800000,653],[20995200000,659],[23587200000,658],[26265600000,657],[28857600000,666],[31536000000,676],[34214400000,679],[36633600000,682],[39312000000,689],[41904000000,691],[44582400000,700],[47174400000,699],[49852800000,705],[52531200000,713],[55123200000,716],[57801600000,721],[60393600000,728],[63072000000,732],[65750400000,736],[68256000000,749],[70934400000,752],[73526400000,758],[76204800000,762],[78796800000,770],[81475200000,776],[84153600000,781],[86745600000,795],[89424000000,800],[92016000000,806],[94694400000,816],[97372800000,826],[99792000000,833],[102470400000,836],[105062400000,842],[107740800000,844],[110332800000,854],[113011200000,853],[115689600000,869],[118281600000,868],[120960000000,877],[123552000000,877],[126230400000,884],[128908800000,890],[131328000000,901],[134006400000,911],[136598400000,922],[139276800000,928],[141868800000,938],[144547200000,955],[147225600000,955],[149817600000,959],[152496000000,956],[155088000000,962],[157766400000,976],[160444800000,989],[162864000000,991],[165542400000,995],[168134400000,1019],[170812800000,1027],[173404800000,1040],[176083200000,1047],[178761600000,1055],[181353600000,1061],[184032000000,1076],[186624000000,1092],[189302400000,1107],[191980800000,1108],[194486400000,1115],[197164800000,1125],[199756800000,1123],[202435200000,1140],[205027200000,1150],[207705600000,1158],[210384000000,1169],[212976000000,1177],[215654400000,1189],[218246400000,1212],[220924800000,1215],[223603200000,1231],[226022400000,1238],[228700800000,1247],[231292800000,1257],[233971200000,1264],[236563200000,1280],[239241600000,1286],[241920000000,1294],[244512000000,1311],[247190400000,1327],[249782400000,1336],[252460800000,1330],[255139200000,1355],[257558400000,1378],[260236800000,1396],[262828800000,1412],[265507200000,1426],[268099200000,1427],[270777600000,1447],[273456000000,1453],[276048000000,1467],[278726400000,1481],[281318400000,1496],[283996800000,1502],[286675200000,1518],[289094400000,1531],[291772800000,1538],[294364800000,1559],[297043200000,1576],[299635200000,1586],[302313600000,1616],[304992000000,1634],[307584000000,1642],[310262400000,1657],[312854400000,1666],[315532800000,1697],[318211200000,1701],[320716800000,1708],[323395200000,1695],[325987200000,1700],[328665600000,1719],[331257600000,1747],[333936000000,1764],[336614400000,1780],[339206400000,1817],[341884800000,1827],[344476800000,1852],[347155200000,1870],[349833600000,1884],[352252800000,1903],[354931200000,1904],[357523200000,1914],[360201600000,1934],[362793600000,1942],[365472000000,1967],[368150400000,1966],[370742400000,1964],[373420800000,1971],[376012800000,1989],[378691200000,1997],[381369600000,2021],[383788800000,2024],[386467200000,2026],[389059200000,2044],[391737600000,2048],[394329600000,2072],[397008000000,2080],[399686400000,2105],[402278400000,2126],[404956800000,2149],[407548800000,2162],[410227200000,2174],[412905600000,2177],[415324800000,2203],[418003200000,2226],[420595200000,2246],[423273600000,2276],[425865600000,2304],[428544000000,2320],[431222400000,2335],[433814400000,2358],[436492800000,2366],[439084800000,2394],[441763200000,2419],[444441600000,2404],[446947200000,2432],[449625600000,2458],[452217600000,2474],[454896000000,2496],[457488000000,2495],[460166400000,2512],[462844800000,2534],[465436800000,2531],[468115200000,2571],[470707200000,2583],[473385600000,2619],[476064000000,2641],[478483200000,2648],[481161600000,2660],[483753600000,2696],[486432000000,2689],[489024000000,2716],[491702400000,2752],[494380800000,2795],[496972800000,2756],[499651200000,2771],[502243200000,2811],[504921600000,2827],[507600000000,2820],[510019200000,2824],[512697600000,2835],[515289600000,2858],[517968000000,2862],[520560000000,2881],[523238400000,2899],[525916800000,2972],[528508800000,2933],[531187200000,2928],[533779200000,2997],[536457600000,2936],[539136000000,3002],[541555200000,3013],[544233600000,3039],[546825600000,3048],[549504000000,3073],[552096000000,3095],[554774400000,3131],[557452800000,3126],[560044800000,3134],[562723200000,3144],[565315200000,3174],[567993600000,3214],[570672000000,3221],[573177600000,3260],[575856000000,3263],[578448000000,3294],[581126400000,3318],[583718400000,3343],[586396800000,3368],[589075200000,3375],[591667200000,3414],[594345600000,3430],[596937600000,3460],[599616000000,3484],[602294400000,3488],[604713600000,3499],[607392000000,3543],[609984000000,3552],[612662400000,3567],[615254400000,3586],[617932800000,3621],[620611200000,3622],[623203200000,3634],[625881600000,3643],[628473600000,3684],[631152000000,3731],[633830400000,3728],[636249600000,3755],[638928000000,3770],[641520000000,3776],[644198400000,3804],[646790400000,3822],[649468800000,3848],[652147200000,3870],[654739200000,3871],[657417600000,3872],[660009600000,3861],[662688000000,3841],[665366400000,3867],[667785600000,3913],[670464000000,3907],[673056000000,3933],[675734400000,3940],[678326400000,3966],[681004800000,3969],[683683200000,3985],[686275200000,3976],[688953600000,4004],[691545600000,4020],[694224000000,4085],[696902400000,4100],[699408000000,4117],[702086400000,4132],[704678400000,4158],[707356800000,4177],[709948800000,4205],[712627200000,4221],[715305600000,4255],[717897600000,4285],[720576000000,4300],[723168000000,4336],[725846400000,4341],[728524800000,4355],[730944000000,4352],[733622400000,4393],[736214400000,4422],[738892800000,4440],[741484800000,4469],[744163200000,4481],[746841600000,4512],[749433600000,4533],[752112000000,4554],[754704000000,4571],[757382400000,4585],[760060800000,4633],[762480000000,4646],[765158400000,4671],[767750400000,4670],[770428800000,4709],[773020800000,4721],[775699200000,4763],[778377600000,4775],[780969600000,4813],[783648000000,4826],[786240000000,4842],[788918400000,4851],[791596800000,4851],[794016000000,4885],[796694400000,4890],[799286400000,4933],[801964800000,4978],[804556800000,4970],[807235200000,5005],[809913600000,5020],[812505600000,5014],[815184000000,5056],[817776000000,5098],[820454400000,5086],[823132800000,5133],[825638400000,5173],[828316800000,5208],[830908800000,5224],[833587200000,5230],[836179200000,5252],[838857600000,5275],[841536000000,5297],[844128000000,5328],[846806400000,5351],[849398400000,5379],[852076800000,5411],[854755200000,5434],[857174400000,5454],[859852800000,5459],[862444800000,5460],[865123200000,5494],[867715200000,5549],[870393600000,5587],[873072000000,5602],[875664000000,5638],[878342400000,5661],[880934400000,5692],[883612800000,5690],[886291200000,5724],[888710400000,5750],[891388800000,5788],[893980800000,5838],[896659200000,5872],[899251200000,5890],[901929600000,5925],[904608000000,5966],[907200000000,5999],[909878400000,6015],[912470400000,6070],[915148800000,6073],[917827200000,6102],[920246400000,6133],[922924800000,6196],[925516800000,6226],[928195200000,6254],[930787200000,6282],[933465600000,6326],[936144000000,6379],[938736000000,6402],[941414400000,6438],[944006400000,6539],[946684800000,6535],[949363200000,6620],[951868800000,6686],[954547200000,6671],[957139200000,6708],[959817600000,6744],[962409600000,6764],[965088000000,6799],[967766400000,6883],[970358400000,6888],[973036800000,6902],[975628800000,6946],[978307200000,6977],[980985600000,6996],[983404800000,6988],[986083200000,7001],[988675200000,7047],[991353600000,7061],[993945600000,7072],[996624000000,7109],[999302400000,7013],[1001894400000,7208],[1004572800000,7168],[1007164800000,7148],[1009843200000,7174],[1012521600000,7218],[1014940800000,7237],[1017619200000,7305],[1020211200000,7283],[1022889600000,7318],[1025481600000,7380],[1028160000000,7402],[1030838400000,7391],[1033430400000,7431],[1036108800000,7460],[1038700800000,7513],[1041379200000,7533],[1044057600000,7536],[1046476800000,7598],[1049155200000,7621],[1051747200000,7628],[1054425600000,7679],[1057017600000,7738],[1059696000000,7834],[1062374400000,7835],[1064966400000,7846],[1067644800000,7900],[1070236800000,7929],[1072915200000,7987],[1075593600000,8020],[1078099200000,8076],[1080777600000,8089],[1083369600000,8163],[1086048000000,8147],[1088640000000,8219],[1091318400000,8253],[1093996800000,8321],[1096588800000,8375],[1099267200000,8421],[1101859200000,8482],[1104537600000,8470],[1107216000000,8529],[1109635200000,8570],[1112313600000,8646],[1114905600000,8644],[1117584000000,8725],[1120176000000,8830],[1122854400000,8832],[1125532800000,8886],[1128124800000,8927],[1130803200000,8938],[1133395200000,8970],[1136073600000,9060],[1138752000000,9090],[1141171200000,9122],[1143849600000,9175],[1146441600000,9215],[1149120000000,9241],[1151712000000,9323],[1154390400000,9322],[1157068800000,9355],[1159660800000,9373],[1162339200000,9380],[1164931200000,9469],[1167609600000,9516],[1170288000000,9547],[1172707200000,9585],[1175385600000,9616],[1177977600000,9651],[1180656000000,9667],[1183248000000,9710],[1185926400000,9754],[1188604800000,9798],[1191196800000,9827],[1193875200000,9898],[1196467200000,9908],[1199145600000,9930],[1201824000000,9913],[1204329600000,9959],[1207008000000,9997],[1209600000000,10054],[1212278400000,10108],[1214870400000,10105],[1217548800000,10095],[1220227200000,10044],[1222819200000,9960],[1225497600000,9821],[1228089600000,9731],[1230768000000,9784],[1233446400000,9766],[1235865600000,9718],[1238544000000,9725],[1241136000000,9749],[1243814400000,9807],[1246406400000,9842],[1249084800000,9961],[1251763200000,9883],[1254355200000,9932],[1257033600000,9940],[1259625600000,9999],[1262304000000,10002],[1264982400000,10031],[1267401600000,10089],[1270080000000,10113],[1272672000000,10131],[1275350400000,10151],[1277942400000,10185],[1280620800000,10228],[1283299200000,10249],[1285891200000,10305],[1288569600000,10355],[1291161600000,10392],[1293840000000,10436],[1296518400000,10470],[1298937600000,10550],[1301616000000,10588],[1304208000000,10612],[1306886400000,10637],[1309478400000,10678],[1312156800000,10701],[1314835200000,10738],[1317427200000,10753],[1320105600000,10760],[1322697600000,10772],[1325376000000,10862],[1328054400000,10954],[1330560000000,10952],[1333238400000,10980],[1335830400000,10969],[1338508800000,10946],[1341100800000,10977],[1343779200000,11004],[1346457600000,11062],[1349049600000,11100],[1351728000000,11137],[1354320000000,11140],[1356998400000,11203],[1359676800000,11240],[1362096000000,11227],[1364774400000,11205],[1367366400000,11245],[1370044800000,11269],[1372636800000,11297],[1375315200000,11329],[1377993600000,11367],[1380585600000,11420],[1383264000000,11488],[1385856000000,11518],[1388534400000,11512],[1391212800000,11566],[1393632000000,11643],[1396310400000,11703],[1398902400000,11748],[1401580800000,11817],[1404172800000,11860],[1406851200000,11944],[1409529600000,11957],[1412121600000,12023],[1414800000000,12051],[1417392000000,12062],[1420070400000,12046],[1422748800000,12082],[1425168000000,12158],[1427846400000,12194]]},{\"name\":\"pop\",\"type\":\"line\",\"data\":[[-79056000000,198712],[-76377600000,198911],[-73699200000,199113],[-71107200000,199311],[-68428800000,199498],[-65836800000,199657],[-63158400000,199808],[-60480000000,199920],[-57974400000,200056],[-55296000000,200208],[-52704000000,200361],[-50025600000,200536],[-47433600000,200706],[-44755200000,200898],[-42076800000,201095],[-39484800000,201290],[-36806400000,201466],[-34214400000,201621],[-31536000000,201760],[-28857600000,201881],[-26438400000,202023],[-23760000000,202161],[-21168000000,202331],[-18489600000,202507],[-15897600000,202677],[-13219200000,202877],[-10540800000,203090],[-7948800000,203302],[-5270400000,203500],[-2678400000,203675],[0,203849],[2678400000,204008],[5097600000,204156],[7776000000,204401],[10368000000,204607],[13046400000,204830],[15638400000,205052],[18316800000,205295],[20995200000,205540],[23587200000,205788],[26265600000,206024],[28857600000,206238],[31536000000,206466],[34214400000,206668],[36633600000,206855],[39312000000,207065],[41904000000,207260],[44582400000,207462],[47174400000,207661],[49852800000,207881],[52531200000,208114],[55123200000,208345],[57801600000,208555],[60393600000,208740],[63072000000,208917],[65750400000,209061],[68256000000,209212],[70934400000,209386],[73526400000,209545],[76204800000,209725],[78796800000,209896],[81475200000,210075],[84153600000,210278],[86745600000,210479],[89424000000,210656],[92016000000,210821],[94694400000,210985],[97372800000,211120],[99792000000,211254],[102470400000,211420],[105062400000,211577],[107740800000,211746],[110332800000,211909],[113011200000,212092],[115689600000,212289],[118281600000,212475],[120960000000,212634],[123552000000,212785],[126230400000,212932],[128908800000,213074],[131328000000,213211],[134006400000,213361],[136598400000,213513],[139276800000,213686],[141868800000,213854],[144547200000,214042],[147225600000,214246],[149817600000,214451],[152496000000,214625],[155088000000,214782],[157766400000,214931],[160444800000,215065],[162864000000,215198],[165542400000,215353],[168134400000,215523],[170812800000,215768],[173404800000,215973],[176083200000,216195],[178761600000,216393],[181353600000,216587],[184032000000,216771],[186624000000,216931],[189302400000,217095],[191980800000,217249],[194486400000,217381],[197164800000,217528],[199756800000,217685],[202435200000,217861],[205027200000,218035],[207705600000,218233],[210384000000,218440],[212976000000,218644],[215654400000,218834],[218246400000,219006],[220924800000,219179],[223603200000,219344],[226022400000,219504],[228700800000,219684],[231292800000,219859],[233971200000,220046],[236563200000,220239],[239241600000,220458],[241920000000,220688],[244512000000,220904],[247190400000,221109],[249782400000,221303],[252460800000,221477],[255139200000,221629],[257558400000,221792],[260236800000,221991],[262828800000,222176],[265507200000,222379],[268099200000,222585],[270777600000,222805],[273456000000,223053],[276048000000,223271],[278726400000,223477],[281318400000,223670],[283996800000,223865],[286675200000,224053],[289094400000,224235],[291772800000,224438],[294364800000,224632],[297043200000,224843],[299635200000,225055],[302313600000,225295],[304992000000,225547],[307584000000,225801],[310262400000,226027],[312854400000,226243],[315532800000,226451],[318211200000,226656],[320716800000,226849],[323395200000,227061],[325987200000,227251],[328665600000,227522],[331257600000,227726],[333936000000,227953],[336614400000,228186],[339206400000,228417],[341884800000,228612],[344476800000,228779],[347155200000,228937],[349833600000,229071],[352252800000,229224],[354931200000,229403],[357523200000,229575],[360201600000,229761],[362793600000,229966],[365472000000,230187],[368150400000,230412],[370742400000,230641],[373420800000,230822],[376012800000,230989],[378691200000,231157],[381369600000,231313],[383788800000,231470],[386467200000,231645],[389059200000,231809],[391737600000,231992],[394329600000,232188],[397008000000,232392],[399686400000,232599],[402278400000,232816],[404956800000,232993],[407548800000,233160],[410227200000,233322],[412905600000,233473],[415324800000,233613],[418003200000,233781],[420595200000,233922],[423273600000,234118],[425865600000,234307],[428544000000,234501],[431222400000,234701],[433814400000,234907],[436492800000,235078],[439084800000,235235],[441763200000,235385],[444441600000,235527],[446947200000,235675],[449625600000,235839],[452217600000,235993],[454896000000,236160],[457488000000,236348],[460166400000,236549],[462844800000,236760],[465436800000,236976],[468115200000,237159],[470707200000,237316],[473385600000,237468],[476064000000,237602],[478483200000,237732],[481161600000,237900],[483753600000,238074],[486432000000,238270],[489024000000,238466],[491702400000,238679],[494380800000,238898],[496972800000,239113],[499651200000,239307],[502243200000,239477],[504921600000,239638],[507600000000,239788],[510019200000,239928],[512697600000,240094],[515289600000,240271],[517968000000,240459],[520560000000,240651],[523238400000,240854],[525916800000,241068],[528508800000,241274],[531187200000,241467],[533779200000,241620],[536457600000,241784],[539136000000,241930],[541555200000,242079],[544233600000,242252],[546825600000,242423],[549504000000,242608],[552096000000,242804],[554774400000,243012],[557452800000,243223],[560044800000,243446],[562723200000,243639],[565315200000,243809],[567993600000,243981],[570672000000,244131],[573177600000,244279],[575856000000,244445],[578448000000,244610],[581126400000,244806],[583718400000,245021],[586396800000,245240],[589075200000,245464],[591667200000,245693],[594345600000,245884],[596937600000,246056],[599616000000,246224],[602294400000,246378],[604713600000,246530],[607392000000,246721],[609984000000,246906],[612662400000,247114],[615254400000,247342],[617932800000,247573],[620611200000,247816],[623203200000,248067],[625881600000,248281],[628473600000,248479],[631152000000,248659],[633830400000,248827],[636249600000,249012],[638928000000,249306],[641520000000,249565],[644198400000,249849],[646790400000,250132],[649468800000,250439],[652147200000,250751],[654739200000,251057],[657417600000,251346],[660009600000,251626],[662688000000,251889],[665366400000,252135],[667785600000,252372],[670464000000,252643],[673056000000,252913],[675734400000,253207],[678326400000,253493],[681004800000,253807],[683683200000,254126],[686275200000,254435],[688953600000,254718],[691545600000,254964],[694224000000,255214],[696902400000,255448],[699408000000,255703],[702086400000,255992],[704678400000,256285],[707356800000,256589],[709948800000,256894],[712627200000,257232],[715305600000,257548],[717897600000,257861],[720576000000,258147],[723168000000,258413],[725846400000,258679],[728524800000,258919],[730944000000,259152],[733622400000,259414],[736214400000,259680],[738892800000,259963],[741484800000,260255],[744163200000,260566],[746841600000,260867],[749433600000,261163],[752112000000,261425],[754704000000,261674],[757382400000,261919],[760060800000,262123],[762480000000,262352],[765158400000,262631],[767750400000,262877],[770428800000,263152],[773020800000,263436],[775699200000,263724],[778377600000,264017],[780969600000,264301],[783648000000,264559],[786240000000,264804],[788918400000,265044],[791596800000,265270],[794016000000,265495],[796694400000,265755],[799286400000,265998],[801964800000,266270],[804556800000,266557],[807235200000,266843],[809913600000,267152],[812505600000,267456],[815184000000,267715],[817776000000,267943],[820454400000,268151],[823132800000,268364],[825638400000,268595],[828316800000,268853],[830908800000,269108],[833587200000,269386],[836179200000,269667],[838857600000,269976],[841536000000,270284],[844128000000,270581],[846806400000,270878],[849398400000,271125],[852076800000,271360],[854755200000,271585],[857174400000,271821],[859852800000,272083],[862444800000,272342],[865123200000,272622],[867715200000,272912],[870393600000,273237],[873072000000,273553],[875664000000,273852],[878342400000,274126],[880934400000,274372],[883612800000,274626],[886291200000,274838],[888710400000,275047],[891388800000,275304],[893980800000,275564],[896659200000,275836],[899251200000,276115],[901929600000,276418],[904608000000,276714],[907200000000,277003],[909878400000,277277],[912470400000,277526],[915148800000,277790],[917827200000,277992],[920246400000,278198],[922924800000,278451],[925516800000,278717],[928195200000,279001],[930787200000,279295],[933465600000,279602],[936144000000,279903],[938736000000,280203],[941414400000,280471],[944006400000,280716],[946684800000,280976],[949363200000,281190],[951868800000,281409],[954547200000,281653],[957139200000,281877],[959817600000,282126],[962409600000,282385],[965088000000,282653],[967766400000,282932],[970358400000,283201],[973036800000,283453],[975628800000,283696],[978307200000,283920],[980985600000,284137],[983404800000,284350],[986083200000,284581],[988675200000,284810],[991353600000,285062],[993945600000,285309],[996624000000,285570],[999302400000,285843],[1001894400000,286098],[1004572800000,286341],[1007164800000,286570],[1009843200000,286788],[1012521600000,286994],[1014940800000,287190],[1017619200000,287397],[1020211200000,287623],[1022889600000,287864],[1025481600000,288105],[1028160000000,288360],[1030838400000,288618],[1033430400000,288870],[1036108800000,289106],[1038700800000,289313],[1041379200000,289518],[1044057600000,289714],[1046476800000,289911],[1049155200000,290125],[1051747200000,290346],[1054425600000,290584],[1057017600000,290820],[1059696000000,291072],[1062374400000,291321],[1064966400000,291574],[1067644800000,291807],[1070236800000,292008],[1072915200000,292192],[1075593600000,292368],[1078099200000,292561],[1080777600000,292779],[1083369600000,292997],[1086048000000,293223],[1088640000000,293463],[1091318400000,293719],[1093996800000,293971],[1096588800000,294230],[1099267200000,294466],[1101859200000,294694],[1104537600000,294914],[1107216000000,295105],[1109635200000,295287],[1112313600000,295490],[1114905600000,295704],[1117584000000,295936],[1120176000000,296186],[1122854400000,296440],[1125532800000,296707],[1128124800000,296972],[1130803200000,297207],[1133395200000,297431],[1136073600000,297647],[1138752000000,297854],[1141171200000,298060],[1143849600000,298281],[1146441600000,298496],[1149120000000,298739],[1151712000000,298996],[1154390400000,299263],[1157068800000,299554],[1159660800000,299835],[1162339200000,300094],[1164931200000,300340],[1167609600000,300574],[1170288000000,300802],[1172707200000,301021],[1175385600000,301254],[1177977600000,301483],[1180656000000,301739],[1183248000000,302004],[1185926400000,302267],[1188604800000,302546],[1191196800000,302807],[1193875200000,303054],[1196467200000,303287],[1199145600000,303506],[1201824000000,303711],[1204329600000,303907],[1207008000000,304117],[1209600000000,304323],[1212278400000,304556],[1214870400000,304798],[1217548800000,305045],[1220227200000,305309],[1222819200000,305554],[1225497600000,305786],[1228089600000,306004],[1230768000000,306208],[1233446400000,306402],[1235865600000,306588],[1238544000000,306787],[1241136000000,306984],[1243814400000,307206],[1246406400000,307439],[1249084800000,307685],[1251763200000,307946],[1254355200000,308189],[1257033600000,308418],[1259625600000,308633],[1262304000000,308833],[1264982400000,309027],[1267401600000,309212],[1270080000000,309191],[1272672000000,309369],[1275350400000,309549],[1277942400000,309746],[1280620800000,309958],[1283299200000,310176],[1285891200000,310400],[1288569600000,310596],[1291161600000,310782],[1293840000000,310961],[1296518400000,311113],[1298937600000,311265],[1301616000000,311436],[1304208000000,311607],[1306886400000,311791],[1309478400000,311997],[1312156800000,312205],[1314835200000,312429],[1317427200000,312644],[1320105600000,312830],[1322697600000,313010],[1325376000000,313183],[1328054400000,313339],[1330560000000,313499],[1333238400000,313667],[1335830400000,313831],[1338508800000,314018],[1341100800000,314211],[1343779200000,314422],[1346457600000,314647],[1349049600000,314854],[1351728000000,315054],[1354320000000,315233],[1356998400000,315390],[1359676800000,315520],[1362096000000,315662],[1364774400000,315818],[1367366400000,315984],[1370044800000,316171],[1372636800000,316359],[1375315200000,316580],[1377993600000,316806],[1380585600000,317022],[1383264000000,317228],[1385856000000,317412],[1388534400000,317594],[1391212800000,317754],[1393632000000,317917],[1396310400000,318089],[1398902400000,318270],[1401580800000,318464],[1404172800000,318662],[1406851200000,318894],[1409529600000,319125],[1412121600000,319354],[1414800000000,319564],[1417392000000,319746],[1420070400000,319929],[1422748800000,320075],[1425168000000,320231],[1427846400000,320402]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":[{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#008FFB\"}},\"axisBorder\":{\"show\":true,\"color\":\"#008FFB\"},\"title\":{\"text\":\"Pce\"},\"tooltip\":{\"enabled\":true}},{\"opposite\":true,\"min\":160000,\"forceNiceScale\":true,\"title\":{\"text\":\"Pop\"},\"axisBorder\":{\"show\":true,\"color\":\"#00E396\"},\"labels\":{\"style\":{\"colors\":\"#00E396\"}},\"tooltip\":{\"enabled\":true}}]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/bar_opts.html","id":null,"dir":"Reference","previous_headings":"","what":"Bar options — bar_opts","title":"Bar options — bar_opts","text":"Use options ax_plotOptions().","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bar_opts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Bar options — bar_opts","text":"","code":"bar_opts( horizontal = NULL, endingShape = NULL, columnWidth = NULL, barHeight = NULL, distributed = NULL, colors = NULL, dataLabels = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/bar_opts.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Bar options — bar_opts","text":"horizontal Logical. option turn column chart horizontal bar chart. endingShape Available Options: \"flat\" \"rounded\". columnWidth column charts, columnWidth percentage available width grid-rect. barHeight horizontal bar charts, barHeight percentage available height grid-rect. distributed Logical. Turn option make bars discrete. value indicates one bar per series. colors list parameters. dataLabels List fields position (available options: \"top\", \"center\" \"bottom\") ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bar_opts.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Bar options — bar_opts","text":"list options can used ax_plotOptions().","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bar_opts.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Bar options — bar_opts","text":"See https://apexcharts.com/docs/options/plotoptions/bar/.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bar_opts.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Bar options — bar_opts","text":"","code":"data(\"mpg\", package = \"ggplot2\") apex(mpg, aes(manufacturer)) %>% ax_plotOptions( bar = bar_opts( endingShape = \"rounded\", columnWidth = 100, distributed = TRUE ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false,\"endingShape\":\"rounded\",\"columnWidth\":100,\"distributed\":true}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/boxplot_opts.html","id":null,"dir":"Reference","previous_headings":"","what":"Boxplot options — boxplot_opts","title":"Boxplot options — boxplot_opts","text":"Use options ax_plotOptions().","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/boxplot_opts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Boxplot options — boxplot_opts","text":"","code":"boxplot_opts(color.upper, color.lower, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/boxplot_opts.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Boxplot options — boxplot_opts","text":"color.upper Color upper quartile (Q3 median) box plot. color.lower Color lower quartile (median Q1) box plot. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/boxplot_opts.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Boxplot options — boxplot_opts","text":"list options can used ax_plotOptions().","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/boxplot_opts.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Boxplot options — boxplot_opts","text":"See https://apexcharts.com/docs/options/plotoptions/boxplot/.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/boxplot_opts.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Boxplot options — boxplot_opts","text":"","code":"data(\"mpg\", package = \"ggplot2\") apex(mpg, aes(class, hwy), \"boxplot\") %>% ax_plotOptions( boxPlot = boxplot_opts(color.upper = \"#848484\", color.lower = \"#848484\" ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"boxPlot\"},\"series\":[{\"type\":\"boxPlot\",\"data\":[{\"x\":\"2seater\",\"y\":[23,24,25,26,26]},{\"x\":\"compact\",\"y\":[23,26,27,29,33]},{\"x\":\"midsize\",\"y\":[23,26,27,29,32]},{\"x\":\"minivan\",\"y\":[21,22,23,24,24]},{\"x\":\"pickup\",\"y\":[15,16,17,18,20]},{\"x\":\"subcompact\",\"y\":[20,24.5,26,30.5,36]},{\"x\":\"suv\",\"y\":[14,17,17.5,19,22]}]}],\"plotOptions\":{\"bar\":{\"horizontal\":false},\"boxPlot\":{\"colors\":{\"upper\":\"#848484\",\"lower\":\"#848484\"}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2seater\",\"max\":\"suv\"},\"type\":\"boxplot\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/bubble_opts.html","id":null,"dir":"Reference","previous_headings":"","what":"Bubble options — bubble_opts","title":"Bubble options — bubble_opts","text":"Use options ax_plotOptions().","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bubble_opts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Bubble options — bubble_opts","text":"","code":"bubble_opts(minBubbleRadius, maxBubbleRadius, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/bubble_opts.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Bubble options — bubble_opts","text":"minBubbleRadius Minimum radius size bubble. bubble value small displayed, size used. maxBubbleRadius Maximum radius size bubble. bubble value large cover chart, size used. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bubble_opts.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Bubble options — bubble_opts","text":"list options can used ax_plotOptions().","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bubble_opts.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Bubble options — bubble_opts","text":"See https://apexcharts.com/docs/options/plotoptions/bubble/.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bubble_opts.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Bubble options — bubble_opts","text":"","code":"apex( data = mtcars, type = \"scatter\", mapping = aes(x = wt, y = mpg, z = qsec) ) %>% ax_plotOptions( bubble = bubble_opts( minBubbleRadius = 1, maxBubbleRadius = 20 ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bubble\"},\"series\":[{\"name\":\"mpg\",\"type\":\"bubble\",\"data\":[{\"x\":2.62,\"y\":21,\"z\":16.46},{\"x\":2.875,\"y\":21,\"z\":17.02},{\"x\":2.32,\"y\":22.8,\"z\":18.61},{\"x\":3.215,\"y\":21.4,\"z\":19.44},{\"x\":3.44,\"y\":18.7,\"z\":17.02},{\"x\":3.46,\"y\":18.1,\"z\":20.22},{\"x\":3.57,\"y\":14.3,\"z\":15.84},{\"x\":3.19,\"y\":24.4,\"z\":20},{\"x\":3.15,\"y\":22.8,\"z\":22.9},{\"x\":3.44,\"y\":19.2,\"z\":18.3},{\"x\":3.44,\"y\":17.8,\"z\":18.9},{\"x\":4.07,\"y\":16.4,\"z\":17.4},{\"x\":3.73,\"y\":17.3,\"z\":17.6},{\"x\":3.78,\"y\":15.2,\"z\":18},{\"x\":5.25,\"y\":10.4,\"z\":17.98},{\"x\":5.424,\"y\":10.4,\"z\":17.82},{\"x\":5.345,\"y\":14.7,\"z\":17.42},{\"x\":2.2,\"y\":32.4,\"z\":19.47},{\"x\":1.615,\"y\":30.4,\"z\":18.52},{\"x\":1.835,\"y\":33.9,\"z\":19.9},{\"x\":2.465,\"y\":21.5,\"z\":20.01},{\"x\":3.52,\"y\":15.5,\"z\":16.87},{\"x\":3.435,\"y\":15.2,\"z\":17.3},{\"x\":3.84,\"y\":13.3,\"z\":15.41},{\"x\":3.845,\"y\":19.2,\"z\":17.05},{\"x\":1.935,\"y\":27.3,\"z\":18.9},{\"x\":2.14,\"y\":26,\"z\":16.7},{\"x\":1.513,\"y\":30.4,\"z\":16.9},{\"x\":3.17,\"y\":15.8,\"z\":14.5},{\"x\":2.77,\"y\":19.7,\"z\":15.5},{\"x\":3.57,\"y\":15,\"z\":14.6},{\"x\":2.78,\"y\":21.4,\"z\":18.6}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":1,\"max\":6,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":10,\"max\":35,\"tickAmount\":5,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"plotOptions\":{\"bubble\":{\"minBubbleRadius\":1,\"maxBubbleRadius\":20}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":1.513,\"max\":5.424},\"type\":\"bubble\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/candles.html","id":null,"dir":"Reference","previous_headings":"","what":"Candlestick demo data — candles","title":"Candlestick demo data — candles","text":"Candlestick demo data","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/candles.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Candlestick demo data — candles","text":"","code":"candles"},{"path":"https://dreamrs.github.io/apexcharter/reference/candles.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"Candlestick demo data — candles","text":"data frame 60 observations following 5 variables: datetime Timestamp. open Open value. high Highest value. low Lowest value. close Close value.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/candles.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"Candlestick demo data — candles","text":"Apexcharts (https://apexcharts.com/javascript-chart-demos/candlestick-charts/basic/)","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/climate_paris.html","id":null,"dir":"Reference","previous_headings":"","what":"Paris Climate — climate_paris","title":"Paris Climate — climate_paris","text":"Average temperature precipitation Paris period 1971-2000.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/climate_paris.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Paris Climate — climate_paris","text":"","code":"climate_paris"},{"path":"https://dreamrs.github.io/apexcharter/reference/climate_paris.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"Paris Climate — climate_paris","text":"data frame 12 observations following 3 variables: month Month temperature Temperature (degree celsius). precipitation Precipitation (mm).","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/climate_paris.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"Paris Climate — climate_paris","text":"Wikipedia (https://fr.wikipedia.org/wiki/Climat_de_Paris)","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/config_update.html","id":null,"dir":"Reference","previous_headings":"","what":"Configuration for auto update — config_update","title":"Configuration for auto update — config_update","text":"Configuration auto update","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/config_update.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Configuration for auto update — config_update","text":"","code":"config_update( series_animate = TRUE, update_options = FALSE, options_animate = TRUE, options_redrawPaths = TRUE, update_synced_charts = FALSE )"},{"path":"https://dreamrs.github.io/apexcharter/reference/config_update.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Configuration for auto update — config_update","text":"series_animate chart animate re-rendering. update_options Update global options chart. options_animate chart animate re-rendering. options_redrawPaths chart re-rendered, draw existing paths completely redraw chart paths beginning. default, chart re-rendered existing paths. update_synced_charts charts group also update one chart group updated.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/consumption.html","id":null,"dir":"Reference","previous_headings":"","what":"Electricity consumption and forecasting — consumption","title":"Electricity consumption and forecasting — consumption","text":"Electricity consumption per day France january february year 2020.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/consumption.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Electricity consumption and forecasting — consumption","text":"","code":"consumption"},{"path":"https://dreamrs.github.io/apexcharter/reference/consumption.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"Electricity consumption and forecasting — consumption","text":"data frame 120 observations following 3 variables: date date. type Type data : realized forecast. value Value giga-watt per hour.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/consumption.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"Electricity consumption and forecasting — consumption","text":"Rte (Electricity Transmission Network France) (https://data.rte-france.com/)","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/eco2mix.html","id":null,"dir":"Reference","previous_headings":"","what":"eco2mix data — eco2mix","title":"eco2mix data — eco2mix","text":"dataset contains data electricity consumption production France 2012 2022.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/eco2mix.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"eco2mix data — eco2mix","text":"","code":"eco2mix"},{"path":"https://dreamrs.github.io/apexcharter/reference/eco2mix.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"eco2mix data — eco2mix","text":"data frame 3,033 observations 3 variables.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/eco2mix.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"eco2mix data — eco2mix","text":"Rte (Réseau et transport d'électricité) (https://www.rte-france.com/eco2mix https://opendata.reseaux-energies.fr/)","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/events_opts.html","id":null,"dir":"Reference","previous_headings":"","what":"Events options — events_opts","title":"Events options — events_opts","text":"Events options","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/events_opts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Events options — events_opts","text":"","code":"events_opts( click = NULL, beforeMount = NULL, mounted = NULL, updated = NULL, legendClick = NULL, selection = NULL, dataPointSelection = NULL, dataPointMouseEnter = NULL, dataPointMouseLeave = NULL, beforeZoom = NULL, zoomed = NULL, scrolled = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/events_opts.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Events options — events_opts","text":"click Fires user clicks area chart. beforeMount Fires chart drawn screen. mounted Fires chart drawn screen. updated Fires chart dynamically updated. legendClick Fires user clicks legend. selection Fires user selects rect using selection tool. dataPointSelection Fires user clicks datapoint (bar/column/marker/bubble/donut-slice). dataPointMouseEnter Fires user's mouse enter datapoint (bar/column/marker/bubble/donut-slice). dataPointMouseLeave MouseLeave event datapoint (bar/column/marker/bubble/donut-slice). beforeZoom function, defined, runs just zooming /chart allowing set custom range zooming /. zoomed Fires user zooms /chart using either selection zooming tool zoom /buttons. scrolled Fires user scrolls using pan tool. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/events_opts.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Events options — events_opts","text":"list options can used ax_chart.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/events_opts.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Events options — events_opts","text":"arguments JavaScript function defined htmlwidgets::JS. See https://apexcharts.com/docs/options/chart/events/.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/events_opts.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Events options — events_opts","text":"","code":"if (interactive()) { library(shiny) ui <- fluidPage( fluidRow( column( width = 8, offset = 2, tags$h2(\"Apexchart in Shiny\"), apexchartOutput(\"chart\"), verbatimTextOutput(outputId = \"res_click\") ) ) ) server <- function(input, output, session) { output$chart <- renderApexchart({ apexchart() %>% ax_chart( type = \"bar\", events = events_opts( dataPointSelection = JS( \"function(event, chartContext, config) { Shiny.setInputValue('click', config.selectedDataPoints) }\" ) ) ) %>% ax_series( list( name = \"Example\", data = sample(1:100, 5) ) ) %>% ax_xaxis( categories = LETTERS[1:5] ) }) output$res_click <- renderPrint({ input$click }) } shinyApp(ui, server) }"},{"path":"https://dreamrs.github.io/apexcharter/reference/format_date.html","id":null,"dir":"Reference","previous_headings":"","what":"Format date in JS — format_date","title":"Format date in JS — format_date","text":"Format date JS","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/format_date.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Format date in JS — format_date","text":"","code":"format_date(x)"},{"path":"https://dreamrs.github.io/apexcharter/reference/format_date.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Format date in JS — format_date","text":"x Date use JavaScript","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/format_date.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Format date in JS — format_date","text":"JavaScript string","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/format_num.html","id":null,"dir":"Reference","previous_headings":"","what":"Format numbers (with D3) — format_num","title":"Format numbers (with D3) — format_num","text":"Format numbers (D3)","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/format_num.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Format numbers (with D3) — format_num","text":"","code":"format_num(format, prefix = \"\", suffix = \"\", locale = \"en-US\")"},{"path":"https://dreamrs.github.io/apexcharter/reference/format_num.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Format numbers (with D3) — format_num","text":"format Format numbers, currency, percentage, e.g. \".0%\" rounded percentage. See online documentation : https://github.com/d3/d3-format. prefix Character string append formatted value. suffix Character string append formatted value. locale Localization use, example \"fr-FR\" french, see possible values : https://github.com/d3/d3-format/tree/master/locale.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/format_num.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Format numbers (with D3) — format_num","text":"JS function","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/format_num.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Format numbers (with D3) — format_num","text":"","code":"# Use SI prefix dat <- data.frame( labels = c(\"apex\", \"charts\"), values = c(1e4, 2e4) ) apex(dat, aes(labels, values), \"column\") %>% ax_yaxis(labels = list( formatter = format_num(\"~s\") )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"values\",\"type\":\"bar\",\"data\":[{\"x\":\"apex\",\"y\":10000},{\"x\":\"charts\",\"y\":20000}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"},\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~s')(value) + '';}\"}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"apex\",\"max\":\"charts\"},\"type\":\"column\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} apex(dat, aes(labels, values * 100), \"column\") %>% ax_yaxis(labels = list( formatter = format_num(\"~s\") )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"values * 100\",\"type\":\"bar\",\"data\":[{\"x\":\"apex\",\"y\":1000000},{\"x\":\"charts\",\"y\":2000000}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"},\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~s')(value) + '';}\"}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"apex\",\"max\":\"charts\"},\"type\":\"column\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # Percentage dat <- data.frame( labels = c(\"apex\", \"charts\"), values = c(0.45, 0.55) ) apex(dat, aes(labels, values), \"column\") %>% ax_yaxis(labels = list( formatter = format_num(\".0%\") )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"values\",\"type\":\"bar\",\"data\":[{\"x\":\"apex\",\"y\":0.45},{\"x\":\"charts\",\"y\":0.55}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"},\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('.0%')(value) + '';}\"}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"apex\",\"max\":\"charts\"},\"type\":\"column\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # Currency dat <- data.frame( labels = c(\"apex\", \"charts\"), values = c(570, 1170) ) apex(dat, aes(labels, values), \"column\") %>% ax_yaxis(labels = list( formatter = format_num(\"$,.2f\") )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"values\",\"type\":\"bar\",\"data\":[{\"x\":\"apex\",\"y\":570},{\"x\":\"charts\",\"y\":1170}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"},\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('$,.2f')(value) + '';}\"}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"apex\",\"max\":\"charts\"},\"type\":\"column\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # Change locale apex(dat, aes(labels, values), \"column\") %>% ax_yaxis(labels = list( formatter = format_num(\"$,.2f\", locale = \"fr-FR\") )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"values\",\"type\":\"bar\",\"data\":[{\"x\":\"apex\",\"y\":570},{\"x\":\"charts\",\"y\":1170}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"},\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\",\\\", \\\"thousands\\\": \\\"\\\\u00a0\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"\\\", \\\"\\\\u00a0\\\\u20ac\\\"], \\\"percent\\\": \\\"\\\\u202f%\\\"}')); return '' + locale.format('$,.2f')(value) + '';}\"}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"apex\",\"max\":\"charts\"},\"type\":\"column\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # Customize tooltip value # Use SI prefix dat <- data.frame( labels = c(\"apex\", \"charts\"), values = c(1e4, 2e4) ) apex(dat, aes(labels, values), \"column\") %>% ax_tooltip(y = list( formatter = format_num(\",\", suffix = \" GW/h\") )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"values\",\"type\":\"bar\",\"data\":[{\"x\":\"apex\",\"y\":10000},{\"x\":\"charts\",\"y\":20000}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true,\"y\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format(',')(value) + ' GW/h';}\"}},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"apex\",\"max\":\"charts\"},\"type\":\"column\"},\"evals\":[\"ax_opts.tooltip.y.formatter\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/heatmap_opts.html","id":null,"dir":"Reference","previous_headings":"","what":"Heatmap options — heatmap_opts","title":"Heatmap options — heatmap_opts","text":"Use options ax_plotOptions().","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/heatmap_opts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Heatmap options — heatmap_opts","text":"","code":"heatmap_opts( radius = NULL, enableShades = NULL, shadeIntensity = NULL, colorScale = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/heatmap_opts.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Heatmap options — heatmap_opts","text":"radius Numeric. Radius rectangle inside heatmap. enableShades Logical. Enable different shades color depending value shadeIntensity Numeric [0,1]. intensity shades generated value. colorScale List. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/heatmap_opts.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Heatmap options — heatmap_opts","text":"list options can used ax_plotOptions().","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/heatmap_opts.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Heatmap options — heatmap_opts","text":"See https://apexcharts.com/docs/options/plotoptions/heatmap/.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/heatmap_opts.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Heatmap options — heatmap_opts","text":"","code":"df <- expand.grid( month = month.name, person = c(\"Obi-Wan\", \"Luke\", \"Anakin\", \"Leia\") ) df$value <- sample(0:1, nrow(df), TRUE) apex( data = df, mapping = aes(x = month, y = person, fill = value), type = \"heatmap\" ) %>% ax_plotOptions( heatmap = heatmap_opts( enableShades = FALSE, colorScale = list( ranges = list( list(from = 0, to = 0.5, color = \"#FF0000\"), list(from = 0.5, to = 1, color = \"#088A08\") ) ) ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"heatmap\"},\"series\":[{\"name\":\"Obi-Wan\",\"data\":[{\"x\":\"January\",\"y\":1},{\"x\":\"February\",\"y\":1},{\"x\":\"March\",\"y\":1},{\"x\":\"April\",\"y\":0},{\"x\":\"May\",\"y\":0},{\"x\":\"June\",\"y\":0},{\"x\":\"July\",\"y\":1},{\"x\":\"August\",\"y\":0},{\"x\":\"September\",\"y\":0},{\"x\":\"October\",\"y\":0},{\"x\":\"November\",\"y\":1},{\"x\":\"December\",\"y\":1}]},{\"name\":\"Luke\",\"data\":[{\"x\":\"January\",\"y\":1},{\"x\":\"February\",\"y\":1},{\"x\":\"March\",\"y\":1},{\"x\":\"April\",\"y\":0},{\"x\":\"May\",\"y\":1},{\"x\":\"June\",\"y\":1},{\"x\":\"July\",\"y\":0},{\"x\":\"August\",\"y\":1},{\"x\":\"September\",\"y\":0},{\"x\":\"October\",\"y\":1},{\"x\":\"November\",\"y\":0},{\"x\":\"December\",\"y\":1}]},{\"name\":\"Anakin\",\"data\":[{\"x\":\"January\",\"y\":0},{\"x\":\"February\",\"y\":1},{\"x\":\"March\",\"y\":0},{\"x\":\"April\",\"y\":1},{\"x\":\"May\",\"y\":1},{\"x\":\"June\",\"y\":0},{\"x\":\"July\",\"y\":1},{\"x\":\"August\",\"y\":1},{\"x\":\"September\",\"y\":0},{\"x\":\"October\",\"y\":0},{\"x\":\"November\",\"y\":1},{\"x\":\"December\",\"y\":1}]},{\"name\":\"Leia\",\"data\":[{\"x\":\"January\",\"y\":1},{\"x\":\"February\",\"y\":1},{\"x\":\"March\",\"y\":1},{\"x\":\"April\",\"y\":0},{\"x\":\"May\",\"y\":1},{\"x\":\"June\",\"y\":1},{\"x\":\"July\",\"y\":0},{\"x\":\"August\",\"y\":0},{\"x\":\"September\",\"y\":1},{\"x\":\"October\",\"y\":1},{\"x\":\"November\",\"y\":0},{\"x\":\"December\",\"y\":1}]}],\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"plotOptions\":{\"heatmap\":{\"enableShades\":false,\"colorScale\":{\"ranges\":[{\"from\":0,\"to\":0.5,\"color\":\"#FF0000\"},{\"from\":0.5,\"to\":1,\"color\":\"#088A08\"}]}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"April\",\"max\":\"September\"},\"type\":\"heatmap\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/label.html","id":null,"dir":"Reference","previous_headings":"","what":"Label for annotations — label","title":"Label for annotations — label","text":"Label annotations","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/label.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Label for annotations — label","text":"","code":"label( text = NULL, borderColor = NULL, borderWidth = NULL, textAnchor = NULL, position = NULL, offsetX = NULL, offsetY = NULL, background = NULL, color = NULL, fontSize = NULL, fontWeight = NULL, fontFamily = NULL, cssClass = NULL, padding = c(2, 5, 2, 5) )"},{"path":"https://dreamrs.github.io/apexcharter/reference/label.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Label for annotations — label","text":"text Text annotation label. borderColor Border color label. borderWidth Border width label. textAnchor alignment text relative label's drawing position. position Available options: left right. offsetX Sets left offset annotation label. offsetY Sets top offset annotation label. background Background Color annotation label. color ForeColor annotation label. fontSize FontSize annotation label. fontWeight Font-weight annotation label. fontFamily Font-family annotation label. cssClass custom Css Class give annotation label elements. padding Padding label: top, right, bottom, left.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/label.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Label for annotations — label","text":"list can used add_shade, add_point, add_event, add_event_marker.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/life_expec.html","id":null,"dir":"Reference","previous_headings":"","what":"Life expectancy data — life_expec","title":"Life expectancy data — life_expec","text":"dataset contains data life expectancy 1972 2007 10 countries.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/life_expec.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Life expectancy data — life_expec","text":"","code":"life_expec"},{"path":"https://dreamrs.github.io/apexcharter/reference/life_expec.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"Life expectancy data — life_expec","text":"data frame 10 observations 4 variables.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/life_expec.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"Life expectancy data — life_expec","text":"gapminder package (https://jennybc.github.io/gapminder/ https://www.gapminder.org/data/)","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/life_expec_long.html","id":null,"dir":"Reference","previous_headings":"","what":"Life expectancy data (long format) — life_expec_long","title":"Life expectancy data (long format) — life_expec_long","text":"dataset contains data life expectancy 1972 2007 10 countries.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/life_expec_long.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Life expectancy data (long format) — life_expec_long","text":"","code":"life_expec_long"},{"path":"https://dreamrs.github.io/apexcharter/reference/life_expec_long.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"Life expectancy data (long format) — life_expec_long","text":"data frame 20 observations 3 variables.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/life_expec_long.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"Life expectancy data (long format) — life_expec_long","text":"gapminder package (https://jennybc.github.io/gapminder/ https://www.gapminder.org/data/)","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/parse_df.html","id":null,"dir":"Reference","previous_headings":"","what":"Convert a data.frame to a list — parse_df","title":"Convert a data.frame to a list — parse_df","text":"Convert data format suitable ApexCharts.js","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/parse_df.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Convert a data.frame to a list — parse_df","text":"","code":"parse_df(data, add_names = FALSE)"},{"path":"https://dreamrs.github.io/apexcharter/reference/parse_df.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Convert a data.frame to a list — parse_df","text":"data data.frame object coercible data.frame. add_names Use names columns output. Can logical reuse data names character vector new names.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/parse_df.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Convert a data.frame to a list — parse_df","text":"list can used specify data ax_series example.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/parse_df.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Convert a data.frame to a list — parse_df","text":"","code":"# All iris dataset parse_df(iris) #> [[1]] #> [[1]][[1]] #> [1] 5.1 #> #> [[1]][[2]] #> [1] 3.5 #> #> [[1]][[3]] #> [1] 1.4 #> #> [[1]][[4]] #> [1] 0.2 #> #> [[1]][[5]] #> [1] \"setosa\" #> #> #> [[2]] #> [[2]][[1]] #> [1] 4.9 #> #> [[2]][[2]] #> [1] 3 #> #> [[2]][[3]] #> [1] 1.4 #> #> [[2]][[4]] #> [1] 0.2 #> #> [[2]][[5]] #> [1] \"setosa\" #> #> #> [[3]] #> [[3]][[1]] #> [1] 4.7 #> #> [[3]][[2]] #> [1] 3.2 #> #> [[3]][[3]] #> [1] 1.3 #> #> [[3]][[4]] #> [1] 0.2 #> #> [[3]][[5]] #> [1] \"setosa\" #> #> #> [[4]] #> [[4]][[1]] #> [1] 4.6 #> #> [[4]][[2]] #> [1] 3.1 #> #> [[4]][[3]] #> [1] 1.5 #> #> [[4]][[4]] #> [1] 0.2 #> #> [[4]][[5]] #> [1] \"setosa\" #> #> #> [[5]] #> [[5]][[1]] #> [1] 5 #> #> [[5]][[2]] #> [1] 3.6 #> #> [[5]][[3]] #> [1] 1.4 #> #> [[5]][[4]] #> [1] 0.2 #> #> [[5]][[5]] #> [1] \"setosa\" #> #> #> [[6]] #> [[6]][[1]] #> [1] 5.4 #> #> [[6]][[2]] #> [1] 3.9 #> #> [[6]][[3]] #> [1] 1.7 #> #> [[6]][[4]] #> [1] 0.4 #> #> [[6]][[5]] #> [1] \"setosa\" #> #> #> [[7]] #> [[7]][[1]] #> [1] 4.6 #> #> [[7]][[2]] #> [1] 3.4 #> #> [[7]][[3]] #> [1] 1.4 #> #> [[7]][[4]] #> [1] 0.3 #> #> [[7]][[5]] #> [1] \"setosa\" #> #> #> [[8]] #> [[8]][[1]] #> [1] 5 #> #> [[8]][[2]] #> [1] 3.4 #> #> [[8]][[3]] #> [1] 1.5 #> #> [[8]][[4]] #> [1] 0.2 #> #> [[8]][[5]] #> [1] \"setosa\" #> #> #> [[9]] #> [[9]][[1]] #> [1] 4.4 #> #> [[9]][[2]] #> [1] 2.9 #> #> [[9]][[3]] #> [1] 1.4 #> #> [[9]][[4]] #> [1] 0.2 #> #> [[9]][[5]] #> [1] \"setosa\" #> #> #> [[10]] #> [[10]][[1]] #> [1] 4.9 #> #> [[10]][[2]] #> [1] 3.1 #> #> [[10]][[3]] #> [1] 1.5 #> #> [[10]][[4]] #> [1] 0.1 #> #> [[10]][[5]] #> [1] \"setosa\" #> #> #> [[11]] #> [[11]][[1]] #> [1] 5.4 #> #> [[11]][[2]] #> [1] 3.7 #> #> [[11]][[3]] #> [1] 1.5 #> #> [[11]][[4]] #> [1] 0.2 #> #> [[11]][[5]] #> [1] \"setosa\" #> #> #> [[12]] #> [[12]][[1]] #> [1] 4.8 #> #> [[12]][[2]] #> [1] 3.4 #> #> [[12]][[3]] #> [1] 1.6 #> #> [[12]][[4]] #> [1] 0.2 #> #> [[12]][[5]] #> [1] \"setosa\" #> #> #> [[13]] #> [[13]][[1]] #> [1] 4.8 #> #> [[13]][[2]] #> [1] 3 #> #> [[13]][[3]] #> [1] 1.4 #> #> [[13]][[4]] #> [1] 0.1 #> #> [[13]][[5]] #> [1] \"setosa\" #> #> #> [[14]] #> [[14]][[1]] #> [1] 4.3 #> #> [[14]][[2]] #> [1] 3 #> #> [[14]][[3]] #> [1] 1.1 #> #> [[14]][[4]] #> [1] 0.1 #> #> [[14]][[5]] #> [1] \"setosa\" #> #> #> [[15]] #> [[15]][[1]] #> [1] 5.8 #> #> [[15]][[2]] #> [1] 4 #> #> [[15]][[3]] #> [1] 1.2 #> #> [[15]][[4]] #> [1] 0.2 #> #> [[15]][[5]] #> [1] \"setosa\" #> #> #> [[16]] #> [[16]][[1]] #> [1] 5.7 #> #> [[16]][[2]] #> [1] 4.4 #> #> [[16]][[3]] #> [1] 1.5 #> #> [[16]][[4]] #> [1] 0.4 #> #> [[16]][[5]] #> [1] \"setosa\" #> #> #> [[17]] #> [[17]][[1]] #> [1] 5.4 #> #> [[17]][[2]] #> [1] 3.9 #> #> [[17]][[3]] #> [1] 1.3 #> #> [[17]][[4]] #> [1] 0.4 #> #> [[17]][[5]] #> [1] \"setosa\" #> #> #> [[18]] #> [[18]][[1]] #> [1] 5.1 #> #> [[18]][[2]] #> [1] 3.5 #> #> [[18]][[3]] #> [1] 1.4 #> #> [[18]][[4]] #> [1] 0.3 #> #> [[18]][[5]] #> [1] \"setosa\" #> #> #> [[19]] #> [[19]][[1]] #> [1] 5.7 #> #> [[19]][[2]] #> [1] 3.8 #> #> [[19]][[3]] #> [1] 1.7 #> #> [[19]][[4]] #> [1] 0.3 #> #> [[19]][[5]] #> [1] \"setosa\" #> #> #> [[20]] #> [[20]][[1]] #> [1] 5.1 #> #> [[20]][[2]] #> [1] 3.8 #> #> [[20]][[3]] #> [1] 1.5 #> #> [[20]][[4]] #> [1] 0.3 #> #> [[20]][[5]] #> [1] \"setosa\" #> #> #> [[21]] #> [[21]][[1]] #> [1] 5.4 #> #> [[21]][[2]] #> [1] 3.4 #> #> [[21]][[3]] #> [1] 1.7 #> #> [[21]][[4]] #> [1] 0.2 #> #> [[21]][[5]] #> [1] \"setosa\" #> #> #> [[22]] #> [[22]][[1]] #> [1] 5.1 #> #> [[22]][[2]] #> [1] 3.7 #> #> [[22]][[3]] #> [1] 1.5 #> #> [[22]][[4]] #> [1] 0.4 #> #> [[22]][[5]] #> [1] \"setosa\" #> #> #> [[23]] #> [[23]][[1]] #> [1] 4.6 #> #> [[23]][[2]] #> [1] 3.6 #> #> [[23]][[3]] #> [1] 1 #> #> [[23]][[4]] #> [1] 0.2 #> #> [[23]][[5]] #> [1] \"setosa\" #> #> #> [[24]] #> [[24]][[1]] #> [1] 5.1 #> #> [[24]][[2]] #> [1] 3.3 #> #> [[24]][[3]] #> [1] 1.7 #> #> [[24]][[4]] #> [1] 0.5 #> #> [[24]][[5]] #> [1] \"setosa\" #> #> #> [[25]] #> [[25]][[1]] #> [1] 4.8 #> #> [[25]][[2]] #> [1] 3.4 #> #> [[25]][[3]] #> [1] 1.9 #> #> [[25]][[4]] #> [1] 0.2 #> #> [[25]][[5]] #> [1] \"setosa\" #> #> #> [[26]] #> [[26]][[1]] #> [1] 5 #> #> [[26]][[2]] #> [1] 3 #> #> [[26]][[3]] #> [1] 1.6 #> #> [[26]][[4]] #> [1] 0.2 #> #> [[26]][[5]] #> [1] \"setosa\" #> #> #> [[27]] #> [[27]][[1]] #> [1] 5 #> #> [[27]][[2]] #> [1] 3.4 #> #> [[27]][[3]] #> [1] 1.6 #> #> [[27]][[4]] #> [1] 0.4 #> #> [[27]][[5]] #> [1] \"setosa\" #> #> #> [[28]] #> [[28]][[1]] #> [1] 5.2 #> #> [[28]][[2]] #> [1] 3.5 #> #> [[28]][[3]] #> [1] 1.5 #> #> [[28]][[4]] #> [1] 0.2 #> #> [[28]][[5]] #> [1] \"setosa\" #> #> #> [[29]] #> [[29]][[1]] #> [1] 5.2 #> #> [[29]][[2]] #> [1] 3.4 #> #> [[29]][[3]] #> [1] 1.4 #> #> [[29]][[4]] #> [1] 0.2 #> #> [[29]][[5]] #> [1] \"setosa\" #> #> #> [[30]] #> [[30]][[1]] #> [1] 4.7 #> #> [[30]][[2]] #> [1] 3.2 #> #> [[30]][[3]] #> [1] 1.6 #> #> [[30]][[4]] #> [1] 0.2 #> #> [[30]][[5]] #> [1] \"setosa\" #> #> #> [[31]] #> [[31]][[1]] #> [1] 4.8 #> #> [[31]][[2]] #> [1] 3.1 #> #> [[31]][[3]] #> [1] 1.6 #> #> [[31]][[4]] #> [1] 0.2 #> #> [[31]][[5]] #> [1] \"setosa\" #> #> #> [[32]] #> [[32]][[1]] #> [1] 5.4 #> #> [[32]][[2]] #> [1] 3.4 #> #> [[32]][[3]] #> [1] 1.5 #> #> [[32]][[4]] #> [1] 0.4 #> #> [[32]][[5]] #> [1] \"setosa\" #> #> #> [[33]] #> [[33]][[1]] #> [1] 5.2 #> #> [[33]][[2]] #> [1] 4.1 #> #> [[33]][[3]] #> [1] 1.5 #> #> [[33]][[4]] #> [1] 0.1 #> #> [[33]][[5]] #> [1] \"setosa\" #> #> #> [[34]] #> [[34]][[1]] #> [1] 5.5 #> #> [[34]][[2]] #> [1] 4.2 #> #> [[34]][[3]] #> [1] 1.4 #> #> [[34]][[4]] #> [1] 0.2 #> #> [[34]][[5]] #> [1] \"setosa\" #> #> #> [[35]] #> [[35]][[1]] #> [1] 4.9 #> #> [[35]][[2]] #> [1] 3.1 #> #> [[35]][[3]] #> [1] 1.5 #> #> [[35]][[4]] #> [1] 0.2 #> #> [[35]][[5]] #> [1] \"setosa\" #> #> #> [[36]] #> [[36]][[1]] #> [1] 5 #> #> [[36]][[2]] #> [1] 3.2 #> #> [[36]][[3]] #> [1] 1.2 #> #> [[36]][[4]] #> [1] 0.2 #> #> [[36]][[5]] #> [1] \"setosa\" #> #> #> [[37]] #> [[37]][[1]] #> [1] 5.5 #> #> [[37]][[2]] #> [1] 3.5 #> #> [[37]][[3]] #> [1] 1.3 #> #> [[37]][[4]] #> [1] 0.2 #> #> [[37]][[5]] #> [1] \"setosa\" #> #> #> [[38]] #> [[38]][[1]] #> [1] 4.9 #> #> [[38]][[2]] #> [1] 3.6 #> #> [[38]][[3]] #> [1] 1.4 #> #> [[38]][[4]] #> [1] 0.1 #> #> [[38]][[5]] #> [1] \"setosa\" #> #> #> [[39]] #> [[39]][[1]] #> [1] 4.4 #> #> [[39]][[2]] #> [1] 3 #> #> [[39]][[3]] #> [1] 1.3 #> #> [[39]][[4]] #> [1] 0.2 #> #> [[39]][[5]] #> [1] \"setosa\" #> #> #> [[40]] #> [[40]][[1]] #> [1] 5.1 #> #> [[40]][[2]] #> [1] 3.4 #> #> [[40]][[3]] #> [1] 1.5 #> #> [[40]][[4]] #> [1] 0.2 #> #> [[40]][[5]] #> [1] \"setosa\" #> #> #> [[41]] #> [[41]][[1]] #> [1] 5 #> #> [[41]][[2]] #> [1] 3.5 #> #> [[41]][[3]] #> [1] 1.3 #> #> [[41]][[4]] #> [1] 0.3 #> #> [[41]][[5]] #> [1] \"setosa\" #> #> #> [[42]] #> [[42]][[1]] #> [1] 4.5 #> #> [[42]][[2]] #> [1] 2.3 #> #> [[42]][[3]] #> [1] 1.3 #> #> [[42]][[4]] #> [1] 0.3 #> #> [[42]][[5]] #> [1] \"setosa\" #> #> #> [[43]] #> [[43]][[1]] #> [1] 4.4 #> #> [[43]][[2]] #> [1] 3.2 #> #> [[43]][[3]] #> [1] 1.3 #> #> [[43]][[4]] #> [1] 0.2 #> #> [[43]][[5]] #> [1] \"setosa\" #> #> #> [[44]] #> [[44]][[1]] #> [1] 5 #> #> [[44]][[2]] #> [1] 3.5 #> #> [[44]][[3]] #> [1] 1.6 #> #> [[44]][[4]] #> [1] 0.6 #> #> [[44]][[5]] #> [1] \"setosa\" #> #> #> [[45]] #> [[45]][[1]] #> [1] 5.1 #> #> [[45]][[2]] #> [1] 3.8 #> #> [[45]][[3]] #> [1] 1.9 #> #> [[45]][[4]] #> [1] 0.4 #> #> [[45]][[5]] #> [1] \"setosa\" #> #> #> [[46]] #> [[46]][[1]] #> [1] 4.8 #> #> [[46]][[2]] #> [1] 3 #> #> [[46]][[3]] #> [1] 1.4 #> #> [[46]][[4]] #> [1] 0.3 #> #> [[46]][[5]] #> [1] \"setosa\" #> #> #> [[47]] #> [[47]][[1]] #> [1] 5.1 #> #> [[47]][[2]] #> [1] 3.8 #> #> [[47]][[3]] #> [1] 1.6 #> #> [[47]][[4]] #> [1] 0.2 #> #> [[47]][[5]] #> [1] \"setosa\" #> #> #> [[48]] #> [[48]][[1]] #> [1] 4.6 #> #> [[48]][[2]] #> [1] 3.2 #> #> [[48]][[3]] #> [1] 1.4 #> #> [[48]][[4]] #> [1] 0.2 #> #> [[48]][[5]] #> [1] \"setosa\" #> #> #> [[49]] #> [[49]][[1]] #> [1] 5.3 #> #> [[49]][[2]] #> [1] 3.7 #> #> [[49]][[3]] #> [1] 1.5 #> #> [[49]][[4]] #> [1] 0.2 #> #> [[49]][[5]] #> [1] \"setosa\" #> #> #> [[50]] #> [[50]][[1]] #> [1] 5 #> #> [[50]][[2]] #> [1] 3.3 #> #> [[50]][[3]] #> [1] 1.4 #> #> [[50]][[4]] #> [1] 0.2 #> #> [[50]][[5]] #> [1] \"setosa\" #> #> #> [[51]] #> [[51]][[1]] #> [1] 7 #> #> [[51]][[2]] #> [1] 3.2 #> #> [[51]][[3]] #> [1] 4.7 #> #> [[51]][[4]] #> [1] 1.4 #> #> [[51]][[5]] #> [1] \"versicolor\" #> #> #> [[52]] #> [[52]][[1]] #> [1] 6.4 #> #> [[52]][[2]] #> [1] 3.2 #> #> [[52]][[3]] #> [1] 4.5 #> #> [[52]][[4]] #> [1] 1.5 #> #> [[52]][[5]] #> [1] \"versicolor\" #> #> #> [[53]] #> [[53]][[1]] #> [1] 6.9 #> #> [[53]][[2]] #> [1] 3.1 #> #> [[53]][[3]] #> [1] 4.9 #> #> [[53]][[4]] #> [1] 1.5 #> #> [[53]][[5]] #> [1] \"versicolor\" #> #> #> [[54]] #> [[54]][[1]] #> [1] 5.5 #> #> [[54]][[2]] #> [1] 2.3 #> #> [[54]][[3]] #> [1] 4 #> #> [[54]][[4]] #> [1] 1.3 #> #> [[54]][[5]] #> [1] \"versicolor\" #> #> #> [[55]] #> [[55]][[1]] #> [1] 6.5 #> #> [[55]][[2]] #> [1] 2.8 #> #> [[55]][[3]] #> [1] 4.6 #> #> [[55]][[4]] #> [1] 1.5 #> #> [[55]][[5]] #> [1] \"versicolor\" #> #> #> [[56]] #> [[56]][[1]] #> [1] 5.7 #> #> [[56]][[2]] #> [1] 2.8 #> #> [[56]][[3]] #> [1] 4.5 #> #> [[56]][[4]] #> [1] 1.3 #> #> [[56]][[5]] #> [1] \"versicolor\" #> #> #> [[57]] #> [[57]][[1]] #> [1] 6.3 #> #> [[57]][[2]] #> [1] 3.3 #> #> [[57]][[3]] #> [1] 4.7 #> #> [[57]][[4]] #> [1] 1.6 #> #> [[57]][[5]] #> [1] \"versicolor\" #> #> #> [[58]] #> [[58]][[1]] #> [1] 4.9 #> #> [[58]][[2]] #> [1] 2.4 #> #> [[58]][[3]] #> [1] 3.3 #> #> [[58]][[4]] #> [1] 1 #> #> [[58]][[5]] #> [1] \"versicolor\" #> #> #> [[59]] #> [[59]][[1]] #> [1] 6.6 #> #> [[59]][[2]] #> [1] 2.9 #> #> [[59]][[3]] #> [1] 4.6 #> #> [[59]][[4]] #> [1] 1.3 #> #> [[59]][[5]] #> [1] \"versicolor\" #> #> #> [[60]] #> [[60]][[1]] #> [1] 5.2 #> #> [[60]][[2]] #> [1] 2.7 #> #> [[60]][[3]] #> [1] 3.9 #> #> [[60]][[4]] #> [1] 1.4 #> #> [[60]][[5]] #> [1] \"versicolor\" #> #> #> [[61]] #> [[61]][[1]] #> [1] 5 #> #> [[61]][[2]] #> [1] 2 #> #> [[61]][[3]] #> [1] 3.5 #> #> [[61]][[4]] #> [1] 1 #> #> [[61]][[5]] #> [1] \"versicolor\" #> #> #> [[62]] #> [[62]][[1]] #> [1] 5.9 #> #> [[62]][[2]] #> [1] 3 #> #> [[62]][[3]] #> [1] 4.2 #> #> [[62]][[4]] #> [1] 1.5 #> #> [[62]][[5]] #> [1] \"versicolor\" #> #> #> [[63]] #> [[63]][[1]] #> [1] 6 #> #> [[63]][[2]] #> [1] 2.2 #> #> [[63]][[3]] #> [1] 4 #> #> [[63]][[4]] #> [1] 1 #> #> [[63]][[5]] #> [1] \"versicolor\" #> #> #> [[64]] #> [[64]][[1]] #> [1] 6.1 #> #> [[64]][[2]] #> [1] 2.9 #> #> [[64]][[3]] #> [1] 4.7 #> #> [[64]][[4]] #> [1] 1.4 #> #> [[64]][[5]] #> [1] \"versicolor\" #> #> #> [[65]] #> [[65]][[1]] #> [1] 5.6 #> #> [[65]][[2]] #> [1] 2.9 #> #> [[65]][[3]] #> [1] 3.6 #> #> [[65]][[4]] #> [1] 1.3 #> #> [[65]][[5]] #> [1] \"versicolor\" #> #> #> [[66]] #> [[66]][[1]] #> [1] 6.7 #> #> [[66]][[2]] #> [1] 3.1 #> #> [[66]][[3]] #> [1] 4.4 #> #> [[66]][[4]] #> [1] 1.4 #> #> [[66]][[5]] #> [1] \"versicolor\" #> #> #> [[67]] #> [[67]][[1]] #> [1] 5.6 #> #> [[67]][[2]] #> [1] 3 #> #> [[67]][[3]] #> [1] 4.5 #> #> [[67]][[4]] #> [1] 1.5 #> #> [[67]][[5]] #> [1] \"versicolor\" #> #> #> [[68]] #> [[68]][[1]] #> [1] 5.8 #> #> [[68]][[2]] #> [1] 2.7 #> #> [[68]][[3]] #> [1] 4.1 #> #> [[68]][[4]] #> [1] 1 #> #> [[68]][[5]] #> [1] \"versicolor\" #> #> #> [[69]] #> [[69]][[1]] #> [1] 6.2 #> #> [[69]][[2]] #> [1] 2.2 #> #> [[69]][[3]] #> [1] 4.5 #> #> [[69]][[4]] #> [1] 1.5 #> #> [[69]][[5]] #> [1] \"versicolor\" #> #> #> [[70]] #> [[70]][[1]] #> [1] 5.6 #> #> [[70]][[2]] #> [1] 2.5 #> #> [[70]][[3]] #> [1] 3.9 #> #> [[70]][[4]] #> [1] 1.1 #> #> [[70]][[5]] #> [1] \"versicolor\" #> #> #> [[71]] #> [[71]][[1]] #> [1] 5.9 #> #> [[71]][[2]] #> [1] 3.2 #> #> [[71]][[3]] #> [1] 4.8 #> #> [[71]][[4]] #> [1] 1.8 #> #> [[71]][[5]] #> [1] \"versicolor\" #> #> #> [[72]] #> [[72]][[1]] #> [1] 6.1 #> #> [[72]][[2]] #> [1] 2.8 #> #> [[72]][[3]] #> [1] 4 #> #> [[72]][[4]] #> [1] 1.3 #> #> [[72]][[5]] #> [1] \"versicolor\" #> #> #> [[73]] #> [[73]][[1]] #> [1] 6.3 #> #> [[73]][[2]] #> [1] 2.5 #> #> [[73]][[3]] #> [1] 4.9 #> #> [[73]][[4]] #> [1] 1.5 #> #> [[73]][[5]] #> [1] \"versicolor\" #> #> #> [[74]] #> [[74]][[1]] #> [1] 6.1 #> #> [[74]][[2]] #> [1] 2.8 #> #> [[74]][[3]] #> [1] 4.7 #> #> [[74]][[4]] #> [1] 1.2 #> #> [[74]][[5]] #> [1] \"versicolor\" #> #> #> [[75]] #> [[75]][[1]] #> [1] 6.4 #> #> [[75]][[2]] #> [1] 2.9 #> #> [[75]][[3]] #> [1] 4.3 #> #> [[75]][[4]] #> [1] 1.3 #> #> [[75]][[5]] #> [1] \"versicolor\" #> #> #> [[76]] #> [[76]][[1]] #> [1] 6.6 #> #> [[76]][[2]] #> [1] 3 #> #> [[76]][[3]] #> [1] 4.4 #> #> [[76]][[4]] #> [1] 1.4 #> #> [[76]][[5]] #> [1] \"versicolor\" #> #> #> [[77]] #> [[77]][[1]] #> [1] 6.8 #> #> [[77]][[2]] #> [1] 2.8 #> #> [[77]][[3]] #> [1] 4.8 #> #> [[77]][[4]] #> [1] 1.4 #> #> [[77]][[5]] #> [1] \"versicolor\" #> #> #> [[78]] #> [[78]][[1]] #> [1] 6.7 #> #> [[78]][[2]] #> [1] 3 #> #> [[78]][[3]] #> [1] 5 #> #> [[78]][[4]] #> [1] 1.7 #> #> [[78]][[5]] #> [1] \"versicolor\" #> #> #> [[79]] #> [[79]][[1]] #> [1] 6 #> #> [[79]][[2]] #> [1] 2.9 #> #> [[79]][[3]] #> [1] 4.5 #> #> [[79]][[4]] #> [1] 1.5 #> #> [[79]][[5]] #> [1] \"versicolor\" #> #> #> [[80]] #> [[80]][[1]] #> [1] 5.7 #> #> [[80]][[2]] #> [1] 2.6 #> #> [[80]][[3]] #> [1] 3.5 #> #> [[80]][[4]] #> [1] 1 #> #> [[80]][[5]] #> [1] \"versicolor\" #> #> #> [[81]] #> [[81]][[1]] #> [1] 5.5 #> #> [[81]][[2]] #> [1] 2.4 #> #> [[81]][[3]] #> [1] 3.8 #> #> [[81]][[4]] #> [1] 1.1 #> #> [[81]][[5]] #> [1] \"versicolor\" #> #> #> [[82]] #> [[82]][[1]] #> [1] 5.5 #> #> [[82]][[2]] #> [1] 2.4 #> #> [[82]][[3]] #> [1] 3.7 #> #> [[82]][[4]] #> [1] 1 #> #> [[82]][[5]] #> [1] \"versicolor\" #> #> #> [[83]] #> [[83]][[1]] #> [1] 5.8 #> #> [[83]][[2]] #> [1] 2.7 #> #> [[83]][[3]] #> [1] 3.9 #> #> [[83]][[4]] #> [1] 1.2 #> #> [[83]][[5]] #> [1] \"versicolor\" #> #> #> [[84]] #> [[84]][[1]] #> [1] 6 #> #> [[84]][[2]] #> [1] 2.7 #> #> [[84]][[3]] #> [1] 5.1 #> #> [[84]][[4]] #> [1] 1.6 #> #> [[84]][[5]] #> [1] \"versicolor\" #> #> #> [[85]] #> [[85]][[1]] #> [1] 5.4 #> #> [[85]][[2]] #> [1] 3 #> #> [[85]][[3]] #> [1] 4.5 #> #> [[85]][[4]] #> [1] 1.5 #> #> [[85]][[5]] #> [1] \"versicolor\" #> #> #> [[86]] #> [[86]][[1]] #> [1] 6 #> #> [[86]][[2]] #> [1] 3.4 #> #> [[86]][[3]] #> [1] 4.5 #> #> [[86]][[4]] #> [1] 1.6 #> #> [[86]][[5]] #> [1] \"versicolor\" #> #> #> [[87]] #> [[87]][[1]] #> [1] 6.7 #> #> [[87]][[2]] #> [1] 3.1 #> #> [[87]][[3]] #> [1] 4.7 #> #> [[87]][[4]] #> [1] 1.5 #> #> [[87]][[5]] #> [1] \"versicolor\" #> #> #> [[88]] #> [[88]][[1]] #> [1] 6.3 #> #> [[88]][[2]] #> [1] 2.3 #> #> [[88]][[3]] #> [1] 4.4 #> #> [[88]][[4]] #> [1] 1.3 #> #> [[88]][[5]] #> [1] \"versicolor\" #> #> #> [[89]] #> [[89]][[1]] #> [1] 5.6 #> #> [[89]][[2]] #> [1] 3 #> #> [[89]][[3]] #> [1] 4.1 #> #> [[89]][[4]] #> [1] 1.3 #> #> [[89]][[5]] #> [1] \"versicolor\" #> #> #> [[90]] #> [[90]][[1]] #> [1] 5.5 #> #> [[90]][[2]] #> [1] 2.5 #> #> [[90]][[3]] #> [1] 4 #> #> [[90]][[4]] #> [1] 1.3 #> #> [[90]][[5]] #> [1] \"versicolor\" #> #> #> [[91]] #> [[91]][[1]] #> [1] 5.5 #> #> [[91]][[2]] #> [1] 2.6 #> #> [[91]][[3]] #> [1] 4.4 #> #> [[91]][[4]] #> [1] 1.2 #> #> [[91]][[5]] #> [1] \"versicolor\" #> #> #> [[92]] #> [[92]][[1]] #> [1] 6.1 #> #> [[92]][[2]] #> [1] 3 #> #> [[92]][[3]] #> [1] 4.6 #> #> [[92]][[4]] #> [1] 1.4 #> #> [[92]][[5]] #> [1] \"versicolor\" #> #> #> [[93]] #> [[93]][[1]] #> [1] 5.8 #> #> [[93]][[2]] #> [1] 2.6 #> #> [[93]][[3]] #> [1] 4 #> #> [[93]][[4]] #> [1] 1.2 #> #> [[93]][[5]] #> [1] \"versicolor\" #> #> #> [[94]] #> [[94]][[1]] #> [1] 5 #> #> [[94]][[2]] #> [1] 2.3 #> #> [[94]][[3]] #> [1] 3.3 #> #> [[94]][[4]] #> [1] 1 #> #> [[94]][[5]] #> [1] \"versicolor\" #> #> #> [[95]] #> [[95]][[1]] #> [1] 5.6 #> #> [[95]][[2]] #> [1] 2.7 #> #> [[95]][[3]] #> [1] 4.2 #> #> [[95]][[4]] #> [1] 1.3 #> #> [[95]][[5]] #> [1] \"versicolor\" #> #> #> [[96]] #> [[96]][[1]] #> [1] 5.7 #> #> [[96]][[2]] #> [1] 3 #> #> [[96]][[3]] #> [1] 4.2 #> #> [[96]][[4]] #> [1] 1.2 #> #> [[96]][[5]] #> [1] \"versicolor\" #> #> #> [[97]] #> [[97]][[1]] #> [1] 5.7 #> #> [[97]][[2]] #> [1] 2.9 #> #> [[97]][[3]] #> [1] 4.2 #> #> [[97]][[4]] #> [1] 1.3 #> #> [[97]][[5]] #> [1] \"versicolor\" #> #> #> [[98]] #> [[98]][[1]] #> [1] 6.2 #> #> [[98]][[2]] #> [1] 2.9 #> #> [[98]][[3]] #> [1] 4.3 #> #> [[98]][[4]] #> [1] 1.3 #> #> [[98]][[5]] #> [1] \"versicolor\" #> #> #> [[99]] #> [[99]][[1]] #> [1] 5.1 #> #> [[99]][[2]] #> [1] 2.5 #> #> [[99]][[3]] #> [1] 3 #> #> [[99]][[4]] #> [1] 1.1 #> #> [[99]][[5]] #> [1] \"versicolor\" #> #> #> [[100]] #> [[100]][[1]] #> [1] 5.7 #> #> [[100]][[2]] #> [1] 2.8 #> #> [[100]][[3]] #> [1] 4.1 #> #> [[100]][[4]] #> [1] 1.3 #> #> [[100]][[5]] #> [1] \"versicolor\" #> #> #> [[101]] #> [[101]][[1]] #> [1] 6.3 #> #> [[101]][[2]] #> [1] 3.3 #> #> [[101]][[3]] #> [1] 6 #> #> [[101]][[4]] #> [1] 2.5 #> #> [[101]][[5]] #> [1] \"virginica\" #> #> #> [[102]] #> [[102]][[1]] #> [1] 5.8 #> #> [[102]][[2]] #> [1] 2.7 #> #> [[102]][[3]] #> [1] 5.1 #> #> [[102]][[4]] #> [1] 1.9 #> #> [[102]][[5]] #> [1] \"virginica\" #> #> #> [[103]] #> [[103]][[1]] #> [1] 7.1 #> #> [[103]][[2]] #> [1] 3 #> #> [[103]][[3]] #> [1] 5.9 #> #> [[103]][[4]] #> [1] 2.1 #> #> [[103]][[5]] #> [1] \"virginica\" #> #> #> [[104]] #> [[104]][[1]] #> [1] 6.3 #> #> [[104]][[2]] #> [1] 2.9 #> #> [[104]][[3]] #> [1] 5.6 #> #> [[104]][[4]] #> [1] 1.8 #> #> [[104]][[5]] #> [1] \"virginica\" #> #> #> [[105]] #> [[105]][[1]] #> [1] 6.5 #> #> [[105]][[2]] #> [1] 3 #> #> [[105]][[3]] #> [1] 5.8 #> #> [[105]][[4]] #> [1] 2.2 #> #> [[105]][[5]] #> [1] \"virginica\" #> #> #> [[106]] #> [[106]][[1]] #> [1] 7.6 #> #> [[106]][[2]] #> [1] 3 #> #> [[106]][[3]] #> [1] 6.6 #> #> [[106]][[4]] #> [1] 2.1 #> #> [[106]][[5]] #> [1] \"virginica\" #> #> #> [[107]] #> [[107]][[1]] #> [1] 4.9 #> #> [[107]][[2]] #> [1] 2.5 #> #> [[107]][[3]] #> [1] 4.5 #> #> [[107]][[4]] #> [1] 1.7 #> #> [[107]][[5]] #> [1] \"virginica\" #> #> #> [[108]] #> [[108]][[1]] #> [1] 7.3 #> #> [[108]][[2]] #> [1] 2.9 #> #> [[108]][[3]] #> [1] 6.3 #> #> [[108]][[4]] #> [1] 1.8 #> #> [[108]][[5]] #> [1] \"virginica\" #> #> #> [[109]] #> [[109]][[1]] #> [1] 6.7 #> #> [[109]][[2]] #> [1] 2.5 #> #> [[109]][[3]] #> [1] 5.8 #> #> [[109]][[4]] #> [1] 1.8 #> #> [[109]][[5]] #> [1] \"virginica\" #> #> #> [[110]] #> [[110]][[1]] #> [1] 7.2 #> #> [[110]][[2]] #> [1] 3.6 #> #> [[110]][[3]] #> [1] 6.1 #> #> [[110]][[4]] #> [1] 2.5 #> #> [[110]][[5]] #> [1] \"virginica\" #> #> #> [[111]] #> [[111]][[1]] #> [1] 6.5 #> #> [[111]][[2]] #> [1] 3.2 #> #> [[111]][[3]] #> [1] 5.1 #> #> [[111]][[4]] #> [1] 2 #> #> [[111]][[5]] #> [1] \"virginica\" #> #> #> [[112]] #> [[112]][[1]] #> [1] 6.4 #> #> [[112]][[2]] #> [1] 2.7 #> #> [[112]][[3]] #> [1] 5.3 #> #> [[112]][[4]] #> [1] 1.9 #> #> [[112]][[5]] #> [1] \"virginica\" #> #> #> [[113]] #> [[113]][[1]] #> [1] 6.8 #> #> [[113]][[2]] #> [1] 3 #> #> [[113]][[3]] #> [1] 5.5 #> #> [[113]][[4]] #> [1] 2.1 #> #> [[113]][[5]] #> [1] \"virginica\" #> #> #> [[114]] #> [[114]][[1]] #> [1] 5.7 #> #> [[114]][[2]] #> [1] 2.5 #> #> [[114]][[3]] #> [1] 5 #> #> [[114]][[4]] #> [1] 2 #> #> [[114]][[5]] #> [1] \"virginica\" #> #> #> [[115]] #> [[115]][[1]] #> [1] 5.8 #> #> [[115]][[2]] #> [1] 2.8 #> #> [[115]][[3]] #> [1] 5.1 #> #> [[115]][[4]] #> [1] 2.4 #> #> [[115]][[5]] #> [1] \"virginica\" #> #> #> [[116]] #> [[116]][[1]] #> [1] 6.4 #> #> [[116]][[2]] #> [1] 3.2 #> #> [[116]][[3]] #> [1] 5.3 #> #> [[116]][[4]] #> [1] 2.3 #> #> [[116]][[5]] #> [1] \"virginica\" #> #> #> [[117]] #> [[117]][[1]] #> [1] 6.5 #> #> [[117]][[2]] #> [1] 3 #> #> [[117]][[3]] #> [1] 5.5 #> #> [[117]][[4]] #> [1] 1.8 #> #> [[117]][[5]] #> [1] \"virginica\" #> #> #> [[118]] #> [[118]][[1]] #> [1] 7.7 #> #> [[118]][[2]] #> [1] 3.8 #> #> [[118]][[3]] #> [1] 6.7 #> #> [[118]][[4]] #> [1] 2.2 #> #> [[118]][[5]] #> [1] \"virginica\" #> #> #> [[119]] #> [[119]][[1]] #> [1] 7.7 #> #> [[119]][[2]] #> [1] 2.6 #> #> [[119]][[3]] #> [1] 6.9 #> #> [[119]][[4]] #> [1] 2.3 #> #> [[119]][[5]] #> [1] \"virginica\" #> #> #> [[120]] #> [[120]][[1]] #> [1] 6 #> #> [[120]][[2]] #> [1] 2.2 #> #> [[120]][[3]] #> [1] 5 #> #> [[120]][[4]] #> [1] 1.5 #> #> [[120]][[5]] #> [1] \"virginica\" #> #> #> [[121]] #> [[121]][[1]] #> [1] 6.9 #> #> [[121]][[2]] #> [1] 3.2 #> #> [[121]][[3]] #> [1] 5.7 #> #> [[121]][[4]] #> [1] 2.3 #> #> [[121]][[5]] #> [1] \"virginica\" #> #> #> [[122]] #> [[122]][[1]] #> [1] 5.6 #> #> [[122]][[2]] #> [1] 2.8 #> #> [[122]][[3]] #> [1] 4.9 #> #> [[122]][[4]] #> [1] 2 #> #> [[122]][[5]] #> [1] \"virginica\" #> #> #> [[123]] #> [[123]][[1]] #> [1] 7.7 #> #> [[123]][[2]] #> [1] 2.8 #> #> [[123]][[3]] #> [1] 6.7 #> #> [[123]][[4]] #> [1] 2 #> #> [[123]][[5]] #> [1] \"virginica\" #> #> #> [[124]] #> [[124]][[1]] #> [1] 6.3 #> #> [[124]][[2]] #> [1] 2.7 #> #> [[124]][[3]] #> [1] 4.9 #> #> [[124]][[4]] #> [1] 1.8 #> #> [[124]][[5]] #> [1] \"virginica\" #> #> #> [[125]] #> [[125]][[1]] #> [1] 6.7 #> #> [[125]][[2]] #> [1] 3.3 #> #> [[125]][[3]] #> [1] 5.7 #> #> [[125]][[4]] #> [1] 2.1 #> #> [[125]][[5]] #> [1] \"virginica\" #> #> #> [[126]] #> [[126]][[1]] #> [1] 7.2 #> #> [[126]][[2]] #> [1] 3.2 #> #> [[126]][[3]] #> [1] 6 #> #> [[126]][[4]] #> [1] 1.8 #> #> [[126]][[5]] #> [1] \"virginica\" #> #> #> [[127]] #> [[127]][[1]] #> [1] 6.2 #> #> [[127]][[2]] #> [1] 2.8 #> #> [[127]][[3]] #> [1] 4.8 #> #> [[127]][[4]] #> [1] 1.8 #> #> [[127]][[5]] #> [1] \"virginica\" #> #> #> [[128]] #> [[128]][[1]] #> [1] 6.1 #> #> [[128]][[2]] #> [1] 3 #> #> [[128]][[3]] #> [1] 4.9 #> #> [[128]][[4]] #> [1] 1.8 #> #> [[128]][[5]] #> [1] \"virginica\" #> #> #> [[129]] #> [[129]][[1]] #> [1] 6.4 #> #> [[129]][[2]] #> [1] 2.8 #> #> [[129]][[3]] #> [1] 5.6 #> #> [[129]][[4]] #> [1] 2.1 #> #> [[129]][[5]] #> [1] \"virginica\" #> #> #> [[130]] #> [[130]][[1]] #> [1] 7.2 #> #> [[130]][[2]] #> [1] 3 #> #> [[130]][[3]] #> [1] 5.8 #> #> [[130]][[4]] #> [1] 1.6 #> #> [[130]][[5]] #> [1] \"virginica\" #> #> #> [[131]] #> [[131]][[1]] #> [1] 7.4 #> #> [[131]][[2]] #> [1] 2.8 #> #> [[131]][[3]] #> [1] 6.1 #> #> [[131]][[4]] #> [1] 1.9 #> #> [[131]][[5]] #> [1] \"virginica\" #> #> #> [[132]] #> [[132]][[1]] #> [1] 7.9 #> #> [[132]][[2]] #> [1] 3.8 #> #> [[132]][[3]] #> [1] 6.4 #> #> [[132]][[4]] #> [1] 2 #> #> [[132]][[5]] #> [1] \"virginica\" #> #> #> [[133]] #> [[133]][[1]] #> [1] 6.4 #> #> [[133]][[2]] #> [1] 2.8 #> #> [[133]][[3]] #> [1] 5.6 #> #> [[133]][[4]] #> [1] 2.2 #> #> [[133]][[5]] #> [1] \"virginica\" #> #> #> [[134]] #> [[134]][[1]] #> [1] 6.3 #> #> [[134]][[2]] #> [1] 2.8 #> #> [[134]][[3]] #> [1] 5.1 #> #> [[134]][[4]] #> [1] 1.5 #> #> [[134]][[5]] #> [1] \"virginica\" #> #> #> [[135]] #> [[135]][[1]] #> [1] 6.1 #> #> [[135]][[2]] #> [1] 2.6 #> #> [[135]][[3]] #> [1] 5.6 #> #> [[135]][[4]] #> [1] 1.4 #> #> [[135]][[5]] #> [1] \"virginica\" #> #> #> [[136]] #> [[136]][[1]] #> [1] 7.7 #> #> [[136]][[2]] #> [1] 3 #> #> [[136]][[3]] #> [1] 6.1 #> #> [[136]][[4]] #> [1] 2.3 #> #> [[136]][[5]] #> [1] \"virginica\" #> #> #> [[137]] #> [[137]][[1]] #> [1] 6.3 #> #> [[137]][[2]] #> [1] 3.4 #> #> [[137]][[3]] #> [1] 5.6 #> #> [[137]][[4]] #> [1] 2.4 #> #> [[137]][[5]] #> [1] \"virginica\" #> #> #> [[138]] #> [[138]][[1]] #> [1] 6.4 #> #> [[138]][[2]] #> [1] 3.1 #> #> [[138]][[3]] #> [1] 5.5 #> #> [[138]][[4]] #> [1] 1.8 #> #> [[138]][[5]] #> [1] \"virginica\" #> #> #> [[139]] #> [[139]][[1]] #> [1] 6 #> #> [[139]][[2]] #> [1] 3 #> #> [[139]][[3]] #> [1] 4.8 #> #> [[139]][[4]] #> [1] 1.8 #> #> [[139]][[5]] #> [1] \"virginica\" #> #> #> [[140]] #> [[140]][[1]] #> [1] 6.9 #> #> [[140]][[2]] #> [1] 3.1 #> #> [[140]][[3]] #> [1] 5.4 #> #> [[140]][[4]] #> [1] 2.1 #> #> [[140]][[5]] #> [1] \"virginica\" #> #> #> [[141]] #> [[141]][[1]] #> [1] 6.7 #> #> [[141]][[2]] #> [1] 3.1 #> #> [[141]][[3]] #> [1] 5.6 #> #> [[141]][[4]] #> [1] 2.4 #> #> [[141]][[5]] #> [1] \"virginica\" #> #> #> [[142]] #> [[142]][[1]] #> [1] 6.9 #> #> [[142]][[2]] #> [1] 3.1 #> #> [[142]][[3]] #> [1] 5.1 #> #> [[142]][[4]] #> [1] 2.3 #> #> [[142]][[5]] #> [1] \"virginica\" #> #> #> [[143]] #> [[143]][[1]] #> [1] 5.8 #> #> [[143]][[2]] #> [1] 2.7 #> #> [[143]][[3]] #> [1] 5.1 #> #> [[143]][[4]] #> [1] 1.9 #> #> [[143]][[5]] #> [1] \"virginica\" #> #> #> [[144]] #> [[144]][[1]] #> [1] 6.8 #> #> [[144]][[2]] #> [1] 3.2 #> #> [[144]][[3]] #> [1] 5.9 #> #> [[144]][[4]] #> [1] 2.3 #> #> [[144]][[5]] #> [1] \"virginica\" #> #> #> [[145]] #> [[145]][[1]] #> [1] 6.7 #> #> [[145]][[2]] #> [1] 3.3 #> #> [[145]][[3]] #> [1] 5.7 #> #> [[145]][[4]] #> [1] 2.5 #> #> [[145]][[5]] #> [1] \"virginica\" #> #> #> [[146]] #> [[146]][[1]] #> [1] 6.7 #> #> [[146]][[2]] #> [1] 3 #> #> [[146]][[3]] #> [1] 5.2 #> #> [[146]][[4]] #> [1] 2.3 #> #> [[146]][[5]] #> [1] \"virginica\" #> #> #> [[147]] #> [[147]][[1]] #> [1] 6.3 #> #> [[147]][[2]] #> [1] 2.5 #> #> [[147]][[3]] #> [1] 5 #> #> [[147]][[4]] #> [1] 1.9 #> #> [[147]][[5]] #> [1] \"virginica\" #> #> #> [[148]] #> [[148]][[1]] #> [1] 6.5 #> #> [[148]][[2]] #> [1] 3 #> #> [[148]][[3]] #> [1] 5.2 #> #> [[148]][[4]] #> [1] 2 #> #> [[148]][[5]] #> [1] \"virginica\" #> #> #> [[149]] #> [[149]][[1]] #> [1] 6.2 #> #> [[149]][[2]] #> [1] 3.4 #> #> [[149]][[3]] #> [1] 5.4 #> #> [[149]][[4]] #> [1] 2.3 #> #> [[149]][[5]] #> [1] \"virginica\" #> #> #> [[150]] #> [[150]][[1]] #> [1] 5.9 #> #> [[150]][[2]] #> [1] 3 #> #> [[150]][[3]] #> [1] 5.1 #> #> [[150]][[4]] #> [1] 1.8 #> #> [[150]][[5]] #> [1] \"virginica\" #> #> # Keep variables names parse_df(iris[, 1:2], add_names = TRUE) #> [[1]] #> [[1]]$Sepal.Length #> [1] 5.1 #> #> [[1]]$Sepal.Width #> [1] 3.5 #> #> #> [[2]] #> [[2]]$Sepal.Length #> [1] 4.9 #> #> [[2]]$Sepal.Width #> [1] 3 #> #> #> [[3]] #> [[3]]$Sepal.Length #> [1] 4.7 #> #> [[3]]$Sepal.Width #> [1] 3.2 #> #> #> [[4]] #> [[4]]$Sepal.Length #> [1] 4.6 #> #> [[4]]$Sepal.Width #> [1] 3.1 #> #> #> [[5]] #> [[5]]$Sepal.Length #> [1] 5 #> #> [[5]]$Sepal.Width #> [1] 3.6 #> #> #> [[6]] #> [[6]]$Sepal.Length #> [1] 5.4 #> #> [[6]]$Sepal.Width #> [1] 3.9 #> #> #> [[7]] #> [[7]]$Sepal.Length #> [1] 4.6 #> #> [[7]]$Sepal.Width #> [1] 3.4 #> #> #> [[8]] #> [[8]]$Sepal.Length #> [1] 5 #> #> [[8]]$Sepal.Width #> [1] 3.4 #> #> #> [[9]] #> [[9]]$Sepal.Length #> [1] 4.4 #> #> [[9]]$Sepal.Width #> [1] 2.9 #> #> #> [[10]] #> [[10]]$Sepal.Length #> [1] 4.9 #> #> [[10]]$Sepal.Width #> [1] 3.1 #> #> #> [[11]] #> [[11]]$Sepal.Length #> [1] 5.4 #> #> [[11]]$Sepal.Width #> [1] 3.7 #> #> #> [[12]] #> [[12]]$Sepal.Length #> [1] 4.8 #> #> [[12]]$Sepal.Width #> [1] 3.4 #> #> #> [[13]] #> [[13]]$Sepal.Length #> [1] 4.8 #> #> [[13]]$Sepal.Width #> [1] 3 #> #> #> [[14]] #> [[14]]$Sepal.Length #> [1] 4.3 #> #> [[14]]$Sepal.Width #> [1] 3 #> #> #> [[15]] #> [[15]]$Sepal.Length #> [1] 5.8 #> #> [[15]]$Sepal.Width #> [1] 4 #> #> #> [[16]] #> [[16]]$Sepal.Length #> [1] 5.7 #> #> [[16]]$Sepal.Width #> [1] 4.4 #> #> #> [[17]] #> [[17]]$Sepal.Length #> [1] 5.4 #> #> [[17]]$Sepal.Width #> [1] 3.9 #> #> #> [[18]] #> [[18]]$Sepal.Length #> [1] 5.1 #> #> [[18]]$Sepal.Width #> [1] 3.5 #> #> #> [[19]] #> [[19]]$Sepal.Length #> [1] 5.7 #> #> [[19]]$Sepal.Width #> [1] 3.8 #> #> #> [[20]] #> [[20]]$Sepal.Length #> [1] 5.1 #> #> [[20]]$Sepal.Width #> [1] 3.8 #> #> #> [[21]] #> [[21]]$Sepal.Length #> [1] 5.4 #> #> [[21]]$Sepal.Width #> [1] 3.4 #> #> #> [[22]] #> [[22]]$Sepal.Length #> [1] 5.1 #> #> [[22]]$Sepal.Width #> [1] 3.7 #> #> #> [[23]] #> [[23]]$Sepal.Length #> [1] 4.6 #> #> [[23]]$Sepal.Width #> [1] 3.6 #> #> #> [[24]] #> [[24]]$Sepal.Length #> [1] 5.1 #> #> [[24]]$Sepal.Width #> [1] 3.3 #> #> #> [[25]] #> [[25]]$Sepal.Length #> [1] 4.8 #> #> [[25]]$Sepal.Width #> [1] 3.4 #> #> #> [[26]] #> [[26]]$Sepal.Length #> [1] 5 #> #> [[26]]$Sepal.Width #> [1] 3 #> #> #> [[27]] #> [[27]]$Sepal.Length #> [1] 5 #> #> [[27]]$Sepal.Width #> [1] 3.4 #> #> #> [[28]] #> [[28]]$Sepal.Length #> [1] 5.2 #> #> [[28]]$Sepal.Width #> [1] 3.5 #> #> #> [[29]] #> [[29]]$Sepal.Length #> [1] 5.2 #> #> [[29]]$Sepal.Width #> [1] 3.4 #> #> #> [[30]] #> [[30]]$Sepal.Length #> [1] 4.7 #> #> [[30]]$Sepal.Width #> [1] 3.2 #> #> #> [[31]] #> [[31]]$Sepal.Length #> [1] 4.8 #> #> [[31]]$Sepal.Width #> [1] 3.1 #> #> #> [[32]] #> [[32]]$Sepal.Length #> [1] 5.4 #> #> [[32]]$Sepal.Width #> [1] 3.4 #> #> #> [[33]] #> [[33]]$Sepal.Length #> [1] 5.2 #> #> [[33]]$Sepal.Width #> [1] 4.1 #> #> #> [[34]] #> [[34]]$Sepal.Length #> [1] 5.5 #> #> [[34]]$Sepal.Width #> [1] 4.2 #> #> #> [[35]] #> [[35]]$Sepal.Length #> [1] 4.9 #> #> [[35]]$Sepal.Width #> [1] 3.1 #> #> #> [[36]] #> [[36]]$Sepal.Length #> [1] 5 #> #> [[36]]$Sepal.Width #> [1] 3.2 #> #> #> [[37]] #> [[37]]$Sepal.Length #> [1] 5.5 #> #> [[37]]$Sepal.Width #> [1] 3.5 #> #> #> [[38]] #> [[38]]$Sepal.Length #> [1] 4.9 #> #> [[38]]$Sepal.Width #> [1] 3.6 #> #> #> [[39]] #> [[39]]$Sepal.Length #> [1] 4.4 #> #> [[39]]$Sepal.Width #> [1] 3 #> #> #> [[40]] #> [[40]]$Sepal.Length #> [1] 5.1 #> #> [[40]]$Sepal.Width #> [1] 3.4 #> #> #> [[41]] #> [[41]]$Sepal.Length #> [1] 5 #> #> [[41]]$Sepal.Width #> [1] 3.5 #> #> #> [[42]] #> [[42]]$Sepal.Length #> [1] 4.5 #> #> [[42]]$Sepal.Width #> [1] 2.3 #> #> #> [[43]] #> [[43]]$Sepal.Length #> [1] 4.4 #> #> [[43]]$Sepal.Width #> [1] 3.2 #> #> #> [[44]] #> [[44]]$Sepal.Length #> [1] 5 #> #> [[44]]$Sepal.Width #> [1] 3.5 #> #> #> [[45]] #> [[45]]$Sepal.Length #> [1] 5.1 #> #> [[45]]$Sepal.Width #> [1] 3.8 #> #> #> [[46]] #> [[46]]$Sepal.Length #> [1] 4.8 #> #> [[46]]$Sepal.Width #> [1] 3 #> #> #> [[47]] #> [[47]]$Sepal.Length #> [1] 5.1 #> #> [[47]]$Sepal.Width #> [1] 3.8 #> #> #> [[48]] #> [[48]]$Sepal.Length #> [1] 4.6 #> #> [[48]]$Sepal.Width #> [1] 3.2 #> #> #> [[49]] #> [[49]]$Sepal.Length #> [1] 5.3 #> #> [[49]]$Sepal.Width #> [1] 3.7 #> #> #> [[50]] #> [[50]]$Sepal.Length #> [1] 5 #> #> [[50]]$Sepal.Width #> [1] 3.3 #> #> #> [[51]] #> [[51]]$Sepal.Length #> [1] 7 #> #> [[51]]$Sepal.Width #> [1] 3.2 #> #> #> [[52]] #> [[52]]$Sepal.Length #> [1] 6.4 #> #> [[52]]$Sepal.Width #> [1] 3.2 #> #> #> [[53]] #> [[53]]$Sepal.Length #> [1] 6.9 #> #> [[53]]$Sepal.Width #> [1] 3.1 #> #> #> [[54]] #> [[54]]$Sepal.Length #> [1] 5.5 #> #> [[54]]$Sepal.Width #> [1] 2.3 #> #> #> [[55]] #> [[55]]$Sepal.Length #> [1] 6.5 #> #> [[55]]$Sepal.Width #> [1] 2.8 #> #> #> [[56]] #> [[56]]$Sepal.Length #> [1] 5.7 #> #> [[56]]$Sepal.Width #> [1] 2.8 #> #> #> [[57]] #> [[57]]$Sepal.Length #> [1] 6.3 #> #> [[57]]$Sepal.Width #> [1] 3.3 #> #> #> [[58]] #> [[58]]$Sepal.Length #> [1] 4.9 #> #> [[58]]$Sepal.Width #> [1] 2.4 #> #> #> [[59]] #> [[59]]$Sepal.Length #> [1] 6.6 #> #> [[59]]$Sepal.Width #> [1] 2.9 #> #> #> [[60]] #> [[60]]$Sepal.Length #> [1] 5.2 #> #> [[60]]$Sepal.Width #> [1] 2.7 #> #> #> [[61]] #> [[61]]$Sepal.Length #> [1] 5 #> #> [[61]]$Sepal.Width #> [1] 2 #> #> #> [[62]] #> [[62]]$Sepal.Length #> [1] 5.9 #> #> [[62]]$Sepal.Width #> [1] 3 #> #> #> [[63]] #> [[63]]$Sepal.Length #> [1] 6 #> #> [[63]]$Sepal.Width #> [1] 2.2 #> #> #> [[64]] #> [[64]]$Sepal.Length #> [1] 6.1 #> #> [[64]]$Sepal.Width #> [1] 2.9 #> #> #> [[65]] #> [[65]]$Sepal.Length #> [1] 5.6 #> #> [[65]]$Sepal.Width #> [1] 2.9 #> #> #> [[66]] #> [[66]]$Sepal.Length #> [1] 6.7 #> #> [[66]]$Sepal.Width #> [1] 3.1 #> #> #> [[67]] #> [[67]]$Sepal.Length #> [1] 5.6 #> #> [[67]]$Sepal.Width #> [1] 3 #> #> #> [[68]] #> [[68]]$Sepal.Length #> [1] 5.8 #> #> [[68]]$Sepal.Width #> [1] 2.7 #> #> #> [[69]] #> [[69]]$Sepal.Length #> [1] 6.2 #> #> [[69]]$Sepal.Width #> [1] 2.2 #> #> #> [[70]] #> [[70]]$Sepal.Length #> [1] 5.6 #> #> [[70]]$Sepal.Width #> [1] 2.5 #> #> #> [[71]] #> [[71]]$Sepal.Length #> [1] 5.9 #> #> [[71]]$Sepal.Width #> [1] 3.2 #> #> #> [[72]] #> [[72]]$Sepal.Length #> [1] 6.1 #> #> [[72]]$Sepal.Width #> [1] 2.8 #> #> #> [[73]] #> [[73]]$Sepal.Length #> [1] 6.3 #> #> [[73]]$Sepal.Width #> [1] 2.5 #> #> #> [[74]] #> [[74]]$Sepal.Length #> [1] 6.1 #> #> [[74]]$Sepal.Width #> [1] 2.8 #> #> #> [[75]] #> [[75]]$Sepal.Length #> [1] 6.4 #> #> [[75]]$Sepal.Width #> [1] 2.9 #> #> #> [[76]] #> [[76]]$Sepal.Length #> [1] 6.6 #> #> [[76]]$Sepal.Width #> [1] 3 #> #> #> [[77]] #> [[77]]$Sepal.Length #> [1] 6.8 #> #> [[77]]$Sepal.Width #> [1] 2.8 #> #> #> [[78]] #> [[78]]$Sepal.Length #> [1] 6.7 #> #> [[78]]$Sepal.Width #> [1] 3 #> #> #> [[79]] #> [[79]]$Sepal.Length #> [1] 6 #> #> [[79]]$Sepal.Width #> [1] 2.9 #> #> #> [[80]] #> [[80]]$Sepal.Length #> [1] 5.7 #> #> [[80]]$Sepal.Width #> [1] 2.6 #> #> #> [[81]] #> [[81]]$Sepal.Length #> [1] 5.5 #> #> [[81]]$Sepal.Width #> [1] 2.4 #> #> #> [[82]] #> [[82]]$Sepal.Length #> [1] 5.5 #> #> [[82]]$Sepal.Width #> [1] 2.4 #> #> #> [[83]] #> [[83]]$Sepal.Length #> [1] 5.8 #> #> [[83]]$Sepal.Width #> [1] 2.7 #> #> #> [[84]] #> [[84]]$Sepal.Length #> [1] 6 #> #> [[84]]$Sepal.Width #> [1] 2.7 #> #> #> [[85]] #> [[85]]$Sepal.Length #> [1] 5.4 #> #> [[85]]$Sepal.Width #> [1] 3 #> #> #> [[86]] #> [[86]]$Sepal.Length #> [1] 6 #> #> [[86]]$Sepal.Width #> [1] 3.4 #> #> #> [[87]] #> [[87]]$Sepal.Length #> [1] 6.7 #> #> [[87]]$Sepal.Width #> [1] 3.1 #> #> #> [[88]] #> [[88]]$Sepal.Length #> [1] 6.3 #> #> [[88]]$Sepal.Width #> [1] 2.3 #> #> #> [[89]] #> [[89]]$Sepal.Length #> [1] 5.6 #> #> [[89]]$Sepal.Width #> [1] 3 #> #> #> [[90]] #> [[90]]$Sepal.Length #> [1] 5.5 #> #> [[90]]$Sepal.Width #> [1] 2.5 #> #> #> [[91]] #> [[91]]$Sepal.Length #> [1] 5.5 #> #> [[91]]$Sepal.Width #> [1] 2.6 #> #> #> [[92]] #> [[92]]$Sepal.Length #> [1] 6.1 #> #> [[92]]$Sepal.Width #> [1] 3 #> #> #> [[93]] #> [[93]]$Sepal.Length #> [1] 5.8 #> #> [[93]]$Sepal.Width #> [1] 2.6 #> #> #> [[94]] #> [[94]]$Sepal.Length #> [1] 5 #> #> [[94]]$Sepal.Width #> [1] 2.3 #> #> #> [[95]] #> [[95]]$Sepal.Length #> [1] 5.6 #> #> [[95]]$Sepal.Width #> [1] 2.7 #> #> #> [[96]] #> [[96]]$Sepal.Length #> [1] 5.7 #> #> [[96]]$Sepal.Width #> [1] 3 #> #> #> [[97]] #> [[97]]$Sepal.Length #> [1] 5.7 #> #> [[97]]$Sepal.Width #> [1] 2.9 #> #> #> [[98]] #> [[98]]$Sepal.Length #> [1] 6.2 #> #> [[98]]$Sepal.Width #> [1] 2.9 #> #> #> [[99]] #> [[99]]$Sepal.Length #> [1] 5.1 #> #> [[99]]$Sepal.Width #> [1] 2.5 #> #> #> [[100]] #> [[100]]$Sepal.Length #> [1] 5.7 #> #> [[100]]$Sepal.Width #> [1] 2.8 #> #> #> [[101]] #> [[101]]$Sepal.Length #> [1] 6.3 #> #> [[101]]$Sepal.Width #> [1] 3.3 #> #> #> [[102]] #> [[102]]$Sepal.Length #> [1] 5.8 #> #> [[102]]$Sepal.Width #> [1] 2.7 #> #> #> [[103]] #> [[103]]$Sepal.Length #> [1] 7.1 #> #> [[103]]$Sepal.Width #> [1] 3 #> #> #> [[104]] #> [[104]]$Sepal.Length #> [1] 6.3 #> #> [[104]]$Sepal.Width #> [1] 2.9 #> #> #> [[105]] #> [[105]]$Sepal.Length #> [1] 6.5 #> #> [[105]]$Sepal.Width #> [1] 3 #> #> #> [[106]] #> [[106]]$Sepal.Length #> [1] 7.6 #> #> [[106]]$Sepal.Width #> [1] 3 #> #> #> [[107]] #> [[107]]$Sepal.Length #> [1] 4.9 #> #> [[107]]$Sepal.Width #> [1] 2.5 #> #> #> [[108]] #> [[108]]$Sepal.Length #> [1] 7.3 #> #> [[108]]$Sepal.Width #> [1] 2.9 #> #> #> [[109]] #> [[109]]$Sepal.Length #> [1] 6.7 #> #> [[109]]$Sepal.Width #> [1] 2.5 #> #> #> [[110]] #> [[110]]$Sepal.Length #> [1] 7.2 #> #> [[110]]$Sepal.Width #> [1] 3.6 #> #> #> [[111]] #> [[111]]$Sepal.Length #> [1] 6.5 #> #> [[111]]$Sepal.Width #> [1] 3.2 #> #> #> [[112]] #> [[112]]$Sepal.Length #> [1] 6.4 #> #> [[112]]$Sepal.Width #> [1] 2.7 #> #> #> [[113]] #> [[113]]$Sepal.Length #> [1] 6.8 #> #> [[113]]$Sepal.Width #> [1] 3 #> #> #> [[114]] #> [[114]]$Sepal.Length #> [1] 5.7 #> #> [[114]]$Sepal.Width #> [1] 2.5 #> #> #> [[115]] #> [[115]]$Sepal.Length #> [1] 5.8 #> #> [[115]]$Sepal.Width #> [1] 2.8 #> #> #> [[116]] #> [[116]]$Sepal.Length #> [1] 6.4 #> #> [[116]]$Sepal.Width #> [1] 3.2 #> #> #> [[117]] #> [[117]]$Sepal.Length #> [1] 6.5 #> #> [[117]]$Sepal.Width #> [1] 3 #> #> #> [[118]] #> [[118]]$Sepal.Length #> [1] 7.7 #> #> [[118]]$Sepal.Width #> [1] 3.8 #> #> #> [[119]] #> [[119]]$Sepal.Length #> [1] 7.7 #> #> [[119]]$Sepal.Width #> [1] 2.6 #> #> #> [[120]] #> [[120]]$Sepal.Length #> [1] 6 #> #> [[120]]$Sepal.Width #> [1] 2.2 #> #> #> [[121]] #> [[121]]$Sepal.Length #> [1] 6.9 #> #> [[121]]$Sepal.Width #> [1] 3.2 #> #> #> [[122]] #> [[122]]$Sepal.Length #> [1] 5.6 #> #> [[122]]$Sepal.Width #> [1] 2.8 #> #> #> [[123]] #> [[123]]$Sepal.Length #> [1] 7.7 #> #> [[123]]$Sepal.Width #> [1] 2.8 #> #> #> [[124]] #> [[124]]$Sepal.Length #> [1] 6.3 #> #> [[124]]$Sepal.Width #> [1] 2.7 #> #> #> [[125]] #> [[125]]$Sepal.Length #> [1] 6.7 #> #> [[125]]$Sepal.Width #> [1] 3.3 #> #> #> [[126]] #> [[126]]$Sepal.Length #> [1] 7.2 #> #> [[126]]$Sepal.Width #> [1] 3.2 #> #> #> [[127]] #> [[127]]$Sepal.Length #> [1] 6.2 #> #> [[127]]$Sepal.Width #> [1] 2.8 #> #> #> [[128]] #> [[128]]$Sepal.Length #> [1] 6.1 #> #> [[128]]$Sepal.Width #> [1] 3 #> #> #> [[129]] #> [[129]]$Sepal.Length #> [1] 6.4 #> #> [[129]]$Sepal.Width #> [1] 2.8 #> #> #> [[130]] #> [[130]]$Sepal.Length #> [1] 7.2 #> #> [[130]]$Sepal.Width #> [1] 3 #> #> #> [[131]] #> [[131]]$Sepal.Length #> [1] 7.4 #> #> [[131]]$Sepal.Width #> [1] 2.8 #> #> #> [[132]] #> [[132]]$Sepal.Length #> [1] 7.9 #> #> [[132]]$Sepal.Width #> [1] 3.8 #> #> #> [[133]] #> [[133]]$Sepal.Length #> [1] 6.4 #> #> [[133]]$Sepal.Width #> [1] 2.8 #> #> #> [[134]] #> [[134]]$Sepal.Length #> [1] 6.3 #> #> [[134]]$Sepal.Width #> [1] 2.8 #> #> #> [[135]] #> [[135]]$Sepal.Length #> [1] 6.1 #> #> [[135]]$Sepal.Width #> [1] 2.6 #> #> #> [[136]] #> [[136]]$Sepal.Length #> [1] 7.7 #> #> [[136]]$Sepal.Width #> [1] 3 #> #> #> [[137]] #> [[137]]$Sepal.Length #> [1] 6.3 #> #> [[137]]$Sepal.Width #> [1] 3.4 #> #> #> [[138]] #> [[138]]$Sepal.Length #> [1] 6.4 #> #> [[138]]$Sepal.Width #> [1] 3.1 #> #> #> [[139]] #> [[139]]$Sepal.Length #> [1] 6 #> #> [[139]]$Sepal.Width #> [1] 3 #> #> #> [[140]] #> [[140]]$Sepal.Length #> [1] 6.9 #> #> [[140]]$Sepal.Width #> [1] 3.1 #> #> #> [[141]] #> [[141]]$Sepal.Length #> [1] 6.7 #> #> [[141]]$Sepal.Width #> [1] 3.1 #> #> #> [[142]] #> [[142]]$Sepal.Length #> [1] 6.9 #> #> [[142]]$Sepal.Width #> [1] 3.1 #> #> #> [[143]] #> [[143]]$Sepal.Length #> [1] 5.8 #> #> [[143]]$Sepal.Width #> [1] 2.7 #> #> #> [[144]] #> [[144]]$Sepal.Length #> [1] 6.8 #> #> [[144]]$Sepal.Width #> [1] 3.2 #> #> #> [[145]] #> [[145]]$Sepal.Length #> [1] 6.7 #> #> [[145]]$Sepal.Width #> [1] 3.3 #> #> #> [[146]] #> [[146]]$Sepal.Length #> [1] 6.7 #> #> [[146]]$Sepal.Width #> [1] 3 #> #> #> [[147]] #> [[147]]$Sepal.Length #> [1] 6.3 #> #> [[147]]$Sepal.Width #> [1] 2.5 #> #> #> [[148]] #> [[148]]$Sepal.Length #> [1] 6.5 #> #> [[148]]$Sepal.Width #> [1] 3 #> #> #> [[149]] #> [[149]]$Sepal.Length #> [1] 6.2 #> #> [[149]]$Sepal.Width #> [1] 3.4 #> #> #> [[150]] #> [[150]]$Sepal.Length #> [1] 5.9 #> #> [[150]]$Sepal.Width #> [1] 3 #> #> # Use custom names parse_df(iris[, 1:2], add_names = c(\"x\", \"y\")) #> [[1]] #> [[1]]$x #> [1] 5.1 #> #> [[1]]$y #> [1] 3.5 #> #> #> [[2]] #> [[2]]$x #> [1] 4.9 #> #> [[2]]$y #> [1] 3 #> #> #> [[3]] #> [[3]]$x #> [1] 4.7 #> #> [[3]]$y #> [1] 3.2 #> #> #> [[4]] #> [[4]]$x #> [1] 4.6 #> #> [[4]]$y #> [1] 3.1 #> #> #> [[5]] #> [[5]]$x #> [1] 5 #> #> [[5]]$y #> [1] 3.6 #> #> #> [[6]] #> [[6]]$x #> [1] 5.4 #> #> [[6]]$y #> [1] 3.9 #> #> #> [[7]] #> [[7]]$x #> [1] 4.6 #> #> [[7]]$y #> [1] 3.4 #> #> #> [[8]] #> [[8]]$x #> [1] 5 #> #> [[8]]$y #> [1] 3.4 #> #> #> [[9]] #> [[9]]$x #> [1] 4.4 #> #> [[9]]$y #> [1] 2.9 #> #> #> [[10]] #> [[10]]$x #> [1] 4.9 #> #> [[10]]$y #> [1] 3.1 #> #> #> [[11]] #> [[11]]$x #> [1] 5.4 #> #> [[11]]$y #> [1] 3.7 #> #> #> [[12]] #> [[12]]$x #> [1] 4.8 #> #> [[12]]$y #> [1] 3.4 #> #> #> [[13]] #> [[13]]$x #> [1] 4.8 #> #> [[13]]$y #> [1] 3 #> #> #> [[14]] #> [[14]]$x #> [1] 4.3 #> #> [[14]]$y #> [1] 3 #> #> #> [[15]] #> [[15]]$x #> [1] 5.8 #> #> [[15]]$y #> [1] 4 #> #> #> [[16]] #> [[16]]$x #> [1] 5.7 #> #> [[16]]$y #> [1] 4.4 #> #> #> [[17]] #> [[17]]$x #> [1] 5.4 #> #> [[17]]$y #> [1] 3.9 #> #> #> [[18]] #> [[18]]$x #> [1] 5.1 #> #> [[18]]$y #> [1] 3.5 #> #> #> [[19]] #> [[19]]$x #> [1] 5.7 #> #> [[19]]$y #> [1] 3.8 #> #> #> [[20]] #> [[20]]$x #> [1] 5.1 #> #> [[20]]$y #> [1] 3.8 #> #> #> [[21]] #> [[21]]$x #> [1] 5.4 #> #> [[21]]$y #> [1] 3.4 #> #> #> [[22]] #> [[22]]$x #> [1] 5.1 #> #> [[22]]$y #> [1] 3.7 #> #> #> [[23]] #> [[23]]$x #> [1] 4.6 #> #> [[23]]$y #> [1] 3.6 #> #> #> [[24]] #> [[24]]$x #> [1] 5.1 #> #> [[24]]$y #> [1] 3.3 #> #> #> [[25]] #> [[25]]$x #> [1] 4.8 #> #> [[25]]$y #> [1] 3.4 #> #> #> [[26]] #> [[26]]$x #> [1] 5 #> #> [[26]]$y #> [1] 3 #> #> #> [[27]] #> [[27]]$x #> [1] 5 #> #> [[27]]$y #> [1] 3.4 #> #> #> [[28]] #> [[28]]$x #> [1] 5.2 #> #> [[28]]$y #> [1] 3.5 #> #> #> [[29]] #> [[29]]$x #> [1] 5.2 #> #> [[29]]$y #> [1] 3.4 #> #> #> [[30]] #> [[30]]$x #> [1] 4.7 #> #> [[30]]$y #> [1] 3.2 #> #> #> [[31]] #> [[31]]$x #> [1] 4.8 #> #> [[31]]$y #> [1] 3.1 #> #> #> [[32]] #> [[32]]$x #> [1] 5.4 #> #> [[32]]$y #> [1] 3.4 #> #> #> [[33]] #> [[33]]$x #> [1] 5.2 #> #> [[33]]$y #> [1] 4.1 #> #> #> [[34]] #> [[34]]$x #> [1] 5.5 #> #> [[34]]$y #> [1] 4.2 #> #> #> [[35]] #> [[35]]$x #> [1] 4.9 #> #> [[35]]$y #> [1] 3.1 #> #> #> [[36]] #> [[36]]$x #> [1] 5 #> #> [[36]]$y #> [1] 3.2 #> #> #> [[37]] #> [[37]]$x #> [1] 5.5 #> #> [[37]]$y #> [1] 3.5 #> #> #> [[38]] #> [[38]]$x #> [1] 4.9 #> #> [[38]]$y #> [1] 3.6 #> #> #> [[39]] #> [[39]]$x #> [1] 4.4 #> #> [[39]]$y #> [1] 3 #> #> #> [[40]] #> [[40]]$x #> [1] 5.1 #> #> [[40]]$y #> [1] 3.4 #> #> #> [[41]] #> [[41]]$x #> [1] 5 #> #> [[41]]$y #> [1] 3.5 #> #> #> [[42]] #> [[42]]$x #> [1] 4.5 #> #> [[42]]$y #> [1] 2.3 #> #> #> [[43]] #> [[43]]$x #> [1] 4.4 #> #> [[43]]$y #> [1] 3.2 #> #> #> [[44]] #> [[44]]$x #> [1] 5 #> #> [[44]]$y #> [1] 3.5 #> #> #> [[45]] #> [[45]]$x #> [1] 5.1 #> #> [[45]]$y #> [1] 3.8 #> #> #> [[46]] #> [[46]]$x #> [1] 4.8 #> #> [[46]]$y #> [1] 3 #> #> #> [[47]] #> [[47]]$x #> [1] 5.1 #> #> [[47]]$y #> [1] 3.8 #> #> #> [[48]] #> [[48]]$x #> [1] 4.6 #> #> [[48]]$y #> [1] 3.2 #> #> #> [[49]] #> [[49]]$x #> [1] 5.3 #> #> [[49]]$y #> [1] 3.7 #> #> #> [[50]] #> [[50]]$x #> [1] 5 #> #> [[50]]$y #> [1] 3.3 #> #> #> [[51]] #> [[51]]$x #> [1] 7 #> #> [[51]]$y #> [1] 3.2 #> #> #> [[52]] #> [[52]]$x #> [1] 6.4 #> #> [[52]]$y #> [1] 3.2 #> #> #> [[53]] #> [[53]]$x #> [1] 6.9 #> #> [[53]]$y #> [1] 3.1 #> #> #> [[54]] #> [[54]]$x #> [1] 5.5 #> #> [[54]]$y #> [1] 2.3 #> #> #> [[55]] #> [[55]]$x #> [1] 6.5 #> #> [[55]]$y #> [1] 2.8 #> #> #> [[56]] #> [[56]]$x #> [1] 5.7 #> #> [[56]]$y #> [1] 2.8 #> #> #> [[57]] #> [[57]]$x #> [1] 6.3 #> #> [[57]]$y #> [1] 3.3 #> #> #> [[58]] #> [[58]]$x #> [1] 4.9 #> #> [[58]]$y #> [1] 2.4 #> #> #> [[59]] #> [[59]]$x #> [1] 6.6 #> #> [[59]]$y #> [1] 2.9 #> #> #> [[60]] #> [[60]]$x #> [1] 5.2 #> #> [[60]]$y #> [1] 2.7 #> #> #> [[61]] #> [[61]]$x #> [1] 5 #> #> [[61]]$y #> [1] 2 #> #> #> [[62]] #> [[62]]$x #> [1] 5.9 #> #> [[62]]$y #> [1] 3 #> #> #> [[63]] #> [[63]]$x #> [1] 6 #> #> [[63]]$y #> [1] 2.2 #> #> #> [[64]] #> [[64]]$x #> [1] 6.1 #> #> [[64]]$y #> [1] 2.9 #> #> #> [[65]] #> [[65]]$x #> [1] 5.6 #> #> [[65]]$y #> [1] 2.9 #> #> #> [[66]] #> [[66]]$x #> [1] 6.7 #> #> [[66]]$y #> [1] 3.1 #> #> #> [[67]] #> [[67]]$x #> [1] 5.6 #> #> [[67]]$y #> [1] 3 #> #> #> [[68]] #> [[68]]$x #> [1] 5.8 #> #> [[68]]$y #> [1] 2.7 #> #> #> [[69]] #> [[69]]$x #> [1] 6.2 #> #> [[69]]$y #> [1] 2.2 #> #> #> [[70]] #> [[70]]$x #> [1] 5.6 #> #> [[70]]$y #> [1] 2.5 #> #> #> [[71]] #> [[71]]$x #> [1] 5.9 #> #> [[71]]$y #> [1] 3.2 #> #> #> [[72]] #> [[72]]$x #> [1] 6.1 #> #> [[72]]$y #> [1] 2.8 #> #> #> [[73]] #> [[73]]$x #> [1] 6.3 #> #> [[73]]$y #> [1] 2.5 #> #> #> [[74]] #> [[74]]$x #> [1] 6.1 #> #> [[74]]$y #> [1] 2.8 #> #> #> [[75]] #> [[75]]$x #> [1] 6.4 #> #> [[75]]$y #> [1] 2.9 #> #> #> [[76]] #> [[76]]$x #> [1] 6.6 #> #> [[76]]$y #> [1] 3 #> #> #> [[77]] #> [[77]]$x #> [1] 6.8 #> #> [[77]]$y #> [1] 2.8 #> #> #> [[78]] #> [[78]]$x #> [1] 6.7 #> #> [[78]]$y #> [1] 3 #> #> #> [[79]] #> [[79]]$x #> [1] 6 #> #> [[79]]$y #> [1] 2.9 #> #> #> [[80]] #> [[80]]$x #> [1] 5.7 #> #> [[80]]$y #> [1] 2.6 #> #> #> [[81]] #> [[81]]$x #> [1] 5.5 #> #> [[81]]$y #> [1] 2.4 #> #> #> [[82]] #> [[82]]$x #> [1] 5.5 #> #> [[82]]$y #> [1] 2.4 #> #> #> [[83]] #> [[83]]$x #> [1] 5.8 #> #> [[83]]$y #> [1] 2.7 #> #> #> [[84]] #> [[84]]$x #> [1] 6 #> #> [[84]]$y #> [1] 2.7 #> #> #> [[85]] #> [[85]]$x #> [1] 5.4 #> #> [[85]]$y #> [1] 3 #> #> #> [[86]] #> [[86]]$x #> [1] 6 #> #> [[86]]$y #> [1] 3.4 #> #> #> [[87]] #> [[87]]$x #> [1] 6.7 #> #> [[87]]$y #> [1] 3.1 #> #> #> [[88]] #> [[88]]$x #> [1] 6.3 #> #> [[88]]$y #> [1] 2.3 #> #> #> [[89]] #> [[89]]$x #> [1] 5.6 #> #> [[89]]$y #> [1] 3 #> #> #> [[90]] #> [[90]]$x #> [1] 5.5 #> #> [[90]]$y #> [1] 2.5 #> #> #> [[91]] #> [[91]]$x #> [1] 5.5 #> #> [[91]]$y #> [1] 2.6 #> #> #> [[92]] #> [[92]]$x #> [1] 6.1 #> #> [[92]]$y #> [1] 3 #> #> #> [[93]] #> [[93]]$x #> [1] 5.8 #> #> [[93]]$y #> [1] 2.6 #> #> #> [[94]] #> [[94]]$x #> [1] 5 #> #> [[94]]$y #> [1] 2.3 #> #> #> [[95]] #> [[95]]$x #> [1] 5.6 #> #> [[95]]$y #> [1] 2.7 #> #> #> [[96]] #> [[96]]$x #> [1] 5.7 #> #> [[96]]$y #> [1] 3 #> #> #> [[97]] #> [[97]]$x #> [1] 5.7 #> #> [[97]]$y #> [1] 2.9 #> #> #> [[98]] #> [[98]]$x #> [1] 6.2 #> #> [[98]]$y #> [1] 2.9 #> #> #> [[99]] #> [[99]]$x #> [1] 5.1 #> #> [[99]]$y #> [1] 2.5 #> #> #> [[100]] #> [[100]]$x #> [1] 5.7 #> #> [[100]]$y #> [1] 2.8 #> #> #> [[101]] #> [[101]]$x #> [1] 6.3 #> #> [[101]]$y #> [1] 3.3 #> #> #> [[102]] #> [[102]]$x #> [1] 5.8 #> #> [[102]]$y #> [1] 2.7 #> #> #> [[103]] #> [[103]]$x #> [1] 7.1 #> #> [[103]]$y #> [1] 3 #> #> #> [[104]] #> [[104]]$x #> [1] 6.3 #> #> [[104]]$y #> [1] 2.9 #> #> #> [[105]] #> [[105]]$x #> [1] 6.5 #> #> [[105]]$y #> [1] 3 #> #> #> [[106]] #> [[106]]$x #> [1] 7.6 #> #> [[106]]$y #> [1] 3 #> #> #> [[107]] #> [[107]]$x #> [1] 4.9 #> #> [[107]]$y #> [1] 2.5 #> #> #> [[108]] #> [[108]]$x #> [1] 7.3 #> #> [[108]]$y #> [1] 2.9 #> #> #> [[109]] #> [[109]]$x #> [1] 6.7 #> #> [[109]]$y #> [1] 2.5 #> #> #> [[110]] #> [[110]]$x #> [1] 7.2 #> #> [[110]]$y #> [1] 3.6 #> #> #> [[111]] #> [[111]]$x #> [1] 6.5 #> #> [[111]]$y #> [1] 3.2 #> #> #> [[112]] #> [[112]]$x #> [1] 6.4 #> #> [[112]]$y #> [1] 2.7 #> #> #> [[113]] #> [[113]]$x #> [1] 6.8 #> #> [[113]]$y #> [1] 3 #> #> #> [[114]] #> [[114]]$x #> [1] 5.7 #> #> [[114]]$y #> [1] 2.5 #> #> #> [[115]] #> [[115]]$x #> [1] 5.8 #> #> [[115]]$y #> [1] 2.8 #> #> #> [[116]] #> [[116]]$x #> [1] 6.4 #> #> [[116]]$y #> [1] 3.2 #> #> #> [[117]] #> [[117]]$x #> [1] 6.5 #> #> [[117]]$y #> [1] 3 #> #> #> [[118]] #> [[118]]$x #> [1] 7.7 #> #> [[118]]$y #> [1] 3.8 #> #> #> [[119]] #> [[119]]$x #> [1] 7.7 #> #> [[119]]$y #> [1] 2.6 #> #> #> [[120]] #> [[120]]$x #> [1] 6 #> #> [[120]]$y #> [1] 2.2 #> #> #> [[121]] #> [[121]]$x #> [1] 6.9 #> #> [[121]]$y #> [1] 3.2 #> #> #> [[122]] #> [[122]]$x #> [1] 5.6 #> #> [[122]]$y #> [1] 2.8 #> #> #> [[123]] #> [[123]]$x #> [1] 7.7 #> #> [[123]]$y #> [1] 2.8 #> #> #> [[124]] #> [[124]]$x #> [1] 6.3 #> #> [[124]]$y #> [1] 2.7 #> #> #> [[125]] #> [[125]]$x #> [1] 6.7 #> #> [[125]]$y #> [1] 3.3 #> #> #> [[126]] #> [[126]]$x #> [1] 7.2 #> #> [[126]]$y #> [1] 3.2 #> #> #> [[127]] #> [[127]]$x #> [1] 6.2 #> #> [[127]]$y #> [1] 2.8 #> #> #> [[128]] #> [[128]]$x #> [1] 6.1 #> #> [[128]]$y #> [1] 3 #> #> #> [[129]] #> [[129]]$x #> [1] 6.4 #> #> [[129]]$y #> [1] 2.8 #> #> #> [[130]] #> [[130]]$x #> [1] 7.2 #> #> [[130]]$y #> [1] 3 #> #> #> [[131]] #> [[131]]$x #> [1] 7.4 #> #> [[131]]$y #> [1] 2.8 #> #> #> [[132]] #> [[132]]$x #> [1] 7.9 #> #> [[132]]$y #> [1] 3.8 #> #> #> [[133]] #> [[133]]$x #> [1] 6.4 #> #> [[133]]$y #> [1] 2.8 #> #> #> [[134]] #> [[134]]$x #> [1] 6.3 #> #> [[134]]$y #> [1] 2.8 #> #> #> [[135]] #> [[135]]$x #> [1] 6.1 #> #> [[135]]$y #> [1] 2.6 #> #> #> [[136]] #> [[136]]$x #> [1] 7.7 #> #> [[136]]$y #> [1] 3 #> #> #> [[137]] #> [[137]]$x #> [1] 6.3 #> #> [[137]]$y #> [1] 3.4 #> #> #> [[138]] #> [[138]]$x #> [1] 6.4 #> #> [[138]]$y #> [1] 3.1 #> #> #> [[139]] #> [[139]]$x #> [1] 6 #> #> [[139]]$y #> [1] 3 #> #> #> [[140]] #> [[140]]$x #> [1] 6.9 #> #> [[140]]$y #> [1] 3.1 #> #> #> [[141]] #> [[141]]$x #> [1] 6.7 #> #> [[141]]$y #> [1] 3.1 #> #> #> [[142]] #> [[142]]$x #> [1] 6.9 #> #> [[142]]$y #> [1] 3.1 #> #> #> [[143]] #> [[143]]$x #> [1] 5.8 #> #> [[143]]$y #> [1] 2.7 #> #> #> [[144]] #> [[144]]$x #> [1] 6.8 #> #> [[144]]$y #> [1] 3.2 #> #> #> [[145]] #> [[145]]$x #> [1] 6.7 #> #> [[145]]$y #> [1] 3.3 #> #> #> [[146]] #> [[146]]$x #> [1] 6.7 #> #> [[146]]$y #> [1] 3 #> #> #> [[147]] #> [[147]]$x #> [1] 6.3 #> #> [[147]]$y #> [1] 2.5 #> #> #> [[148]] #> [[148]]$x #> [1] 6.5 #> #> [[148]]$y #> [1] 3 #> #> #> [[149]] #> [[149]]$x #> [1] 6.2 #> #> [[149]]$y #> [1] 3.4 #> #> #> [[150]] #> [[150]]$x #> [1] 5.9 #> #> [[150]]$y #> [1] 3 #> #>"},{"path":"https://dreamrs.github.io/apexcharter/reference/pie_opts.html","id":null,"dir":"Reference","previous_headings":"","what":"Pie options — pie_opts","title":"Pie options — pie_opts","text":"Use options ax_plotOptions().","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/pie_opts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Pie options — pie_opts","text":"","code":"pie_opts( size = NULL, donut = NULL, customScale = NULL, offsetX = NULL, offsetY = NULL, dataLabels = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/pie_opts.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Pie options — pie_opts","text":"size Numeric. Custom size pie override default size calculations. donut List two fields size (Donut / ring size percentage relative total pie area.) background (background color pie). customScale Numeric. Transform scale whole pie/donut overriding default calculations. offsetX Numeric. Sets left offset whole pie area. offsetY Numeric. Sets top offset whole pie area. dataLabels List field offset (Numeric, Offset labels move outside / inside donut area) ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/pie_opts.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Pie options — pie_opts","text":"list options can used ax_plotOptions().","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/pie_opts.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Pie options — pie_opts","text":"See https://apexcharts.com/docs/options/plotoptions/pie/.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/pie_opts.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Pie options — pie_opts","text":"","code":"data(\"mpg\", package = \"ggplot2\") apex(mpg, aes(cyl), type = \"donut\") %>% ax_plotOptions( pie = pie_opts( donut = list(size = \"90%\", background = \"#BABABA\") ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"donut\"},\"series\":[81,4,79,70],\"labels\":[\"4\",\"5\",\"6\",\"8\"],\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"plotOptions\":{\"pie\":{\"donut\":{\"size\":\"90%\",\"background\":\"#BABABA\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"4\",\"max\":\"8\"},\"type\":\"donut\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/radialBar_opts.html","id":null,"dir":"Reference","previous_headings":"","what":"Radial bar options — radialBar_opts","title":"Radial bar options — radialBar_opts","text":"Use options ax_plotOptions().","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/radialBar_opts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Radial bar options — radialBar_opts","text":"","code":"radialBar_opts( size = NULL, inverseOrder = NULL, startAngle = NULL, endAngle = NULL, offsetX = NULL, offsetY = NULL, hollow = NULL, track = NULL, dataLabels = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/radialBar_opts.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Radial bar options — radialBar_opts","text":"size Numeric. Manual size radialBars instead calculating automatically default height / width. inverseOrder Logical. Whether make first value series innermost outermost. startAngle Numeric. Angle radialBars start. endAngle Numeric. Angle radialBars end. sum startAngle endAngle exceed 360. offsetX Numeric. Sets left offset radialBars. offsetY Numeric. Sets top offset radialBars. hollow List. track List. dataLabels List. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/radialBar_opts.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Radial bar options — radialBar_opts","text":"list options can used ax_plotOptions().","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/radialBar_opts.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Radial bar options — radialBar_opts","text":"See https://apexcharts.com/docs/options/plotoptions/radialbar/.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/radialBar_opts.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Radial bar options — radialBar_opts","text":"","code":"apexchart() %>% ax_chart(type = \"radialBar\") %>% ax_plotOptions( radialBar = radialBar_opts( startAngle = -135, endAngle = 135, dataLabels = list( name = list( fontSize = \"16px\", # color = undefined, offsetY = 120 ), value = list( offsetY = 76, fontSize = \"22px\", # color = undefined, formatter = htmlwidgets::JS(\"function (val) {return val + '%';}\") ) ) ) ) %>% ax_stroke(dashArray = 4) %>% ax_series(70) %>% ax_labels(\"Indicator\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"radialBar\"},\"plotOptions\":{\"radialBar\":{\"startAngle\":-135,\"endAngle\":135,\"dataLabels\":{\"name\":{\"fontSize\":\"16px\",\"offsetY\":120},\"value\":{\"offsetY\":76,\"fontSize\":\"22px\",\"formatter\":\"function (val) {return val + '%';}\"}}}},\"stroke\":{\"dashArray\":4},\"series\":[70],\"labels\":[\"Indicator\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[\"ax_opts.plotOptions.radialBar.dataLabels.value.formatter\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_input.html","id":null,"dir":"Reference","previous_headings":"","what":"Run Shiny input events examples — run_demo_input","title":"Run Shiny input events examples — run_demo_input","text":"Run Shiny input events examples","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_input.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Run Shiny input events examples — run_demo_input","text":"","code":"run_demo_input(example = c(\"click\", \"zoom\", \"selection\"))"},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_input.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Run Shiny input events examples — run_demo_input","text":"example Name example.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_input.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Run Shiny input events examples — run_demo_input","text":"","code":"if (interactive()) { run_demo_input(\"click\") run_demo_input(\"zoom\") run_demo_input(\"selection\") }"},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_sparkbox.html","id":null,"dir":"Reference","previous_headings":"","what":"Run Shiny spark boxes example — run_demo_sparkbox","title":"Run Shiny spark boxes example — run_demo_sparkbox","text":"Run Shiny spark boxes example","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_sparkbox.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Run Shiny spark boxes example — run_demo_sparkbox","text":"","code":"run_demo_sparkbox()"},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_sparkbox.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Run Shiny spark boxes example — run_demo_sparkbox","text":"","code":"if (interactive()) { run_demo_sparkbox() }"},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_sync.html","id":null,"dir":"Reference","previous_headings":"","what":"Run Shiny synchronization example — run_demo_sync","title":"Run Shiny synchronization example — run_demo_sync","text":"Run Shiny synchronization example","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_sync.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Run Shiny synchronization example — run_demo_sync","text":"","code":"run_demo_sync()"},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_sync.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Run Shiny synchronization example — run_demo_sync","text":"","code":"if (interactive()) { run_demo_sync() }"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_click.html","id":null,"dir":"Reference","previous_headings":"","what":"Retrieve click information in Shiny — set_input_click","title":"Retrieve click information in Shiny — set_input_click","text":"According type chart, different values retrieved: bar column: retrieve category (x-axis). pie donut: retrieve label. time-series: retrieve x-axis value, display markers size > 0 set tooltip's options intersect = TRUE shared = FALSE. scatter: retrieve XY coordinates.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_click.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Retrieve click information in Shiny — set_input_click","text":"","code":"set_input_click( ax, inputId, multiple = FALSE, effect_type = c(\"darken\", \"lighten\", \"none\"), effect_value = 0.35, session = shiny::getDefaultReactiveDomain() )"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_click.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Retrieve click information in Shiny — set_input_click","text":"ax apexchart() htmlwidget object. inputId id used server-side retrieving click. multiple Allow multiple selection: TRUE FALSE (default). effect_type Type effect selected element, default use lightly darken color. effect_value larger value intensifies select effect, accept value 0 1. session Shiny session.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_click.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Retrieve click information in Shiny — set_input_click","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_click.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Retrieve click information in Shiny — set_input_click","text":"x-axis type datetime, value retrieved class POSIXct.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_click.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Retrieve click information in Shiny — set_input_click","text":"","code":"library(apexcharter) # Not in Shiny but you can still click on bars data.frame( month = month.abb, value = sample(1:100, 12) ) %>% apex(aes(month, value)) %>% set_input_click(\"month_click\", multiple = TRUE) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"value\",\"type\":\"bar\",\"data\":[{\"x\":\"Jan\",\"y\":90},{\"x\":\"Feb\",\"y\":66},{\"x\":\"Mar\",\"y\":73},{\"x\":\"Apr\",\"y\":42},{\"x\":\"May\",\"y\":12},{\"x\":\"Jun\",\"y\":6},{\"x\":\"Jul\",\"y\":45},{\"x\":\"Aug\",\"y\":58},{\"x\":\"Sep\",\"y\":99},{\"x\":\"Oct\",\"y\":33},{\"x\":\"Nov\",\"y\":17},{\"x\":\"Dec\",\"y\":65}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"isDumbbell\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":true}},\"xaxis\":{\"lines\":{\"show\":false}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"states\":{\"active\":{\"allowMultipleDataPointsSelection\":true,\"filter\":{\"type\":\"darken\",\"value\":0.35}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Apr\",\"max\":\"Sep\"},\"type\":\"column\",\"shinyEvents\":{\"click\":{\"inputId\":\"month_click\"}}},\"evals\":[],\"jsHooks\":[]} # Interactive examples: if (interactive()) { run_demo_input(\"click\") }"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_export.html","id":null,"dir":"Reference","previous_headings":"","what":"Retrieve chart's base64 dataURI. — set_input_export","title":"Retrieve chart's base64 dataURI. — set_input_export","text":"Retrieve chart's base64 dataURI.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_export.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Retrieve chart's base64 dataURI. — set_input_export","text":"","code":"set_input_export(ax, inputId, session = shiny::getDefaultReactiveDomain())"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_export.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Retrieve chart's base64 dataURI. — set_input_export","text":"ax apexchart() htmlwidget object. inputId id used server-side retrieving data. session Shiny session.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_export.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Retrieve chart's base64 dataURI. — set_input_export","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_export.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Retrieve chart's base64 dataURI. — set_input_export","text":"","code":"library(shiny) library(apexcharter) ui <- fluidPage( fluidRow( column( width = 8, offset = 2, tags$h2(\"Export PNG\"), actionButton(\"redraw\", \"Redraw chart\"), apexchartOutput(\"chart\"), verbatimTextOutput(\"result\"), uiOutput(outputId = \"image\") ) ) ) server <- function(input, output, session) { output$chart <- renderApexchart({ input$redraw apexchart() %>% ax_chart(type = \"bar\") %>% ax_series( list( name = \"Example\", data = sample(1:100, 5) ) ) %>% ax_xaxis( categories = LETTERS[1:5] ) %>% set_input_export(\"export\") }) output$result <- renderPrint({ input$export }) output$image <- renderUI({ tags$img(src = input$export) }) } if (interactive()) shinyApp(ui, server)"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_selection.html","id":null,"dir":"Reference","previous_headings":"","what":"Retrieve selection information in Shiny — set_input_selection","title":"Retrieve selection information in Shiny — set_input_selection","text":"Retrieve selection information Shiny","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_selection.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Retrieve selection information in Shiny — set_input_selection","text":"","code":"set_input_selection( ax, inputId, type = c(\"x\", \"xy\", \"y\"), fill_color = \"#24292e\", fill_opacity = 0.1, stroke_width = 1, stroke_dasharray = 3, stroke_color = \"#24292e\", stroke_opacity = 0.4, xmin = NULL, xmax = NULL, ymin = NULL, ymax = NULL, session = shiny::getDefaultReactiveDomain() )"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_selection.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Retrieve selection information in Shiny — set_input_selection","text":"ax apexchart() htmlwidget object. inputId id used server-side retrieving selection. type Allow selection either x-axis, y-axis axis. fill_color Background color selection rect drawn user drags chart. fill_opacity Opacity background color selection rectangle. stroke_width Border thickness selection rectangle. stroke_dasharray Creates dashes borders selection rectangle. Higher number creates space dashes border. stroke_color Colors selection border. stroke_opacity Opacity selection border. xmin, xmax Start value x-axis. min max must provided. ymin, ymax Start value y-axis. min max must provided. session Shiny session.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_selection.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Retrieve selection information in Shiny — set_input_selection","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_selection.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Retrieve selection information in Shiny — set_input_selection","text":"","code":"library(apexcharter) data(\"economics\", package = \"ggplot2\") # Not in Shiny so no events # but you can still select an area on chart apex(economics, aes(date, psavert), type = \"line\") %>% set_input_selection(\"selection\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"selection\":{\"enabled\":true,\"type\":\"x\",\"fill\":{\"color\":\"#24292e\",\"opacity\":0.1},\"stroke\":{\"width\":1,\"dashArray\":3,\"color\":\"#24292e\",\"opacity\":0.4}},\"toolbar\":{\"autoSelected\":\"selection\"}},\"series\":[{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[-79056000000,12.6],[-76377600000,12.6],[-73699200000,11.9],[-71107200000,12.9],[-68428800000,12.8],[-65836800000,11.8],[-63158400000,11.7],[-60480000000,12.3],[-57974400000,11.7],[-55296000000,12.3],[-52704000000,12],[-50025600000,11.7],[-47433600000,10.7],[-44755200000,10.5],[-42076800000,10.6],[-39484800000,10.8],[-36806400000,10.6],[-34214400000,11.1],[-31536000000,10.3],[-28857600000,9.699999999999999],[-26438400000,10.2],[-23760000000,9.699999999999999],[-21168000000,10.1],[-18489600000,11.1],[-15897600000,11.8],[-13219200000,11.5],[-10540800000,11.6],[-7948800000,11.4],[-5270400000,11.6],[-2678400000,11.8],[0,11.8],[2678400000,11.7],[5097600000,12.4],[7776000000,13.3],[10368000000,12.4],[13046400000,12.3],[15638400000,13.5],[18316800000,13.4],[20995200000,12.9],[23587200000,13.1],[26265600000,13.6],[28857600000,13.2],[31536000000,13.3],[34214400000,13.3],[36633600000,13.5],[39312000000,13.2],[41904000000,13.6],[44582400000,14.7],[47174400000,13.8],[49852800000,13.6],[52531200000,13.3],[55123200000,13.3],[57801600000,13.1],[60393600000,13],[63072000000,12.5],[65750400000,12.8],[68256000000,11.8],[70934400000,11.5],[73526400000,11.7],[76204800000,11.7],[78796800000,11.7],[81475200000,12],[84153600000,12.2],[86745600000,13],[89424000000,13.6],[92016000000,13.7],[94694400000,12.4],[97372800000,12.5],[99792000000,12.7],[102470400000,13.2],[105062400000,13.2],[107740800000,13.6],[110332800000,13.2],[113011200000,13.9],[115689600000,13.1],[118281600000,14.4],[120960000000,14.4],[123552000000,14.8],[126230400000,14.3],[128908800000,14.2],[131328000000,13.4],[134006400000,13.1],[136598400000,12.8],[139276800000,12.8],[141868800000,12.8],[144547200000,12.1],[147225600000,12.9],[149817600000,13.4],[152496000000,13.8],[155088000000,14],[157766400000,13.2],[160444800000,12.5],[162864000000,12.7],[165542400000,14.2],[168134400000,17.3],[170812800000,14.3],[173404800000,12.6],[176083200000,13],[178761600000,13],[181353600000,13.4],[184032000000,12.7],[186624000000,12],[189302400000,11.7],[191980800000,12.3],[194486400000,12.2],[197164800000,11.7],[199756800000,12.3],[202435200000,11.4],[205027200000,11.7],[207705600000,11.7],[210384000000,11.4],[212976000000,11.1],[215654400000,11.4],[218246400000,10.6],[220924800000,10.6],[223603200000,9.300000000000001],[226022400000,10.5],[228700800000,10.5],[231292800000,10.3],[233971200000,10.6],[236563200000,10.5],[239241600000,10.9],[241920000000,11.1],[244512000000,11],[247190400000,11.2],[249782400000,11.4],[252460800000,11.9],[255139200000,11.1],[257558400000,11],[260236800000,10.8],[262828800000,10.3],[265507200000,10],[268099200000,10.9],[270777600000,10.5],[273456000000,10.6],[276048000000,10.7],[278726400000,10.5],[281318400000,10.4],[283996800000,11.1],[286675200000,11.1],[289094400000,11.2],[291772800000,11],[294364800000,10.3],[297043200000,9.9],[299635200000,10.6],[302313600000,9.699999999999999],[304992000000,9.4],[307584000000,9.699999999999999],[310262400000,9.699999999999999],[312854400000,10.1],[315532800000,9.9],[318211200000,10.1],[320716800000,10.2],[323395200000,11.3],[325987200000,11.4],[328665600000,11.2],[331257600000,11.3],[333936000000,11.3],[336614400000,11.7],[339206400000,11.3],[341884800000,11.6],[344476800000,11.4],[347155200000,10.9],[349833600000,10.8],[352252800000,10.8],[354931200000,10.9],[357523200000,11],[360201600000,10.8],[362793600000,12.3],[365472000000,12],[368150400000,12.4],[370742400000,13],[373420800000,13.2],[376012800000,12.5],[378691200000,12.7],[381369600000,12.1],[383788800000,12.2],[386467200000,12.9],[389059200000,12.3],[391737600000,12.3],[394329600000,12.5],[397008000000,12.6],[399686400000,11.8],[402278400000,11.3],[404956800000,10.9],[407548800000,10.9],[410227200000,11.1],[412905600000,11.1],[415324800000,10.6],[418003200000,10.3],[420595200000,9.9],[423273600000,9.1],[425865600000,9.6],[428544000000,9.199999999999999],[431222400000,9.6],[433814400000,9.699999999999999],[436492800000,10.3],[439084800000,10.1],[441763200000,10],[444441600000,11.7],[446947200000,11.5],[449625600000,11.5],[452217600000,11.1],[454896000000,11.1],[457488000000,11.6],[460166400000,11.8],[462844800000,11.8],[465436800000,11.7],[468115200000,10.9],[470707200000,11.2],[473385600000,10.3],[476064000000,9.1],[478483200000,8.699999999999999],[481161600000,9.9],[483753600000,11.1],[486432000000,9.6],[489024000000,9.1],[491702400000,8.199999999999999],[494380800000,7.3],[496972800000,9.1],[499651200000,9],[502243200000,8.6],[504921600000,8.6],[507600000000,9.300000000000001],[510019200000,9.9],[512697600000,9.699999999999999],[515289600000,9.300000000000001],[517968000000,9.4],[520560000000,9.300000000000001],[523238400000,9],[525916800000,7.2],[528508800000,8.4],[531187200000,8.800000000000001],[533779200000,7],[536457600000,9.699999999999999],[539136000000,8.5],[541555200000,8.5],[544233600000,4.5],[546825600000,8.199999999999999],[549504000000,7.7],[552096000000,7.5],[554774400000,7.2],[557452800000,7.6],[560044800000,8.300000000000001],[562723200000,8.5],[565315200000,8.699999999999999],[567993600000,8.1],[570672000000,8.6],[573177600000,8.199999999999999],[575856000000,8.800000000000001],[578448000000,8.4],[581126400000,8.4],[583718400000,8.6],[586396800000,8.4],[589075200000,8.9],[591667200000,8.6],[594345600000,8.4],[596937600000,8.300000000000001],[599616000000,8.5],[602294400000,9],[604713600000,9.5],[607392000000,8.4],[609984000000,8.1],[612662400000,8.199999999999999],[615254400000,8.199999999999999],[617932800000,7.6],[620611200000,8.1],[623203200000,8.5],[625881600000,8.6],[628473600000,7.8],[631152000000,8],[633830400000,8.6],[636249600000,8.300000000000001],[638928000000,8.800000000000001],[641520000000,8.699999999999999],[644198400000,8.6],[646790400000,8.699999999999999],[649468800000,8.1],[652147200000,8.1],[654739200000,7.8],[657417600000,7.9],[660009600000,8.800000000000001],[662688000000,9.300000000000001],[665366400000,8.800000000000001],[667785600000,8],[670464000000,8.6],[673056000000,8.4],[675734400000,8.9],[678326400000,8.199999999999999],[681004800000,8.6],[683683200000,8.800000000000001],[686275200000,9.300000000000001],[688953600000,9],[691545600000,9.699999999999999],[694224000000,9.4],[696902400000,9.800000000000001],[699408000000,9.699999999999999],[702086400000,9.9],[704678400000,9.9],[707356800000,10.1],[709948800000,9.6],[712627200000,9.699999999999999],[715305600000,8.699999999999999],[717897600000,8],[720576000000,8],[723168000000,10.6],[725846400000,8.6],[728524800000,8.9],[730944000000,8.9],[733622400000,8.699999999999999],[736214400000,8.300000000000001],[738892800000,7.8],[741484800000,7.6],[744163200000,7.7],[746841600000,6.9],[749433600000,6.3],[752112000000,6.3],[754704000000,9.1],[757382400000,7.1],[760060800000,6.5],[762480000000,6.8],[765158400000,6.4],[767750400000,7.6],[770428800000,6.9],[773020800000,7],[775699200000,6.5],[778377600000,6.8],[780969600000,7.1],[783648000000,7],[786240000000,7.2],[788918400000,7.5],[791596800000,7.8],[794016000000,7.5],[796694400000,6.9],[799286400000,7.1],[801964800000,6.7],[804556800000,7.1],[807235200000,6.7],[809913600000,6.8],[812505600000,7.1],[815184000000,6.6],[817776000000,6.1],[820454400000,6.7],[823132800000,6.7],[825638400000,6.6],[828316800000,5.7],[830908800000,6.7],[833587200000,7.1],[836179200000,6.7],[838857600000,6.6],[841536000000,6.7],[844128000000,6.4],[846806400000,6.4],[849398400000,6.4],[852076800000,6.2],[854755200000,6.2],[857174400000,6.4],[859852800000,6.5],[862444800000,6.8],[865123200000,6.6],[867715200000,6.1],[870393600000,6],[873072000000,6.2],[875664000000,6.2],[878342400000,6.4],[880934400000,6.4],[883612800000,7.4],[886291200000,7.4],[888710400000,7.5],[891388800000,7.2],[893980800000,6.9],[896659200000,6.8],[899251200000,6.9],[901929600000,6.8],[904608000000,6.4],[907200000000,6.2],[909878400000,6.3],[912470400000,5.8],[915148800000,6.4],[917827200000,6.2],[920246400000,5.9],[922924800000,5.2],[925516800000,4.9],[928195200000,4.8],[930787200000,4.8],[933465600000,4.7],[936144000000,4.2],[938736000000,4.6],[941414400000,4.8],[944006400000,4.4],[946684800000,5.4],[949363200000,4.8],[951868800000,4.5],[954547200000,5],[957139200000,4.9],[959817600000,4.9],[962409600000,5.2],[965088000000,5.2],[967766400000,4.5],[970358400000,4.6],[973036800000,4.5],[975628800000,4.2],[978307200000,4.8],[980985600000,4.9],[983404800000,5.3],[986083200000,5],[988675200000,4.5],[991353600000,4.5],[993945600000,5.6],[996624000000,6.8],[999302400000,7],[1001894400000,3.4],[1004572800000,4.1],[1007164800000,4.5],[1009843200000,6.1],[1012521600000,5.8],[1014940800000,5.9],[1017619200000,5.8],[1020211200000,6.5],[1022889600000,6.4],[1025481600000,5.5],[1028160000000,5.4],[1030838400000,5.7],[1033430400000,5.7],[1036108800000,5.7],[1038700800000,5.5],[1041379200000,5.5],[1044057600000,5.6],[1046476800000,5.3],[1049155200000,5.3],[1051747200000,5.8],[1054425600000,5.6],[1057017600000,6.3],[1059696000000,6],[1062374400000,5.2],[1064966400000,5.3],[1067644800000,5.4],[1070236800000,5.4],[1072915200000,5],[1075593600000,5],[1078099200000,4.9],[1080777600000,5.3],[1083369600000,5.3],[1086048000000,5.8],[1088640000000,5.3],[1091318400000,5.2],[1093996800000,4.6],[1096588800000,4.5],[1099267200000,4.1],[1101859200000,6.9],[1104537600000,3.7],[1107216000000,3.4],[1109635200000,3.6],[1112313600000,3.1],[1114905600000,3.5],[1117584000000,2.9],[1120176000000,2.2],[1122854400000,2.7],[1125532800000,2.7],[1128124800000,3.1],[1130803200000,3.5],[1133395200000,3.7],[1136073600000,4.2],[1138752000000,4.2],[1141171200000,4.2],[1143849600000,4],[1146441600000,3.8],[1149120000000,4],[1151712000000,3.4],[1154390400000,3.6],[1157068800000,3.6],[1159660800000,3.6],[1162339200000,3.9],[1164931200000,3.7],[1167609600000,3.7],[1170288000000,4.1],[1172707200000,4.4],[1175385600000,4.2],[1177977600000,4],[1180656000000,3.8],[1183248000000,3.7],[1185926400000,3.4],[1188604800000,3.5],[1191196800000,3.4],[1193875200000,3.1],[1196467200000,3.6],[1199145600000,3.7],[1201824000000,4.1],[1204329600000,4],[1207008000000,3.4],[1209600000000,7.8],[1212278400000,5.5],[1214870400000,4.4],[1217548800000,3.8],[1220227200000,4.7],[1222819200000,5.5],[1225497600000,6.4],[1228089600000,6.4],[1230768000000,6.2],[1233446400000,5.5],[1235865600000,5.9],[1238544000000,6.8],[1241136000000,8.199999999999999],[1243814400000,6.7],[1246406400000,6],[1249084800000,4.9],[1251763200000,5.9],[1254355200000,5.4],[1257033600000,5.9],[1259625600000,5.9],[1262304000000,6.1],[1264982400000,5.8],[1267401600000,5.7],[1270080000000,6.4],[1272672000000,7],[1275350400000,6.9],[1277942400000,6.8],[1280620800000,6.9],[1283299200000,6.7],[1285891200000,6.6],[1288569600000,6.6],[1291161600000,7.1],[1293840000000,7.4],[1296518400000,7.6],[1298937600000,7],[1301616000000,6.9],[1304208000000,6.9],[1306886400000,7.2],[1309478400000,7.3],[1312156800000,7.2],[1314835200000,6.8],[1317427200000,6.8],[1320105600000,7],[1322697600000,7.8],[1325376000000,8],[1328054400000,8],[1330560000000,8.5],[1333238400000,8.699999999999999],[1335830400000,8.800000000000001],[1338508800000,9.1],[1341100800000,8.199999999999999],[1343779200000,8],[1346457600000,8.199999999999999],[1349049600000,8.800000000000001],[1351728000000,9.699999999999999],[1354320000000,12],[1356998400000,6.3],[1359676800000,5.8],[1362096000000,5.9],[1364774400000,6.4],[1367366400000,6.7],[1370044800000,6.8],[1372636800000,6.6],[1375315200000,6.7],[1377993600000,6.8],[1380585600000,6.3],[1383264000000,6.2],[1385856000000,6.4],[1388534400000,7.1],[1391212800000,7.3],[1393632000000,7.4],[1396310400000,7.4],[1398902400000,7.4],[1401580800000,7.4],[1404172800000,7.5],[1406851200000,7.2],[1409529600000,7.4],[1412121600000,7.2],[1414800000000,7.3],[1417392000000,7.6],[1420070400000,7.7],[1422748800000,7.9],[1425168000000,7.4],[1427846400000,7.6]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\",\"shinyEvents\":{\"selection\":{\"inputId\":\"selection\",\"type\":\"x\"}}},\"evals\":[],\"jsHooks\":[]} # Default selection at start apex(economics, aes(date, psavert), type = \"line\") %>% set_input_selection( inputId = \"selection\", xmin = format_date(\"1980-01-01\"), xmax = format_date(\"1985-01-01\") ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"selection\":{\"enabled\":true,\"type\":\"x\",\"fill\":{\"color\":\"#24292e\",\"opacity\":0.1},\"stroke\":{\"width\":1,\"dashArray\":3,\"color\":\"#24292e\",\"opacity\":0.4},\"xaxis\":{\"min\":\"new Date('1980-01-01').getTime()\",\"max\":\"new Date('1985-01-01').getTime()\"}},\"toolbar\":{\"autoSelected\":\"selection\"}},\"series\":[{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[-79056000000,12.6],[-76377600000,12.6],[-73699200000,11.9],[-71107200000,12.9],[-68428800000,12.8],[-65836800000,11.8],[-63158400000,11.7],[-60480000000,12.3],[-57974400000,11.7],[-55296000000,12.3],[-52704000000,12],[-50025600000,11.7],[-47433600000,10.7],[-44755200000,10.5],[-42076800000,10.6],[-39484800000,10.8],[-36806400000,10.6],[-34214400000,11.1],[-31536000000,10.3],[-28857600000,9.699999999999999],[-26438400000,10.2],[-23760000000,9.699999999999999],[-21168000000,10.1],[-18489600000,11.1],[-15897600000,11.8],[-13219200000,11.5],[-10540800000,11.6],[-7948800000,11.4],[-5270400000,11.6],[-2678400000,11.8],[0,11.8],[2678400000,11.7],[5097600000,12.4],[7776000000,13.3],[10368000000,12.4],[13046400000,12.3],[15638400000,13.5],[18316800000,13.4],[20995200000,12.9],[23587200000,13.1],[26265600000,13.6],[28857600000,13.2],[31536000000,13.3],[34214400000,13.3],[36633600000,13.5],[39312000000,13.2],[41904000000,13.6],[44582400000,14.7],[47174400000,13.8],[49852800000,13.6],[52531200000,13.3],[55123200000,13.3],[57801600000,13.1],[60393600000,13],[63072000000,12.5],[65750400000,12.8],[68256000000,11.8],[70934400000,11.5],[73526400000,11.7],[76204800000,11.7],[78796800000,11.7],[81475200000,12],[84153600000,12.2],[86745600000,13],[89424000000,13.6],[92016000000,13.7],[94694400000,12.4],[97372800000,12.5],[99792000000,12.7],[102470400000,13.2],[105062400000,13.2],[107740800000,13.6],[110332800000,13.2],[113011200000,13.9],[115689600000,13.1],[118281600000,14.4],[120960000000,14.4],[123552000000,14.8],[126230400000,14.3],[128908800000,14.2],[131328000000,13.4],[134006400000,13.1],[136598400000,12.8],[139276800000,12.8],[141868800000,12.8],[144547200000,12.1],[147225600000,12.9],[149817600000,13.4],[152496000000,13.8],[155088000000,14],[157766400000,13.2],[160444800000,12.5],[162864000000,12.7],[165542400000,14.2],[168134400000,17.3],[170812800000,14.3],[173404800000,12.6],[176083200000,13],[178761600000,13],[181353600000,13.4],[184032000000,12.7],[186624000000,12],[189302400000,11.7],[191980800000,12.3],[194486400000,12.2],[197164800000,11.7],[199756800000,12.3],[202435200000,11.4],[205027200000,11.7],[207705600000,11.7],[210384000000,11.4],[212976000000,11.1],[215654400000,11.4],[218246400000,10.6],[220924800000,10.6],[223603200000,9.300000000000001],[226022400000,10.5],[228700800000,10.5],[231292800000,10.3],[233971200000,10.6],[236563200000,10.5],[239241600000,10.9],[241920000000,11.1],[244512000000,11],[247190400000,11.2],[249782400000,11.4],[252460800000,11.9],[255139200000,11.1],[257558400000,11],[260236800000,10.8],[262828800000,10.3],[265507200000,10],[268099200000,10.9],[270777600000,10.5],[273456000000,10.6],[276048000000,10.7],[278726400000,10.5],[281318400000,10.4],[283996800000,11.1],[286675200000,11.1],[289094400000,11.2],[291772800000,11],[294364800000,10.3],[297043200000,9.9],[299635200000,10.6],[302313600000,9.699999999999999],[304992000000,9.4],[307584000000,9.699999999999999],[310262400000,9.699999999999999],[312854400000,10.1],[315532800000,9.9],[318211200000,10.1],[320716800000,10.2],[323395200000,11.3],[325987200000,11.4],[328665600000,11.2],[331257600000,11.3],[333936000000,11.3],[336614400000,11.7],[339206400000,11.3],[341884800000,11.6],[344476800000,11.4],[347155200000,10.9],[349833600000,10.8],[352252800000,10.8],[354931200000,10.9],[357523200000,11],[360201600000,10.8],[362793600000,12.3],[365472000000,12],[368150400000,12.4],[370742400000,13],[373420800000,13.2],[376012800000,12.5],[378691200000,12.7],[381369600000,12.1],[383788800000,12.2],[386467200000,12.9],[389059200000,12.3],[391737600000,12.3],[394329600000,12.5],[397008000000,12.6],[399686400000,11.8],[402278400000,11.3],[404956800000,10.9],[407548800000,10.9],[410227200000,11.1],[412905600000,11.1],[415324800000,10.6],[418003200000,10.3],[420595200000,9.9],[423273600000,9.1],[425865600000,9.6],[428544000000,9.199999999999999],[431222400000,9.6],[433814400000,9.699999999999999],[436492800000,10.3],[439084800000,10.1],[441763200000,10],[444441600000,11.7],[446947200000,11.5],[449625600000,11.5],[452217600000,11.1],[454896000000,11.1],[457488000000,11.6],[460166400000,11.8],[462844800000,11.8],[465436800000,11.7],[468115200000,10.9],[470707200000,11.2],[473385600000,10.3],[476064000000,9.1],[478483200000,8.699999999999999],[481161600000,9.9],[483753600000,11.1],[486432000000,9.6],[489024000000,9.1],[491702400000,8.199999999999999],[494380800000,7.3],[496972800000,9.1],[499651200000,9],[502243200000,8.6],[504921600000,8.6],[507600000000,9.300000000000001],[510019200000,9.9],[512697600000,9.699999999999999],[515289600000,9.300000000000001],[517968000000,9.4],[520560000000,9.300000000000001],[523238400000,9],[525916800000,7.2],[528508800000,8.4],[531187200000,8.800000000000001],[533779200000,7],[536457600000,9.699999999999999],[539136000000,8.5],[541555200000,8.5],[544233600000,4.5],[546825600000,8.199999999999999],[549504000000,7.7],[552096000000,7.5],[554774400000,7.2],[557452800000,7.6],[560044800000,8.300000000000001],[562723200000,8.5],[565315200000,8.699999999999999],[567993600000,8.1],[570672000000,8.6],[573177600000,8.199999999999999],[575856000000,8.800000000000001],[578448000000,8.4],[581126400000,8.4],[583718400000,8.6],[586396800000,8.4],[589075200000,8.9],[591667200000,8.6],[594345600000,8.4],[596937600000,8.300000000000001],[599616000000,8.5],[602294400000,9],[604713600000,9.5],[607392000000,8.4],[609984000000,8.1],[612662400000,8.199999999999999],[615254400000,8.199999999999999],[617932800000,7.6],[620611200000,8.1],[623203200000,8.5],[625881600000,8.6],[628473600000,7.8],[631152000000,8],[633830400000,8.6],[636249600000,8.300000000000001],[638928000000,8.800000000000001],[641520000000,8.699999999999999],[644198400000,8.6],[646790400000,8.699999999999999],[649468800000,8.1],[652147200000,8.1],[654739200000,7.8],[657417600000,7.9],[660009600000,8.800000000000001],[662688000000,9.300000000000001],[665366400000,8.800000000000001],[667785600000,8],[670464000000,8.6],[673056000000,8.4],[675734400000,8.9],[678326400000,8.199999999999999],[681004800000,8.6],[683683200000,8.800000000000001],[686275200000,9.300000000000001],[688953600000,9],[691545600000,9.699999999999999],[694224000000,9.4],[696902400000,9.800000000000001],[699408000000,9.699999999999999],[702086400000,9.9],[704678400000,9.9],[707356800000,10.1],[709948800000,9.6],[712627200000,9.699999999999999],[715305600000,8.699999999999999],[717897600000,8],[720576000000,8],[723168000000,10.6],[725846400000,8.6],[728524800000,8.9],[730944000000,8.9],[733622400000,8.699999999999999],[736214400000,8.300000000000001],[738892800000,7.8],[741484800000,7.6],[744163200000,7.7],[746841600000,6.9],[749433600000,6.3],[752112000000,6.3],[754704000000,9.1],[757382400000,7.1],[760060800000,6.5],[762480000000,6.8],[765158400000,6.4],[767750400000,7.6],[770428800000,6.9],[773020800000,7],[775699200000,6.5],[778377600000,6.8],[780969600000,7.1],[783648000000,7],[786240000000,7.2],[788918400000,7.5],[791596800000,7.8],[794016000000,7.5],[796694400000,6.9],[799286400000,7.1],[801964800000,6.7],[804556800000,7.1],[807235200000,6.7],[809913600000,6.8],[812505600000,7.1],[815184000000,6.6],[817776000000,6.1],[820454400000,6.7],[823132800000,6.7],[825638400000,6.6],[828316800000,5.7],[830908800000,6.7],[833587200000,7.1],[836179200000,6.7],[838857600000,6.6],[841536000000,6.7],[844128000000,6.4],[846806400000,6.4],[849398400000,6.4],[852076800000,6.2],[854755200000,6.2],[857174400000,6.4],[859852800000,6.5],[862444800000,6.8],[865123200000,6.6],[867715200000,6.1],[870393600000,6],[873072000000,6.2],[875664000000,6.2],[878342400000,6.4],[880934400000,6.4],[883612800000,7.4],[886291200000,7.4],[888710400000,7.5],[891388800000,7.2],[893980800000,6.9],[896659200000,6.8],[899251200000,6.9],[901929600000,6.8],[904608000000,6.4],[907200000000,6.2],[909878400000,6.3],[912470400000,5.8],[915148800000,6.4],[917827200000,6.2],[920246400000,5.9],[922924800000,5.2],[925516800000,4.9],[928195200000,4.8],[930787200000,4.8],[933465600000,4.7],[936144000000,4.2],[938736000000,4.6],[941414400000,4.8],[944006400000,4.4],[946684800000,5.4],[949363200000,4.8],[951868800000,4.5],[954547200000,5],[957139200000,4.9],[959817600000,4.9],[962409600000,5.2],[965088000000,5.2],[967766400000,4.5],[970358400000,4.6],[973036800000,4.5],[975628800000,4.2],[978307200000,4.8],[980985600000,4.9],[983404800000,5.3],[986083200000,5],[988675200000,4.5],[991353600000,4.5],[993945600000,5.6],[996624000000,6.8],[999302400000,7],[1001894400000,3.4],[1004572800000,4.1],[1007164800000,4.5],[1009843200000,6.1],[1012521600000,5.8],[1014940800000,5.9],[1017619200000,5.8],[1020211200000,6.5],[1022889600000,6.4],[1025481600000,5.5],[1028160000000,5.4],[1030838400000,5.7],[1033430400000,5.7],[1036108800000,5.7],[1038700800000,5.5],[1041379200000,5.5],[1044057600000,5.6],[1046476800000,5.3],[1049155200000,5.3],[1051747200000,5.8],[1054425600000,5.6],[1057017600000,6.3],[1059696000000,6],[1062374400000,5.2],[1064966400000,5.3],[1067644800000,5.4],[1070236800000,5.4],[1072915200000,5],[1075593600000,5],[1078099200000,4.9],[1080777600000,5.3],[1083369600000,5.3],[1086048000000,5.8],[1088640000000,5.3],[1091318400000,5.2],[1093996800000,4.6],[1096588800000,4.5],[1099267200000,4.1],[1101859200000,6.9],[1104537600000,3.7],[1107216000000,3.4],[1109635200000,3.6],[1112313600000,3.1],[1114905600000,3.5],[1117584000000,2.9],[1120176000000,2.2],[1122854400000,2.7],[1125532800000,2.7],[1128124800000,3.1],[1130803200000,3.5],[1133395200000,3.7],[1136073600000,4.2],[1138752000000,4.2],[1141171200000,4.2],[1143849600000,4],[1146441600000,3.8],[1149120000000,4],[1151712000000,3.4],[1154390400000,3.6],[1157068800000,3.6],[1159660800000,3.6],[1162339200000,3.9],[1164931200000,3.7],[1167609600000,3.7],[1170288000000,4.1],[1172707200000,4.4],[1175385600000,4.2],[1177977600000,4],[1180656000000,3.8],[1183248000000,3.7],[1185926400000,3.4],[1188604800000,3.5],[1191196800000,3.4],[1193875200000,3.1],[1196467200000,3.6],[1199145600000,3.7],[1201824000000,4.1],[1204329600000,4],[1207008000000,3.4],[1209600000000,7.8],[1212278400000,5.5],[1214870400000,4.4],[1217548800000,3.8],[1220227200000,4.7],[1222819200000,5.5],[1225497600000,6.4],[1228089600000,6.4],[1230768000000,6.2],[1233446400000,5.5],[1235865600000,5.9],[1238544000000,6.8],[1241136000000,8.199999999999999],[1243814400000,6.7],[1246406400000,6],[1249084800000,4.9],[1251763200000,5.9],[1254355200000,5.4],[1257033600000,5.9],[1259625600000,5.9],[1262304000000,6.1],[1264982400000,5.8],[1267401600000,5.7],[1270080000000,6.4],[1272672000000,7],[1275350400000,6.9],[1277942400000,6.8],[1280620800000,6.9],[1283299200000,6.7],[1285891200000,6.6],[1288569600000,6.6],[1291161600000,7.1],[1293840000000,7.4],[1296518400000,7.6],[1298937600000,7],[1301616000000,6.9],[1304208000000,6.9],[1306886400000,7.2],[1309478400000,7.3],[1312156800000,7.2],[1314835200000,6.8],[1317427200000,6.8],[1320105600000,7],[1322697600000,7.8],[1325376000000,8],[1328054400000,8],[1330560000000,8.5],[1333238400000,8.699999999999999],[1335830400000,8.800000000000001],[1338508800000,9.1],[1341100800000,8.199999999999999],[1343779200000,8],[1346457600000,8.199999999999999],[1349049600000,8.800000000000001],[1351728000000,9.699999999999999],[1354320000000,12],[1356998400000,6.3],[1359676800000,5.8],[1362096000000,5.9],[1364774400000,6.4],[1367366400000,6.7],[1370044800000,6.8],[1372636800000,6.6],[1375315200000,6.7],[1377993600000,6.8],[1380585600000,6.3],[1383264000000,6.2],[1385856000000,6.4],[1388534400000,7.1],[1391212800000,7.3],[1393632000000,7.4],[1396310400000,7.4],[1398902400000,7.4],[1401580800000,7.4],[1404172800000,7.5],[1406851200000,7.2],[1409529600000,7.4],[1412121600000,7.2],[1414800000000,7.3],[1417392000000,7.6],[1420070400000,7.7],[1422748800000,7.9],[1425168000000,7.4],[1427846400000,7.6]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\",\"shinyEvents\":{\"selection\":{\"inputId\":\"selection\",\"type\":\"x\"}}},\"evals\":[\"ax_opts.chart.selection.xaxis.min\",\"ax_opts.chart.selection.xaxis.max\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_zoom.html","id":null,"dir":"Reference","previous_headings":"","what":"Retrieve zoom information in Shiny — set_input_zoom","title":"Retrieve zoom information in Shiny — set_input_zoom","text":"Retrieve zoom information Shiny","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_zoom.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Retrieve zoom information in Shiny — set_input_zoom","text":"","code":"set_input_zoom(ax, inputId, session = shiny::getDefaultReactiveDomain())"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_zoom.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Retrieve zoom information in Shiny — set_input_zoom","text":"ax apexchart() htmlwidget object. inputId id used server-side retrieving zoom. session Shiny session.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_zoom.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Retrieve zoom information in Shiny — set_input_zoom","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_zoom.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Retrieve zoom information in Shiny — set_input_zoom","text":"x-axis type datetime, value retrieved class POSIXct.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_zoom.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Retrieve zoom information in Shiny — set_input_zoom","text":"","code":"if (interactive()) { run_demo_input(\"zoom\") }"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_tooltip_fixed.html","id":null,"dir":"Reference","previous_headings":"","what":"Fixed tooltip — set_tooltip_fixed","title":"Fixed tooltip — set_tooltip_fixed","text":"Fixed tooltip","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_tooltip_fixed.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Fixed tooltip — set_tooltip_fixed","text":"","code":"set_tooltip_fixed( ax, position = c(\"topLeft\", \"topRight\", \"bottomLeft\", \"bottomRight\"), offsetX = NULL, offsetY = NULL )"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_tooltip_fixed.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Fixed tooltip — set_tooltip_fixed","text":"ax apexchart() htmlwidget object. position Predefined position: \"topLeft\", \"topRight\", \"bottomLeft\" \"bottomRight\". offsetX Sets left offset tooltip container fixed position. offsetY Sets top offset tooltip container fixed position.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_tooltip_fixed.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Fixed tooltip — set_tooltip_fixed","text":"apexchart() htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_tooltip_fixed.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Fixed tooltip — set_tooltip_fixed","text":"","code":"library(apexcharter) data(\"economics\", package = \"ggplot2\") apex( data = tail(economics, 350), mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% set_tooltip_fixed() {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[510019200000,6.8],[512697600000,6.7],[515289600000,6.8],[517968000000,7],[520560000000,6.9],[523238400000,7.1],[525916800000,7.4],[528508800000,7],[531187200000,7.1],[533779200000,7.1],[536457600000,6.9],[539136000000,6.6],[541555200000,6.6],[544233600000,7.1],[546825600000,6.6],[549504000000,6.5],[552096000000,6.5],[554774400000,6.4],[557452800000,6],[560044800000,6.3],[562723200000,6.2],[565315200000,6],[567993600000,6.2],[570672000000,6.3],[573177600000,6.4],[575856000000,5.9],[578448000000,5.9],[581126400000,5.8],[583718400000,6.1],[586396800000,5.9],[589075200000,5.7],[591667200000,5.6],[594345600000,5.7],[596937600000,5.9],[599616000000,5.6],[602294400000,5.4],[604713600000,5.4],[607392000000,5.4],[609984000000,5.3],[612662400000,5.4],[615254400000,5.6],[617932800000,5],[620611200000,4.9],[623203200000,4.9],[625881600000,4.8],[628473600000,4.9],[631152000000,5.1],[633830400000,5.3],[636249600000,5.1],[638928000000,4.8],[641520000000,5.2],[644198400000,5.2],[646790400000,5.4],[649468800000,5.4],[652147200000,5.6],[654739200000,5.8],[657417600000,5.7],[660009600000,5.9],[662688000000,6],[665366400000,6.2],[667785600000,6.7],[670464000000,6.6],[673056000000,6.4],[675734400000,6.9],[678326400000,7],[681004800000,7.3],[683683200000,6.8],[686275200000,7.2],[688953600000,7.5],[691545600000,7.8],[694224000000,8.1],[696902400000,8.199999999999999],[699408000000,8.300000000000001],[702086400000,8.5],[704678400000,8.800000000000001],[707356800000,8.699999999999999],[709948800000,8.6],[712627200000,8.800000000000001],[715305600000,8.6],[717897600000,9],[720576000000,9],[723168000000,9.300000000000001],[725846400000,8.6],[728524800000,8.5],[730944000000,8.5],[733622400000,8.4],[736214400000,8.1],[738892800000,8.300000000000001],[741484800000,8.199999999999999],[744163200000,8.199999999999999],[746841600000,8.300000000000001],[749433600000,8],[752112000000,8.300000000000001],[754704000000,8.300000000000001],[757382400000,8.6],[760060800000,9.199999999999999],[762480000000,9.300000000000001],[765158400000,9.1],[767750400000,9.199999999999999],[770428800000,9.300000000000001],[773020800000,9],[775699200000,8.9],[778377600000,9.199999999999999],[780969600000,10],[783648000000,9],[786240000000,8.699999999999999],[788918400000,8],[791596800000,8.1],[794016000000,8.300000000000001],[796694400000,8.300000000000001],[799286400000,9.1],[801964800000,7.9],[804556800000,8.5],[807235200000,8.300000000000001],[809913600000,7.9],[812505600000,8.199999999999999],[815184000000,8],[817776000000,8.300000000000001],[820454400000,8.300000000000001],[823132800000,7.8],[825638400000,8.300000000000001],[828316800000,8.6],[830908800000,8.6],[833587200000,8.300000000000001],[836179200000,8.300000000000001],[838857600000,8.4],[841536000000,8.5],[844128000000,8.300000000000001],[846806400000,7.7],[849398400000,7.8],[852076800000,7.8],[854755200000,8.1],[857174400000,7.9],[859852800000,8.300000000000001],[862444800000,8],[865123200000,8],[867715200000,8.300000000000001],[870393600000,7.8],[873072000000,8.199999999999999],[875664000000,7.7],[878342400000,7.6],[880934400000,7.5],[883612800000,7.4],[886291200000,7],[888710400000,6.8],[891388800000,6.7],[893980800000,6],[896659200000,6.9],[899251200000,6.7],[901929600000,6.8],[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.199999999999999],[1009843200000,8.4],[1012521600000,8.300000000000001],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.300000000000001],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.699999999999999],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.199999999999999],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.699999999999999],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.199999999999999],[1109635200000,9.300000000000001],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.800000000000001],[1122854400000,9.199999999999999],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.699999999999999],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.699999999999999],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.300000000000001],[1164931200000,7.5],[1167609600000,8.300000000000001],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.199999999999999],[1180656000000,7.7],[1183248000000,8.699999999999999],[1185926400000,8.800000000000001],[1188604800000,8.699999999999999],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.699999999999999],[1204329600000,8.699999999999999],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.699999999999999],[1217548800000,9.699999999999999],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.800000000000001],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"tooltip\":{\"fixed\":{\"enabled\":true,\"position\":\"topLeft\",\"offsetX\":null,\"offsetY\":null}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1986-03-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/spark_box.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a box with a sparkline — spark_box","title":"Create a box with a sparkline — spark_box","text":"Create box sparkline","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/spark_box.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a box with a sparkline — spark_box","text":"","code":"spark_box( data, title = NULL, subtitle = NULL, color = \"#2E93fA\", background = \"#FFF\", type = c(\"area\", \"line\", \"spline\", \"column\"), synchronize = NULL, title_style = NULL, subtitle_style = NULL, width = NULL, height = NULL, elementId = NULL )"},{"path":"https://dreamrs.github.io/apexcharter/reference/spark_box.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a box with a sparkline — spark_box","text":"data data.frame-like object least two columns, first mapped x-axis, second y-axis. title Title display box. subtitle Subtitle display box. color Color chart. background Background color box. type Type chart, currently type supported : \"area\" (default), \"line\", \"spline\", \"column\". synchronize Give common id charts synchronize (tooltip zoom). title_style, subtitle_style list named attributes style title / subtitle, possible values fontSize, fontWeight, fontFamily, color. width, height numeric input pixels. elementId Use explicit element ID widget.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/spark_box.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Create a box with a sparkline — spark_box","text":"apexcharts htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/spark_box.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Create a box with a sparkline — spark_box","text":"Shiny use sparkBoxOutput / renderSparkBox render boxes, see example. Boxes CSS class \"apexcharter-spark-box\" need styling.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/spark_box.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a box with a sparkline — spark_box","text":"","code":"library(apexcharter) spark_data <- data.frame( date = Sys.Date() + 1:20, var1 = round(rnorm(20, 50, 10)), var2 = round(rnorm(20, 50, 10)), var3 = round(rnorm(20, 50, 10)) ) spark_box( data = spark_data, title = mean(spark_data$var1), subtitle = \"Variable 1\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"area\",\"sparkline\":{\"enabled\":true}},\"series\":[{\"name\":\"var1\",\"type\":\"area\",\"data\":[[1715904000000,44],[1715990400000,51],[1716076800000,54],[1716163200000,44],[1716249600000,60],[1716336000000,47],[1716422400000,64],[1716508800000,41],[1716595200000,28],[1716681600000,47],[1716768000000,54],[1716854400000,60],[1716940800000,53],[1717027200000,62],[1717113600000,47],[1717200000000,43],[1717286400000,35],[1717372800000,75],[1717459200000,56],[1717545600000,39]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"show\":false},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"colors\":[\"#2E93fA\"],\"title\":{\"text\":50.2,\"style\":{\"fontSize\":\"24px\"}},\"subtitle\":{\"text\":\"Variable 1\",\"style\":{\"fontSize\":\"14px\"}}},\"auto_update\":{\"series_animate\":true,\"update_options\":true,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":{\"color\":\"#2E93fA\",\"background\":\"#FFF\"},\"xaxis\":{\"min\":\"2024-05-17\",\"max\":\"2024-06-05\"},\"type\":\"area\"},\"evals\":[],\"jsHooks\":[]} # In Shiny if (interactive()) { run_sparkbox_demo() }"},{"path":"https://dreamrs.github.io/apexcharter/reference/temperatures.html","id":null,"dir":"Reference","previous_headings":"","what":"Temperature data — temperatures","title":"Temperature data — temperatures","text":"dataset contains data temperatures France 2018 2022.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/temperatures.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Temperature data — temperatures","text":"","code":"temperatures"},{"path":"https://dreamrs.github.io/apexcharter/reference/temperatures.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"Temperature data — temperatures","text":"data frame 365 observations 6 variables.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/temperatures.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"Temperature data — temperatures","text":"Enedis (https://data.enedis.fr/explore/dataset/donnees-de-temperature-et-de-pseudo-rayonnement/)","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/unhcr_ts.html","id":null,"dir":"Reference","previous_headings":"","what":"UNHCR data by continent of origin — unhcr_ts","title":"UNHCR data by continent of origin — unhcr_ts","text":"dataset contains data UNHCR's populations concern summarised continent origin.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/unhcr_ts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"UNHCR data by continent of origin — unhcr_ts","text":"","code":"unhcr_ts"},{"path":"https://dreamrs.github.io/apexcharter/reference/unhcr_ts.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"UNHCR data by continent of origin — unhcr_ts","text":"data frame 913 observations following 4 variables: year Year concerned. population_type Populations concern : Refugees, Asylum-seekers, Internally displaced persons (IDPs), Returned refugees, Returned IDPs, Stateless persons, Others concern. continent_origin Continent residence population. n Number people concerned.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/unhcr_ts.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"UNHCR data by continent of origin — unhcr_ts","text":"UNHCR (UN Refugee Agency) (https://data.unhcr.org/)","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-043","dir":"Changelog","previous_headings":"","what":"apexcharter 0.4.3","title":"apexcharter 0.4.3","text":"CRAN release: 2024-05-15 Updated ApexCharts.js 3.49.1 (see https://github.com/apexcharts/apexcharts.js/releases). New chart type : slope charts.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-042","dir":"Changelog","previous_headings":"","what":"apexcharter 0.4.2","title":"apexcharter 0.4.2","text":"CRAN release: 2024-02-28 Updated ApexCharts.js 3.46.0 (see https://github.com/apexcharts/apexcharts.js/releases).","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-041","dir":"Changelog","previous_headings":"","what":"apexcharter 0.4.1","title":"apexcharter 0.4.1","text":"CRAN release: 2023-06-14 Updated ApexCharts.js 3.41.0 (new charts type: dumbbell chart funnel chart). apex() : added support boxplot. New function ax_forecast_data_points() mark points forecasted values.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-040","dir":"Changelog","previous_headings":"","what":"apexcharter 0.4.0","title":"apexcharter 0.4.0","text":"CRAN release: 2023-01-08 Updated ApexCharts.js 3.36.3. New chart type : range area charts. Facets: correctly manage secondary y axis.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-031","dir":"Changelog","previous_headings":"","what":"apexcharter 0.3.1","title":"apexcharter 0.3.1","text":"CRAN release: 2022-02-27 Updated ApexCharts.js 3.33.1 Minimal {htmlwidgets} version required >= 1.5.3","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-030","dir":"Changelog","previous_headings":"","what":"apexcharter 0.3.0","title":"apexcharter 0.3.0","text":"CRAN release: 2021-10-21 Updated ApexCharts.js 3.29.0 Internal: use {packer} manage JavaScript assets. d3.format JavaScript functions now available browser format() formatLocale().","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-020","dir":"Changelog","previous_headings":"","what":"apexcharter 0.2.0","title":"apexcharter 0.2.0","text":"CRAN release: 2021-05-11 Updated ApexCharts.js 3.26.2 New functions ax_facet_wrap() ax_facet_grid() create faceting charts. New function apex_grid() combine several charts grid.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-018","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.8","title":"apexcharter 0.1.8","text":"CRAN release: 2020-11-18 Updated ApexCharts.js 3.22.2","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"bugfixes-0-1-8","dir":"Changelog","previous_headings":"","what":"Bugfixes","title":"apexcharter 0.1.8","text":"Fixed bad JavaScript namespace Fixed bug groups scatter chart","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-017","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.7","title":"apexcharter 0.1.7","text":"CRAN release: 2020-10-16 Updated ApexCharts.js 3.22.0 New chart type: treemap, see vignette example. New function ax_colors_manual() set color mapping manually. apex() now accept polarArea type chart.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-016","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.6","title":"apexcharter 0.1.6","text":"CRAN release: 2020-09-09 Updated ApexCharts.js 3.20.1 New functions add_line() add_smooth_line() add simple trend line charts (scatter & bars). New Shiny input: export, retrieve charts base64 dataURI.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-015","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.5","title":"apexcharter 0.1.5","text":"CRAN release: 2020-06-23 Updated ApexCharts.js 3.18.1 Support candlestick charts apex(). apex() new argument synchronize easily synchronize charts together. apex() new charts type: area-spline, area-step step.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"new-functions-0-1-5","dir":"Changelog","previous_headings":"","what":"New functions","title":"apexcharter 0.1.5","text":"spark_box create boxes sparkline, see corresponding vignette details. add_shade(), add_shade_weekend(), add_event() add annotations time-series charts. add_hline(), add_vline(), add_point() add annotations charts. set_tooltip_fixed() fix tooltip specific position.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"bugfixes-0-1-5","dir":"Changelog","previous_headings":"","what":"Bugfixes","title":"apexcharter 0.1.5","text":"Xaxis datetime now display properly columns bars. Dark mode wasnt activated properly ax_theme().","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-014","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.4","title":"apexcharter 0.1.4","text":"CRAN release: 2020-03-31 Upgraded ApexCharts.js 3.17.1 Fixed bug grouped bar charts different levels groups. New vignette explain sync charts. New vignette show shiny usage. Added functions set_input_click(), set_input_zoom() set_input_selection() add interaction Shiny applications.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-013","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.3","title":"apexcharter 0.1.3","text":"CRAN release: 2019-11-27 Upgraded ApexCharts.js 3.10.1 New function format_num() format labels y-axis tooltip example. Added localization configs file, see ?ax_chart examples.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-012","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.2","title":"apexcharter 0.1.2","text":"CRAN release: 2019-08-22 Upgraded ApexCharts.js 3.8.2 Set parent container height 0 default (fix #2).","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-011","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.1","title":"apexcharter 0.1.1","text":"CRAN release: 2019-07-28 First CRAN release: create interactive chart JavaScript ApexCharts library. Types graphics available : bars, columns, splines, lines, scatter, pie, donuts, heatmap, gauge.","code":""}]