lbubbleplot: bubble plot for data

Description Usage Arguments Examples

View source: R/bubbleplot.R

Description

bubble plot for data

Usage

1
2
3
lbubbleplot(data, x, y, size, save = NULL, ylim = NULL, xlab = NULL,
  ylab = NULL, title = NULL, main = NULL, range = c(2, 4.5),
  breaks = c(8.59, 11.37, 21.91))

Arguments

data

A list of data frames which have same structure.

x

A x-axis variable,character type

y

A y-axis variable,character type

size

the size of response,character type

save

Save a png file using name as save.

ylim

the scale of y-axis, c(low, high).

xlab

the label of x-axis, character type.

ylab

the label of y-axis, character type.

title

if there are multi-plots will be drawn, this list includes the title of each plot.

main

a main title of plot.

range

a numeric vector of length 2 that specifies the minimum and maximum size of the plotting symbol after transformation.

breaks

A numeric vector of positions

Examples

1
2
3
4
   data(bubble)
   head(bubble)
   data_sort_by_variables<-split(bubble,bubble$variable)
   BubblePlot(data_sort_by_variables,"time","value","HAMD")

ShouyeLiu/metaboliteUtility documentation built on May 6, 2019, 9:07 a.m.