Show an array on `ax`.

show_array(
  array,
  ax = NULL,
  figsize = NULL,
  title = NULL,
  ctx = NULL,
  tx = NULL
)

Arguments

array

R array

ax

axis

figsize

figure size

title

title, text

ctx

ctx

tx

tx

Value

None

Examples


if (FALSE) {

arr = as.array(1:10)
show_array(arr,title = 'My R array') %>% plot(dpi = 200)

}