Nothing
# Generate normal distribution values set.seed(123) n <- 100 # Number of values mu <- 0 # Mean of the distribution sigma <- 1 # Standard deviation of the distribution values <- rnorm(n, mean = mu, sd = sigma) # Present the values # summary(values) # Generate and display the histogram plot library(ggplot2) histogram <- ggplot(data.frame(values), aes(x = values)) + geom_histogram(fill = "steelblue", color = "white") + labs(title = "Histogram of Normal Distribution Values", x = "Values", y = "Frequency") ggsave("ND.png", plot = histogram, width = 3, height = 3, dpi = 300)
Which type of histogram is shown on the picture?
{width=300px height=300px}
The correct answer is Histogram of Normal Distribution Values. According to the definition, this distribution has the follow view:
{width=300px height=300px}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.