schema: Acquire (and optionally display) plotly's plot schema

View source: R/dev.R

schemaR Documentation

Acquire (and optionally display) plotly's plot schema

Description

The schema contains valid attributes names, their value type, default values (if any), and min/max values (if applicable).

Usage

schema(jsonedit = interactive(), ...)

Arguments

jsonedit

use listviewer::jsonedit to view the JSON?

...

other options passed onto listviewer::jsonedit

Examples


s <- schema()

# retrieve acceptable `layout.mapbox.style` values
if (!is.na(Sys.getenv('MAPBOX_TOKEN', NA))) {
  styles <- s$layout$layoutAttributes$mapbox$style$values
  subplot(
    plot_mapbox() %>% layout(mapbox = list(style = styles[3])),
    plot_mapbox() %>% layout(mapbox = list(style = styles[5]))
  )
}




ropensci/plotly documentation built on Jan. 25, 2024, 6:09 p.m.