ECON4016 - FINAL EXAM

ECON4016 - FINAL EXAM
The final exam consists 4 small projects. You can choose 2 of them to finish and send me
your report. For each of the small projects you choose, you should perform data analysis
using the data I provide to you and the techniques we discussed in class. For each project,
you should tell me in your report what kinds of questions you were trying to answer with
those analysis, and what did you do and what finding to you have. Please send your report
and R-script to my email ([email protected]) by 9AM 18 May, 2019. NO late submission
after will be considered.
1. Please download the subsample data of Hong Kong census (2001-2016) from the following
link:
https://drive.google.com/file/d/1Md6c5J0VcV0_g_veL48i9upJNOKoLc-V/view?usp=
sharing
The zipped file contains four data files: hkcensus2001025.dta, hkcensus2006025.dta,
hkcensus2011025.dta, hkcensus2016025.dta which are the subsample data for HK census
in 2001, 2006, 2011 and 2016 respectively. You could use the following code to read
these dta files into R
library(foreign)
mydata <- read.dta(”c:/mydatga.dta”)
Select two to three variables that interested you from these dataset, try to demonstrate
the relationship between these variables using visualisation. You can also extend your
analysis by showing the temporal changes and/or spatial distribution of these variables.
Examples for the research questions are:

代写ECON4016作业、代做R编程设计作业、data留学生作业代写
1) How gender inequality in employment changes by the rising education level of
women?
2) How poor households distribute spatially in different districts of Hong Kong,
and how does this spatial pattern change over time?
These are only examples, feel free to choose other research questions that interests you.
2. Please download the data for textual data analysis from the following link:
https://drive.google.com/file/d/1vmqN5wsUYvAq0yzdpHud32jbB4EKndTD/view?usp=
sharing
It contains two datasets, both in .csv format:
1) historical news headlines from Reddit WorldNews Channel which collected
the top 25 headlines in each date based on reddit users’ votes (RedditNews.csv
contains two columns: the first column is the ”date”, and second column is the
”news headlines”. All news are ranked from top to bottom based on how hot they
are)
1
2) Dow Jones Industrial Average (DJIA) roughly between 2009 and 2016.
And please use the first dataset to generate some useful indices or variables to summarise
the information in those texts and see if these indices or variables could have
some predictive power for the stock price in the second dataset. (Hint: you can either
use simple regression or more complex machine learning methods to test for the
relationship.)
3. Please download the U.S. patent dataset for network analysis from the following link:
https://drive.google.com/file/d/1qytpbWCkyZNYG4GGHdo-P7OxZjtTYYBV/view?usp=
sharing
It contains two datasets, both in .txt format:
1) acite75 99.txt: all US patent citations for utility patents granted between 1975
and 1999 (the edge file)
2) apat63 99.txt: all utility patents information (the node file)
You can find the data documentation files Cite75 99.txt and pat63 99.txt containing
the detail description of all variables inside.
And please use these dataset to create a citation network for the U.S. patents. Try to
visualise and describe the characteristics of this network and try to find some useful
information from these analysis (e.g. which was the key innovations in this patent
dataset).
4. Please download the data of real estate transactions for building a predictive model
from the following link:
https://drive.google.com/file/d/1T6e6-iy15A9OQZyjsbzWDNkiTiOlHHrW/view?usp=
sharing
The link connect to a guangzhou2017.dta file which contains all the real estate transactions
in Guangzhou at 2017. You can use the same code in the first small project
to read this file into R. Please use the apartment characteristics information in this
dataset to build a model for predicting house price using the tree based or neutral
network method.

因为专业,所以值得信赖。如有需要,请加QQ:99515681 或邮箱:[email protected]

微信:codinghelp

原文地址:https://www.cnblogs.com/blogy/p/10853311.html

时间: 2024-09-29 06:16:55

ECON4016 - FINAL EXAM的相关文章

Final Exam Arrangement

题目链接 题意: 输入n个左闭右开的线段,如果两个线段有重叠部分,那么这两个线段必然不能在一组.求,最少分几组,并且输出每组都有谁 分析: 将一个线段拆开成左右端点,排序.从左向右扫描,如果遇到的是左端点,那么直接加入到集合中,此时集合中的这些线段两两有重合部分,所以是可以分到同一组的:如果遇到的是右端点,那么当前线段之后将和当前线段没有重合点,必然不能放到一组.这样贪心的将每一个线段尽可能的分到一个组中(分到哪个组无所谓,只要分到了一个组中,答案就能减少),就可以保证答案是最少的.当一个线段不

BNUOJ 33535 Final Exam Arrangement

In Zhejiang University, there are N different courses labeled from 1 to N. Each course has its own time slot during the week. We can represent the time slot of a course by an left-closed right-open interval [s, t). Now we are going to arrange the fin

Math 353/DSC 301, Spring 2019, Final Exam

Math 353/DSC 301, Spring 2019, Final ExamPlease remember to write down your name and student ID. This is the take-home portion whichhas four problems. Only independently-finished and fully-justified answer will receive full credit.1. [11 = 3 + 2 + 4

STA 471 Final Exam

STA 471 Due: 5/15/2019Final ExamWhen compiling your answers to the following questions, follow all guidelines for homeworkassignments listed in the syllabus. A hard copy of your work is to be turned in to my office(Kimball 810) by 5:00 PM on the due

2019 Multi-University Training Contest 7 Kejin Player Final Exam

Kejin Player 期望DP 题意: 初始等级为1,每一级有四个参数 r , s , x , a . 每一级有一个概率p=r/s花费a的代价升级到下一级,失败可能会倒退到x级 设从 l 到 r 的期望为 g(l, r), 这种期望满足减法 g(l, r) = g(1, r) − g(1, l). 因为升级只能一级一 级升, 所以要从 1 升级到 r, 必然要经过 l. 求一个前缀和 sum[i+1]=sum[i]+ai * si / ri + (sum[i]-sum[x])*(si-ri)

oj--cs10116 final exam

http://cs101.openjudge.cn/practice/12560/ 样例的结果是对的,但是WA,还没找到原因 #include<cstdio> int map[105][105]; bool issur[105][105]; int main(){ int n,m; scanf("%d %d",&n,&m); for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ scanf("%d&

有感于Java Final Exam

秋季学期的java已经结课了,当看到教务平台贴出的通知说考试形式为单选题时,心中喜忧参半. 可喜的是这种考试形式还是比较得民心,毕竟除了判断题,最好做的也就是单选题了. 然而期中考试选择题50%的命中率还历历在目,不免心生忧虑.然后后来的事实证明,果然我的忧虑不是毫无道理的,再次被虐,而且被虐的毫无怨言. 考试完后把还有印象的几道题目在eclipse上跑了跑,结果也是不堪回首.... 然后我决定把它们记下来,以期在不远的将来能够一雪前耻. #1.对,你没有看错,就是这道题,我当时靠着卓越的逆向思

Algorithm lesson final exam

1.algorithm analysis O B/W/AV/AMOR,混入其他问题,设计+分析 2.传统算法(肯定要考) 1)divide and conquer master therem. recursive tree.分析复杂度.递归树加起来得到最终结果 2)greedy algorithm example sort->select 拟阵 独立系统的贪心模板,直接得到近似比 3)dynamic programming sub-optimal structrue.编辑距离 3.graph a

加州大学伯克利分校Stat2.3x Inference 统计推断学习笔记: FINAL

Stat2.3x Inference(统计推断)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Academia.edu) ADDITIONAL PRACTICE FOR THE FINAL In the following problems you will be asked to choose one of the four options (A)-(D). The options are sta