generalExpScores {darts} | R Documentation |
Computes the expected score as the aiming location varies across the board, using the specified covariance matrix and the general model for dart throws.
generalExpScores(Sig)
Sig |
The covariance matrix. |
e |
The matrix of expected scores. |
Ryan Tibshirani
# Generate the matrix of expected scores if my covariance is # Sig=c(15^2,30^2,0), in the general model. This will take a # couple of seconds. e = generalExpScores(Sig=(c(15^2,30^2,0))) # Draw a heatmap! drawHeatmap(e)