ProjectMOSAIC / mosaic

Project MOSAIC R package
http://mosaic-web.org/
93 stars 26 forks source link

Mosaic Package Not Showing? #730

Closed tyleroc5 closed 5 years ago

tyleroc5 commented 5 years ago

Brand new R user. I see mosaicCore, mosaicData, mosaicModel packages but not the Mosaic package when I download it. None of the functions like "xyplot" are working as a result. What am I doing wrong?

rpruim commented 5 years ago

It's hard to say without knowing what you did.

I'd start with

install.packages("mosaic")
library(mosaic)
mean(Sepal.Length ~ Species, data = iris)

If you get the 3 means, one for each species, then it would appear things are installed and working properly.

(Note: xyplot() belongs to lattice. You might prefer to look at gf_point() in the ggformula package. Both lattice and ggformula are loaded when mosaic is loaded.)