The S4 class innsight_plotly visualizes the results as a matrix of plots based on plotly::plot_ly. The output nodes (and also input layers) are displayed in the columns and the selected data points in the rows. With these basic generic indexing functions, the plots of individual rows and columns can be accessed.

# S4 method for innsight_plotly,ANY,ANY,ANY
[(x, i, j, ..., drop = TRUE)

# S4 method for innsight_plotly
[[(x, i, j, ..., drop)

Arguments

x

An instance of the S4 class innsight_plotly.

i

The numeric (or missing) index for the rows.

j

The numeric (or missing) index for the columns.

...

other unused arguments

drop

unused argument

Value

  • [.innsight_plotly: Selects the plots from the i-th rows and j-th columns and returns them as a new instance of innsight_plotly.

  • [[.innisght_plotly: Selects only the single plot in the i-th row and j-th column and returns it as a plotly object.