create1DHistogramRaw | R Documentation |
Create area hisgoram with cumulatvie sum
create1DHistogramRaw(histData, histMetaData, plotType = "area", xaxisType = "")
histData |
dataframe with x,val |
histMetaData |
dataframe with all needed fields: aribute, xlabel , scale = "LINEAR"/"LOG", failed, count for sidplauy purposes |
plotType |
type of the plot (scatter,area, column, ...) |
xaxisType |
put "logarithmic" is needed for X-axis |
highcharter area histogram
## Not run:
periodData = sosSet %>%
group_by(x = round(period,2)) %>%
summarise(val = n()) %>% ungroup()
create1DHistogramRaw(periodData,
metaData =
data.frame(attribute = "Period",
xlabel = paste(cu7Name, "Period"),
scale = "LINEAR",
failed = NaN,
count = length(sosSet[[1]])))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.