idotplot: Interactive phenotype x genotype plot

Description Usage Arguments Value See Also Examples

View source: R/idotplot.R

Description

Creates an interactive graph of phenotypes vs genotypes at a marker.

Usage

1
idotplot(x, y, indID = NULL, group = NULL, chartOpts = NULL, digits = 5)

Arguments

x

Vector of groups of individuals (e.g., a genotype)

y

Numeric vector (e.g., a phenotype)

indID

Optional vector of character strings, shown with tool tips

group

Optional vector of categories for coloring points

chartOpts

A list of options for configuring the chart. Each element must be named using the corresponding option.

digits

Round data to this number of significant digits before passing to the chart function. (Use NULL to not round.)

Value

An object of class 'htmlwidget' that will intelligently print itself into HTML in a variety of contexts including the R console, within R Markdown documents, and within Shiny output bindings.

See Also

[iplot()], [iplotPXG()]

Examples

1
2
3
4
5
n <- 100
g <- sample(LETTERS[1:3], n, replace=TRUE)
y <- rnorm(n, match(g, LETTERS[1:3])*10, 5)

idotplot(g, y)

qtlcharts documentation built on Jan. 8, 2022, 1:06 a.m.