A
Arny01
Member
Hi,
In the CS2 paper B exam, do you have to write the arguments of an R function out in full to get full marks? For example in the April 2019 paper B question 2iia), to simulate 1,000 values from a distribution in the exam report gives the code:
> LNorm_Vector <- rlnorm(1000, meanlog = 0, sdlog = 1)
or could you just write it without meanlog and sdlog, see below, to get full marks?
LNorm_Vector <- rlnorm(1000 , 0, 1)
Thanks
In the CS2 paper B exam, do you have to write the arguments of an R function out in full to get full marks? For example in the April 2019 paper B question 2iia), to simulate 1,000 values from a distribution in the exam report gives the code:
> LNorm_Vector <- rlnorm(1000, meanlog = 0, sdlog = 1)
or could you just write it without meanlog and sdlog, see below, to get full marks?
LNorm_Vector <- rlnorm(1000 , 0, 1)
Thanks