GV900 Political Explanation
GV900 Political Explanation, 2017/2018
30 October, 2018
Homework assignment 2
Due Week 7 (13 November)
Write an R code file named (gv900-HW2.R) to complete the following tasks. The easiest
way to write an R code file is to start with an existing file: Duplicate an existing R code file
that you have (e.g., gv900-week4-JointExercise.R) and modify the file contents accordingly.
Rules
• Submit two files, and two files only. That is, submit (1) the coversheet (ESSAY COVERSHEET
2018-2019.docx, available on Moodle) and (2) your R code file (gv900-HW2.R). Don’t
submit your graph or other outputs. You’ll earn 5 points if you do all of these correctly.
• Make sure that you delete your name from your R code file. You’ll earn 5 points if you
do this correctly.
• Execute everything before you submit (e.g., CTRL + A & CTRL + Return on a Windows
PC; Command + A & Command + Enter on a Mac machine), and make sure your file
runs without an error. I will execute your file to check if you did it. You’ll earn 5 points
if your R file runs without an error.
• Your file must have a proper header. You’ll earn 5 points if you do this correctly.
• Add comments and annotations to everything you do. Try to make your code file look
like my code file. If your code file doesn’t have a proper annotation, you’ll lose 5 points.
Don’t copy and paste all the questions into your R code file, but do show me the question
number for each question. You’ll earn 5 points if you do this correctly.
Tasks (5 points each × 15 = 75 points)
1. Load the “world” dataset (world.csv), and store it as an object named world.data.
2. The data set contains a dummy variable (i.e., a nominal variable with two categories)
named oecd that classifies countries into two groups, OECD member countries and nonmember
countries. One way to describe and summarize the information contained in a
nominal variable is to describe the distribution numerically. As we learned during the
past weeks, we describe the distribution of a nominal variable numerically by creating a
frequency table. Create a frequency table of this variable and store it into a data frame
object ft.oecd. The table has to have three columns: values (initially called “Var1”),
frequency (called “Freq”), and percentage (should be called “Percentage”). Change the
column name of the first column to “OECD Member?”.
3. According to the frequency table you created above, (A) how many countries in the data
set are OECD members? (B) How many countries in the data set are not? (C) What
percentage of countries are OECD members? (D) What percentage of countries are nonmembers?
Give me four answers (four numbers) as a comment. Note: for this task, you
1
don’t need an R command. Just read the table and tell me the numbers. Don’t forget to
comment them out.
4. Another way to describe and summarize a nominal variable is to draw a frequency distribution
graph. For nominal variables, we draw a bar chart. Using the functions available
in the ggplot2 package (e.g., geom bar), draw a bar chart of the dummy variable that
measures OECD membership.
• Hint 1: Don’t forget to load the package using the library function. It’s usually a
good idea to do so at the beginning of your R code file.
• Hint 2: Don’t forget to change the axis labels using the xlab and ylab options. The
appropriate label for the X axis would be “OECD membership”, whereas the label
for the Y axis could be “Number of countries”.
5. List three countries that are coded as OECD member states. List three countries that
are non-democratic according to the democracy dummy variable. Note: Again, you don’t
need a command for this one; I only need six country names.
6. The data set contains a numerical variable (interval-level variable) named gdp 10 thou
that records a country’s per capita GDP in 10,000 US dollars. Note that this variable
measures per capita GDP in 10,000 dollars, not in dollars. This means that, when this
variable takes a value of 4, for example, then that country’s per cpaita GDP is 40,000
dollars, not 4 dollars. Describe this variable numerically by calculating the following
statistics:
• Range (minimum and maximum), median, mean, 1st and 3rd quartile values (Hint:
this can be done at once with one command)
• Standard deviation (Hint: you need to take care of missing values using the na.rm
option)
Note: You need to provide R commands, not just numerical answers for this one.
7. It appears that the mean and the median of this per capita GDP variable are far apart:
the mean is 6,018 dollars whereas the median is 1,897 dollars. Given that the mean is
much higher than the median, the distribution of this variable is very skewed (i.e., not
symmetric). In which way does the skew go? Answer this question by choosing between
two options: (A) negatively skewed (skewed to the left) or (B) positively skewed (skewed
to the right). Note: Give me your answer in words, not in R commands.
8. Describe this per capita GDP variable graphically by drawing a histogram.
• Hint: Don’t forget to change the axis labels using the xlab and ylab options. The
appropriate label for the X axis would be “Per capita GDP (in 10,000 US dollars)”,
whereas the label for the Y axis could be “Number of countries”.
9. There are two countries in the data set whose per capita GDP is greater than 40,000 US
dollars. Identify these two countries. For this task, I need an R command that gives us
the name of the two countries. Your command will probably generate the <NA> symbols
(14 of them), along with the name of the two countries, but that’s fine.
10. We have calculated the sample mean of this per capita GDP variable in task 6. We
have also calculated its standard deviation. We also know from task 6 that there are 14
observations (countries) where this variable is missing, so we have 191 (total number of
countries in the data set) −14 = 177 observations (i.e., n = 177). Therefore, we have all
the building blocks to calculate the standard error of the mean. Calculate the standard
2
error (the answer should be 0.07091015). Note that I need R commands, not just the
numerical answer.
11. Using the calculated standard error and the mean value, construct the 95 % confidence
GV900留学生作业代写
interval of the sample mean of gdp 10 thou. For this, I need both R commands and the
numerical answer.
12. Draw histograms of per capita GDP variable, one for democracies and the other for nondemocracies.
• Hint 1: Use the democ regime variable to classify the countries into democracies and
non-democracies.
• Hint 2: Use the facet wrap option. For this task, you may actually have three
histograms (No, Yes, and NA), and that’s OK. We will correct it below.
13. We find (I mean, I find) a few things about this graph unsatisfactory. First, it is a little
bit aesthetically unpleasing that we have a blank graph on the far right. This happens
because there are missing values. Second, the labels “No” and “Yes” are not intuitive at
all (readers can’t know what “Yes” and “No” mean simply by looking at the graph). So
let’s now fix these two things. Create a new data frame named dem.gdp that excludes
those rows where the democ regime variable is missing. Use the is.na function for this.
Then, create a new variable dem.dum within this new data set, which has two nominal
values, “Democracy” and “Autocracy”, instead of “Yes” and “No”. Then, recreate the
histograms you drew in 12. It should look like the following:
Autocracy Democracy
0 1 2 3 4 5 0 1 2 3 4 5
0
10
20
30
Per capita GDP (in 10,000 US dollars)
Number of countries
14. The graph above appears to suggest that democracies tend to have higher per capita
GDP. Let’s document this relationship by calculating the mean value of per capita GDP
for each group. In doing so, report the 95 % confidence intervals as well. For task 14,
calculate the mean of per capita GDP for democracies, along with the 95 % confidence
interval. Please provide both the commands as well as the results (numbers).
15. Similarly, calculate the mean of per capita GDP for autocracies (non-democracies), along
with the 95 % confidence interval.
End of file
因为专业,所以值得信赖。如有需要,请加QQ:99515681 或 微信:codehelp
GV900 Political Explanation的更多相关文章
- [REP]AWS Regions and Availability Zones: the simplest explanation you will ever find around
When it comes to Amazon Web Services, there are two concepts that are extremely important and spanni ...
- False Discovery Rate, a intuitive explanation
[转载请注明出处]http://www.cnblogs.com/mashiqi Today let's talk about a intuitive explanation of Benjamini- ...
- MSAA, UIA brief explanation
MSAA, UIA brief explanation 2014-07-24 Reference [1] MSAA, UIA brief explanation [2] Testing Tools [ ...
- Explanation About Initilizing A DirextX3D Class 关于初始化Direct3D类的解释
目录 DirectX11 Study Note Create a DirectX graphics interface factory.创建一个DirectX图形界面工厂 CreateDXGIFact ...
- [转]An Intuitive Explanation of Convolutional Neural Networks
An Intuitive Explanation of Convolutional Neural Networks https://ujjwalkarn.me/2016/08/11/intuitive ...
- 每日英语:Political Gridlock, Beijing Style
To admirers outside the country, China's political system stands far above the dysfunctional democra ...
- What is an intuitive explanation of the relation between PCA and SVD?
What is an intuitive explanation of the relation between PCA and SVD? 36 FOLLOWERS Last asked: 30 Se ...
- Foundations of Machine Learning: The Margin Explanation for Boosting's Effectiveness
Foundations of Machine Learning: The Margin Explanation for Boosting's Effectiveness 在这一节,我们要回答的一个问题 ...
- Spoken English Practice(Don't get me wrong, that explanation makes no difference, I'm still mad at you. Come on, be reasonable!)
绿色:连读: 红色:略读: 蓝色:浊化: 橙色:弱读 下划线_为浊化 口语蜕变(2017/7/11) ...
随机推荐
- 疑问:Spring 中构造器、init-method、@PostConstruct、afterPropertiesSet 孰先孰后,自动注入发生时间
一.前言 spring的一大优点就是扩展性很强,比如,在spring bean 的生命周期中,给我们预留了很多参与bean 的生命周期的方法.大致梳理一下,有以下几种: 通过实现 Initializi ...
- visdom 简单使用
 官方网址: https://github.com/facebookresearch/visdom 入门教程: http://www.ainoobtech.com/pytorch/pytorch-v ...
- 【编译系统01】编译器 - 词法分析器(lexial)的设计思路
时间:2019/11/29 首先,词法分析器由一个扫描器与状态机组成. 一. 词法分析器整体设计流程 二.设计细节 1. code.txt: 我们假设读取下面文本 2.符号类型的设计 我们使用 enu ...
- SAP模块常用增强总结(转)
转自:http://blog.sina.com.cn/s/blog_4298a2c80102x40c.html MM模块: 采购订单增强: BADI :ME_GUI_PO_CUST ME_PROCES ...
- Java并发编程杂记(2)
对象共享 synchronized 设定原子性确定临界区 + 内存可见性 要解决如下问题 防止一个线程在使用对象状态而另一个线程在修改对象状态:且当一个线程修改了对象状态后,对其他线程可见. 可见 ...
- arcgis api 3.x for js 地图加载多个气泡窗口展示(附源码下载)
前言 关于本篇功能实现用到的 api 涉及类看不懂的,请参照 esri 官网的 arcgis api 3.x for js:esri 官网 api,里面详细的介绍 arcgis api 3.x 各个类 ...
- 开关VoLTE流程分析(一)
开关按钮位置: 设置--> 更多--> 移动网络--> 增强型4G LTE模式 控件初始化addEnhanced4GLteSwitchPreference,该设置开关使用了Switc ...
- XCode保存问题
1. 确认下证书是不是开发证书,如果是发布证书就会出现这样的提示. 2. 证书失效了,去开发者中心重新生成一个. 3. 包标识符不与描述文件包含的包标识符不一致,按照它的提示换一下就好了,最好不要点 ...
- 记录console的使用
一般信息:console.info("这是info") 除错信息:console.debug() 警告提示:console.warn() 错误提示:console.error() ...
- c语言的全排列
在c语言中实现全排列,对于刚接触c语言,还没学习算法的人来说,比较困难了吧.估计大佬也不会看这种基础的东西,全排列实现的办法很多,在c++中有一个专门的函数可以使用,但是在c中实现就有点困难了.如果你 ...