Skip to content

Instantly share code, notes, and snippets.

@helgasoft
helgasoft / init.locale.R
Last active October 23, 2024 20:48
R | ECharts | custom or built-in locale; Graphic text and image
# set a custom locale in ECharts with echarty
# idea from @williamorim
# install.packages("remotes")
remotes::install_github("helgasoft/echarty") // v.1.6.4+
library(echarty)
library(lubridate)
df <- data.frame(date=as.Date('2019-12-31') %m+% months(1:13), num=runif(13))
@timelyportfolio
timelyportfolio / example.Rmd
Last active August 2, 2024 16:33
summary widget with flexdashboard valueBox
---
title: "Example of filtered values boxes"
output:
flexdashboard::flex_dashboard:
orientation: rows
vertical_layout: fill
mathjax: null
---
```{r setup, include=FALSE}