Description Usage Format Details Source Examples
Airline distances between 11 US cities may be used as an example for multidimensional scaling or cluster analysis.
1 |
A data frame with 11 observations on the following 11 variables.
ATLAtlana, Georgia
BOSBoston, Massachusetts
ORDChicago, Illinois
DCAWashington, District of Columbia
DENDenver, Colorado
LAXLos Angeles, California
MIAMiami, Florida
JFKNew York, New York
SEASeattle, Washington
SFOSan Francisco, California
MSYNew Orleans, Lousianna
An 11 x11 matrix of distances between major US airports. This is a useful demonstration of multiple dimensional scaling.
city.location is a dataframe of longitude and latitude for those cities.
Note that the 2 dimensional MDS solution does not perfectly capture the data from these city distances. Boston, New York and Washington, D.C. are located slightly too far west, and Seattle and LA are slightly too far south.
http://www.timeanddate.com/worldclock/distance.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | data(cities)
city.location[,1] <- -city.location[,1]
#not run
#an overlay map can be added if the package maps is available
#
#
#libary(maps)
#map("usa")
#title("MultiDimensional Scaling of US cities")
#points(city.location)
plot(city.location, xlab="Dimension 1", ylab="Dimension 2",
main ="Multidimensional scaling of US cities")
city.loc <- cmdscale(cities, k=2) #ask for a 2 dimensional solution round(city.loc,0)
city.loc <- -city.loc
city.loc <- rescale(city.loc,apply(city.location,2,mean),apply(city.location,2,sd))
points(city.loc,type="n")
text(city.loc,labels=names(cities))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.