Function List 3

ceiling(a)
Round up to decimal places

ceiling's photo

runif(n,min,max)
Generate uniformly distributed random numbers

runif's photo

set.seed(seed)
Generate random numbers with a fixed pattern

setseed's photo

barplot(height,names.arg)
Create a bar chart

barplot's photo

curve(func,from,to)
Draw a function curve

curve's photo

dnorm(x,mean,sd)
Probability density function of normal distribution

dnorm's photo

rnorm(n,mean,sd)
Generate normally distributed random numbers

rnorm's photo

numeric(length)
Reserve a place to store the number

numeric's photo

x <− a:b
Create continuous data

x's photo

for(i in data){process}
Repeat the process

for's photo