bubbleplot | R Documentation |
Questa funzione disegna un grafico a bolle (bubbleplot) a partire da una tabella a doppia entrata.
bubbleplot(tab, joint = TRUE, magnify = 1, filled = TRUE, main = "bubble plot")
tab |
tabella di contingenza a due vie |
joint |
valore logico. Se |
magnify |
parametro per il controllo dell'ampiezza delle bolle |
filled |
valore logico. Se |
main |
titolo del grafico |
x <- c("O","O","S","B","S","O","B","B","S", "B","O","B","B","O","S") y <- c("O","B","B","B","S","S","O","O","B", "B","O","S","B","S","B") x <- ordered(x, levels=c("S","B","O")) y <- ordered(y, levels=c("S","B","O")) table(x,y) bubbleplot(table(x,y),main="Musica versus Pittura")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.