Hi, I'm an undergraduate Economics student, new to RStudio and learning how to utilize it on my Statistics class. I've been doing great untill now that we started with the "prob" package, for some reason the program doesnt show me the ouput of "rolldie()" or "tosscoin()", and by extension other code lines that depend on this. Here's what appears to me
```{r}
library(prob)
library(rmarkdown)
```
```{r}
#a
omega <- rolldie(2)
dim(omega)
omega
```
[1] 36 2
```{r}
#b
G <- subset(omega, X1 + X2 == 10); G
```
*Doesn't show me anything at all
Any help would be gladly recibed, thanks for taking the time to read.