d3plus icon indicating copy to clipboard operation
d3plus copied to clipboard

adding boxplot?

Open martinbel opened this issue 9 years ago • 0 comments

Hi. I tried to add the "box" type using the following code:

if(type == "box"){
    axis = c(2,3)
    id <- names(data)[1]
    xAxis <- names(data)[axis[1]]
    yAxis <- names(data)[axis[2]]

    settings <- list(
      id = id,
      xAxis = xAxis,
      yAxis = yAxis
    )
  }

in settings.R but it's not working. I think the scatter type is practically the same. But for some reason it's not working, any ideas? Thanks!

martinbel avatar Jan 11 '16 04:01 martinbel