Displaying 2 results from an estimated 2 matches for "sicilia".
Did you mean:
sicilie
2009 Dec 01
1
LMER: How to specify Random Effects
...ome countries have some
several plants in different states and we measure the reaction to a drug.
The list of Countries = USA, France, Italy
The States for USA = Michigan, Florida, California
The States for France = Paris, Orleans
The States for Italy = Venezia, Sienna, Florence, Rome, Napoli , Sicilia
Plants were classified as High and Low
is this the way to specify a possible model ?
lmer(Reaction ~ Drug + (1| Country / State / Plant) , data)
or should I use something like this
A) lmer(Reaction ~ Drug + (0| Country / State / Plant) , data)
B) lmer(Reaction ~ Drug + (1| Country ) + (0+Countr...
2010 Apr 06
0
Adding labels on maps (using sp, maptools, or something else suggested)
..."Veneto", "Friuli-Venezia Giulia",
"Emilia-Romagna",
"Toscana", "Umbria", "Marche", "Lazio", "Abruzzo", "Molise",
"Campania", "Puglia",
"Basilicata", "Calabria", "Sicilia", "Sardegna")
gadm$regionnames <- as.factor(regionnames)
col = rainbow(length(levels(gadm$regionnames)))
spplot(gadm, "regionnames", col.regions=col, main="Italian Regions")
This gets me a map with regions colored, but I want uncolored regions
with the labels...