Simulating a probit
During the previous exercise, you simulated a logit. During this exercise, you will simulate a probit. First, you will convert from the probit scale to a probability. Second, you will use this probability to simulate from a binomial distribution.
Bu egzersiz, kursun bir parçasıdır
Generalized Linear Models in R
Egzersiz talimatları
- Using function
pnorm()to convert0on the probit scale to a probability. Save the output asp. - Using the
rbinomfunction, generate 10 samples (n = 10) with a size of 1 (size = 1) using the probabilityp.
Uygulamalı etkileşimli egzersiz
Bu egzersizi bu örnek kodu tamamlayarak deneyin.
# Convert from the probit scale to a probability
p <- ___
# Simulate a probit
___