Convert bds-format data to individual and return growth chart
Source:R/deprecated.R
draw_chart_bds-deprecated.RdThe function draw_chart_bds() convert bds data into an object
of class individual, and then draws the
individual data on the requested growth chart.
Superseded by draw_chart().
Usage
draw_chart_bds(
txt = "",
format = "1.0",
chartcode = "",
curve_interpolation = TRUE,
selector = "chartcode",
...
)Arguments
- txt
A JSON string, URL or file
- format
String. JSON data schema version number. There are currently three schemas supported:
"1.0","1.1","2.0"and"3.0". Formats"1.0"and"1.1"are included for backward compatibility only. Useformat = "3.0"for new applications.- chartcode
A string with chart code
- curve_interpolation
A logical indicating whether curve interpolation shoud be applied.
- selector
Legacy addition to solve a problem in jgzApp. See
draw_chartfor interpretation. The default is set to"chartcode".- ...
For
draw_chart_bds, additional parameter passed down tofromJSON(txt, ...),new("xyz",... )andnew("bse",... ). Useful parameters aremodels = "bsmodel"for setting the broken stick model, orcall = as.call(...)for setting proper reference standards.
Examples
fn <- system.file("testdata", "client3.json", package = "james")
g <- draw_chart_bds(txt = fn)
#> Warning: draw_chart_bds() is deprecated and will disappear in Nov 2022. Please use draw_chart() instead.