SURFACESPAIN: Surface Area for Spanish Communities

Description Usage Format References Examples

Description

Surface area (\texttt{km}^2) for seventeen autonomous Spanish communities.

Usage

1

Format

A data frame with 17 observations on the following 2 variables:

References

Ugarte, M. D., Militino, A. F., and Arnholt, A. T. 2015. Probability and Statistics with R, Second Edition. Chapman & Hall / CRC.

Examples

1
2
3
4
5
6
7
8
# Base Graphs
with(data = SURFACESPAIN, barplot(surface, names.arg = community, las = 2))
# ggplot2
ggplot(data = SURFACESPAIN, aes(x = reorder(community, surface), y = surface)) + 
geom_bar(stat = "identity", fill = "yellow", color = "gold") + coord_flip() + 
labs(x = "", y = "squared kilometers")
# Trellis Approach
barchart(community ~ surface, data = SURFACESPAIN)

PASWR2 documentation built on Sept. 5, 2021, 5:44 p.m.