Create href to be used as cognostics in a trelliscope display

cog_href(
  x,
  desc = "link",
  group = "common",
  default_label = FALSE,
  default_active = FALSE,
  filterable = FALSE,
  sortable = FALSE,
  log = FALSE
)

Arguments

x

URL to link to

desc, group, default_label, default_active, filterable, sortable, log

arguments passed to cog

See also

Examples

# \donttest{ library(dplyr) library(tidyr) library(plotly) iris %>% nest(data = -Species) %>% mutate( panel = map_plot(data, function(x) { plot_ly(data = x, x = ~Sepal.Length, y = ~Sepal.Width, type = "scatter", mode = "markers") }), wiki_link = cog_href(paste0("https://en.wikipedia.org/wiki/Iris_", tolower(Species))[1], default_label = TRUE, desc = "link to species on wikipedia") ) %>% trelliscope(name = "iris_species", ncol = 3) # }