Using the interactive option in plot_Histogram() generates this error:
data(ExampleData.DeValues, envir = environment())
df <- ExampleData.DeValues$CA1
plot_Histogram(df, interactive = TRUE)
# Error in UseMethod("layout") :
# no applicable method for 'layout' applied to an object of class "list"
traceback()
# 2: plotly::layout(yaxis2 = yaxis2) at plot_Histogram.R#763
# 1: plot_Histogram(df, interactive = TRUE)
If I comment out the plotly::layout(yaxis2 = yaxis2) line, I get these long warnings andthe plot is mostly empty (only the axis and labels are visible, but no histogram).
Using the
interactive
option inplot_Histogram()
generates this error:If I comment out the
plotly::layout(yaxis2 = yaxis2)
line, I get these long warnings andthe plot is mostly empty (only the axis and labels are visible, but no histogram).