#title lattice [[TableOfContents]] lattice 그래픽은 다변량 자료에서 기준이 되는 변수와 나머지 변수들과의 관계를 파악할 때에 유용하다. ==== dotplot ==== {{{ install.packages("lattice") library("lattice") dotplot(variety~yield | site, data=barley, groups=year, key = simpleKey(levels(barley$year), space="right")) }}} attachment:lattice/lattice01.png ==== levelplot ==== {{{ attach(iris) levelplot(Sepal.Length ~ Petal.Length*Petal.Width) }}} attachment:lattice/lattice02.png