asPlotlyText: Plotly text

View source: R/plot.R

asPlotlyTextR Documentation

Plotly text

Description

Convert a data.frame to plotly text

Usage

asPlotlyText(df)

Arguments

df

A data.frame

Value

A character vector of the length of df's number of rows.

Examples

set.seed(1)

X <- big_attachExtdata()
svd <- big_SVD(X, big_scale(), k = 10)

p <- plot(svd, type = "scores")

pop <- rep(c("POP1", "POP2", "POP3"), c(143, 167, 207))
df <- data.frame(Population = pop, Index = 1:517)

plot(p2 <- p + ggplot2::aes(text = asPlotlyText(df)))
## Not run: plotly::ggplotly(p2, tooltip = "text")

bigstatsr documentation built on Oct. 14, 2022, 9:05 a.m.