daroczig / CEU-R-intro

Data Analysis 1a: Foundation of Data management in R @ CEU
35 stars 62 forks source link

Homework #10

Closed Illesgabor closed 7 years ago

Illesgabor commented 7 years ago

Datacamp question: Compute the arithmetic mean of the random numbers you generated in the previous exercise.

My solution: set.seed(42) x <- mean (runif(15, min = 1, max = 5)) x

Datacamp doesn't accept it. Instruction: Hint Use the mean function to compute the arithmetic mean.

I do not know, what is wrong with my code... Thank you! Gabor

image

daroczig commented 7 years ago

The previous exercise was:

Generate 15 random numbers between 0 and 5 and store in variable x.

Note the min amount :)

FTR you don't have to reassign x, it's available from the previous exercise, so assume it's already there -- just apply mean