Description Usage Format Source References Examples
This data includes the customer contact information, the customer credit limit and the sales representative assigned to the customer.
1 | data("CUSTOMERS")
|
A data frame with 122 observations on the following 13 variables.
CUSTOMERNUMBERa numeric vector
CUSTOMERNAMEa character vector
CONTACTLASTNAMEa character vector
CONTACTFIRSTNAMEa character vector
PHONEa character vector
ADDRESSLINE1a character vector
ADDRESSLINE2a character vector
CITYa character vector
STATEa character vector
POSTALCODEa character vector
COUNTRYa character vector
SALESREPEMPLOYEENUMBERa numeric vector
CREDITLIMITa numeric vector
http://www.eclipse.org/birt/documentation/sample-database.php
http://www.eclipse.org/legal/epl/notice.php
1 2 3 4 5 6 7 8 9 10 11 12 | data(CUSTOMERS)
str(CUSTOMERS)
names(CUSTOMERS)
summary(CUSTOMERS)
head(CUSTOMERS)
quantile(CUSTOMERS$CREDITLIMIT)
## group and extract values
unique(CUSTOMERS$COUNTRY)
aggregate(CUSTOMERS$CREDITLIMIT, by=list(CUSTOMERS$COUNTRY), FUN=mean)
##use with the other classic.models data sets. For example make an inner join with:
## newtable <- merge(CUSTOMERS,ORDERS)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.