Calculates and returns probability distribution of initial votes for guilty verdict from 0:jury_n with options for peremptory strikes and strike accuracy. To select jury without strikes, keep pstrikes=0 and dstrikes=0.
select.with.strikes(
p_g,
jury_n = 12,
pstrikes = 0,
dstrikes = 0,
accuracy = 0.15
)
A vector of probabilities for 0:jury_n initial guilty votes
The proportion of jurors in the jury pool who favor a guilty verdict
Size of the jury (i.e. 6, 8, or 12); default value is 12.
Number of peremptory strikes by prosecution; default value is 0.
Number of peremptory strikes by defendant; default value is 0.
Accuracy of parties' peremptory strikes; a number between 0 and 1; default value is .15.
library(sate)
select.with.strikes(p_g=.70, jury_n=6)
select.with.strikes(p_g=.75, jury_n=12, pstrikes=6, dstrikes=10)
Run the code above in your browser using DataLab