50 million users
360 million more users
The data shown is in frequency, not relative frequency. This data can be misleading because the sample sizes or population sizes can be different for each country, such as China that has such a large population.
55200000 people
Inferential - because it is more generalized - they are applying it to the ENTIRE adult population and not just giving data about a specific group. They are talking about the population, which is why it is not an example of descriptive data.
55+
18-34
As age increases, people become more likely to buy things when made in America.
52.7%
2.62% answered Never and 6.78% answered Rarely. So total is 9.4%
my_data<-c(0.0262,0.0678,0.1156,0.2632,0.5272)
group<-c("Never","Rarely","Sometimes","MostofTime","Always")
barplot(my_data, names.arg=group, main="Answer13e")
my_data<-c(125,324,552,1257,2518)
group<-c("Never", "Rarely", "Sometimes", "MostofTime", "Always")
barplot(my_data, names.arg=group, main="Answer13d")
my_data<-c(9.432,24.408,41.616,94.752,189.792)
group<-c("Never", "Rarely", "Sometimes", "MostofTime", "Always")
pie(my_data, labels=group, main="Answer13f")
15)a) The total is 1025 The r.f for More than 1 hour a day is 0.3678 The r.f for Up to 1 hour a day is 0.1873 The r.f for A few times a week is 0.1288 The r.f for A few times a month or less is 0.0790 The r.f for Never is 0.237
23.7%
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.
my_data<-c(377,192,132,81,243)
group<-c("MoreThan1Hr", "Upto1Hr", "FTAWeek", "FTAMonth", "Never")
barplot(my_data, names.arg=group, main="Answer15c")
my_data<-c(0.3678,0.1873,0.1288,0.0790,0.237)
group<-c("MoreThan1Hr", "Upto1Hr", "FTAWeek", "FTAMonth", "Never")
barplot(my_data, names.arg=group, main="Answer15d")
my_data<-c(132.408,67.428,46.368,28.44,85.32)
group<-c("MoreThan1Hr", "Upto1Hr", "FTAWeek", "FTAMonth", "Never")
pie(my_data, labels=group, main="Answer15e")
2.2 9) a) 8
2
15 times
4 more times
15%
Bell-Shaped
9
17%
Skewed Right
10
60-69 is 2, 70-79 is 3, 80-89 is 13, 90-99 is 42, 100-109 is 58, 110-119 is 40, 120-129 is 31, 130-139 is 8, 140-149 is 2, 150-159 is 1
100-109
150-159
5.5%
No
0-199, 200-399, 400-599, 1000-1199, 1400-1599
0-199
Skewed Right
Most likely bell shaped. This is because such tests try to get kids in the medium range and very few get very low or very high scores.
Most likely skewed right because most households will have fewer number of kids and most households have a greater number of people such as ten
Most likey skewed left because this disease occurs in older patients
This will most likely be bell shaped because public schools usually accept kids of all ages
Most likely skewed left because hearing starts to deteriorate as people get older
Most likely bell shaped - very few are very short or very tall so tapering occurs towards the ends
hist(iris$Sepal.Length)
The shape of Iris Data Graph is most likely bell shaped.
When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
summary(cars)
## speed dist
## Min. : 4.0 Min. : 2.00
## 1st Qu.:12.0 1st Qu.: 26.00
## Median :15.0 Median : 36.00
## Mean :15.4 Mean : 42.98
## 3rd Qu.:19.0 3rd Qu.: 56.00
## Max. :25.0 Max. :120.00
You can also embed plots, for example:
Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.