simpleExpScores {darts} | R Documentation |
Computes the expected score as the aiming location varies across the board, using the specified variance and the simple model for dart throws.
simpleExpScores(s)
s |
The marginal variance. |
e |
The matrix of expected scores. |
Ryan Tibshirani
# Generate the matrix of expected scores if my variance is 25^2, # in the simple model. This will take a couple of seconds. e = simpleExpScores(s=25^2) # Draw a heatmap! drawHeatmap(e)