Description Usage Arguments Value Author(s) References See Also Examples
This function tries to make a nicer plot than the one given by the
plot() function for two quantitative variables
1  | flashy.plot(x,y,my.factor, family = "Courier",xlab="",ylab="")
 | 
x | 
 numeric vector  | 
y | 
 numeric vector  | 
my.factor | 
 factor  | 
family | 
 font family for the title. Default is "Courier". Another choice can be, e.g., "HersheyScript"  | 
xlab | 
 character. x label  | 
ylab | 
 character. y label  | 
A flashy scatter plot
Lafaye de Micheaux Pierre <lafaye@unsw.edu.au>, Remy Drouilhet <Remy.Drouilhet@upmf-grenoble.fr>, Liquet Benoit <b.liquet@uq.edu.au>
Chapter 11 (Descriptive Statistics) from the book: The R Software, Fundamentals of Programming and Statistical Analysis
1 2 3 4 5 6  | data(NUTRIELDERLY)
attach(NUTRIELDERLY)
gender <- as.factor(gender)
levels(gender) <- c("Male","Female")
flashy.plot(weight,height,gender,xlab="Height",ylab="Weight")
detach(NUTRIELDERLY)
 | 
Loading required package: xtable
Loading required package: RColorBrewer
Loading required package: gdata
gdata: read.xls support for 'XLS' (Excel 97-2004) files ENABLED.
gdata: read.xls support for 'XLSX' (Excel 2007+) files ENABLED.
Attaching package: 'gdata'
The following object is masked from 'package:stats':
    nobs
The following object is masked from 'package:utils':
    object.size
The following object is masked from 'package:base':
    startsWith
Loading required package: IndependenceTests
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.