Description Usage Arguments Value Author(s) Examples
Compare groups based on scatter plots.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
data |
A data frame. Rows are subjects; Columns are variables describing the subjects. |
x |
character. The column name of |
y |
character. The column name of |
group |
character. The column name of |
alpha |
Transparency of histogram inside color. |
point.size |
numeric. Indicate the size of the data points |
xlab |
x axis label |
ylab |
y axis label |
group.lab |
label of group variable |
title |
title of the plot |
theme_classic |
logical. Use classic background without grids (default: TRUE). |
addThemeFlag |
logical. Indicates if light blue background and white grid should be added to the figure. |
... |
other input parameters for facet & theme |
A list with 9 elements.
data
, layers
, scales
, mapping
,
theme
, coordinates
,
facet
plot_env
, and labels
.
Wenfei Zhang <Wenfei.Zhang@sanofi.com>, Weiliang Qiu <Weiliang.Qiu@sanofi.com>, Xuan Lin <Xuan.Lin@sanofi.com>, Donghui Zhang <Donghui.Zhang@sanofi.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | data(diffCorDat)
print(dim(diffCorDat))
print(diffCorDat[1:2,])
statVisual(type = 'XYscatter',
data = diffCorDat,
x = 'probe1',
y = 'probe2',
group = 'grp',
title = 'Scatter Plot: probe1 vs probe2')
XYscatter(
data = diffCorDat,
x = 'probe1',
y = 'probe2',
group = 'grp',
title = 'Scatter Plot: probe1 vs probe2')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.