数据集:Introduction to Econometrics by Stock&Watson
James H. Stock and Mark W. Watson, Introduction to Econometrics: data sets
詹姆斯·H·斯托克 马克·W·沃森. 计量经济学. 数据集
学生资源
https://wps.pearsoned.com/aw_stock_ie_3/178/45691/11696965.cw/index.html
Third Edition or Third Edition Update
Data for Empirical Exercises and Test Bank
- Data for Empirical Exercises and Test Bank (Original Edition)
- Data for Empirical Exercises and Test Bank (Updated Edition)
STATA 数据集
Each of these data sets is readable by Stata over the Web. You need only copy the line given below each dataset into your Stata command window or Stata do-file. After loading the data into Stata, use save to make a copy of the data on your own machine if you wish. The link from each dataset's name gives you the codebook of variable names and definitions. Please report any problems accessing these data to baum.
- CASCHOOL: N=420, panel data on test performance, school characteristics and student demographic backgrounds for California school districts, 1998-1999.
use http://fmwww.bc.edu/ec-p/data/stockwatson/caschool - CIG_CH10: N=96, Panel data, annual per capita cigarette sales for 48 states in packs per fiscal year in 1985 and 1995, only.
use http://fmwww.bc.edu/ec-p/data/stockwatson/cig_ch10 - CIG85_95: N=528, Panel data, annual per capita cigarette sales for 48 states in packs per fiscal year from 1985-1995.
use http://fmwww.bc.edu/ec-p/data/stockwatson/cig85_95 - CPS_CH3: N=11130, Panel data: the Current Population Survey (CPS) provides data on labor force characteristics of the population, 1992-1998.
use http://fmwww.bc.edu/ec-p/data/stockwatson/cps_ch3 - FATALITY: N=336, Panel data, number of state traffic fatalities for 48 states, 1982-1988.
use http://fmwww.bc.edu/ec-p/data/stockwatson/fatality - HMDA_AER: N=2925, Cross-sectional data, mortgage applications made in 1990 in the greater Boston metropolitan area.
use http://fmwww.bc.edu/ec-p/data/stockwatson/hmda_aer - HMDA_SW: N=2380, Cross-sectional data, mortgage applications made in 1990 in the greater Boston metropolitan area using a subset of the original dataset.
use http://fmwww.bc.edu/ec-p/data/stockwatson/hmda_sw - JOURNALS: N=180, Cross-sectional data on 180 economics journals for the year 2000.
use http://fmwww.bc.edu/ec-p/data/stockwatson/journals - OJ: N=642, Time-series data on frozen and finished Florida orange juice prices, 1948-2001.
use http://fmwww.bc.edu/ec-p/data/stockwatson/oj - MACRODAT: N=168, Time-series macroeconomic data.
use http://fmwww.bc.edu/ec-p/data/stockwatson/macrodat - MCAS: N=220, Cross-sectional data, district-wide averages for Mass. public elementary school districts in 1998.
use http://fmwww.bc.edu/ec-p/data/stockwatson/mcas
STAR_SW(http://fmwww.bc.edu/ec-p/data/stockwatson/STAR_SW.des): N=11598, Subset of the variables in WEBSTAR.
use http://fmwww.bc.edu/ec-p/data/stockwwatson/star_sw - WEBSTAR: N=11598, Panel data on test scores, treatment groups, and student and teacher characteristics for four years (1985-86 to 1988-89).
use http://fmwww.bc.edu/ec-p/data/stockwatson/webstar
数据集:Introduction to Econometrics by Stock&Watson的更多相关文章
- (转) Using the latest advancements in AI to predict stock market movements
Using the latest advancements in AI to predict stock market movements 2019-01-13 21:31:18 This blog ...
- An Introduction to Stock Market Data Analysis with R (Part 1)
Around September of 2016 I wrote two articles on using Python for accessing, visualizing, and evalua ...
- mongoDB index introduction
索引为mongoDB的查询提供了有效的解决方案,如果没有索引,mongodb必须的扫描文档集中所有记录来match查询条件的记录.然而这些扫描是没有必要,而且每一次操作mongod进程会处理大量的数据 ...
- 【转】[特征选择] An Introduction to Feature Selection 翻译
中文原文链接:http://www.cnblogs.com/AHappyCat/p/5318042.html 英文原文链接: An Introduction to Feature Selection ...
- 阅读笔记Multi-task Learning for Stock Selection [NIPS1996]
Multi-task Learning for Stock Selection Joumana Ghosn and Yoshua Bengio 摘要 用人工神经网络预测未来回报以便于做出对应的金融决 ...
- 人工智能范畴及深度学习主流框架,IBM Watson认知计算领域IntelligentBehavior介绍
人工智能范畴及深度学习主流框架,IBM Watson认知计算领域IntelligentBehavior介绍 工业机器人,家用机器人这些只是人工智能的一个细分应用而已.图像识别,语音识别,推荐算法,NL ...
- Introduction to Machine Learning
Chapter 1 Introduction 1.1 What Is Machine Learning? To solve a problem on a computer, we need an al ...
- Introduction to Financial Management
Recently,i am learning some useful things about financial management by reading <Essentials of Co ...
- Samza文档翻译 : Comparison Introduction
http://samza.incubator.apache.org/learn/documentation/0.7.0/comparisons/introduction.html 这里有一些使得Sam ...
随机推荐
- 4. Linux管理命令
df.du:磁盘.空间相关的命令 df -h 以直观的方式显示磁盘分区使用状况 df test 查询test属于哪个分区 du du -h 以直观方式显示文件夹目录的使用状况 du -s 只显示当 ...
- Django:(03)请求和响应
一.HttpRequest 客户端传参的几种方式 传递方式 示例 后端获取方式 数据类型 url路径(path) /news/1/2 正则匹配 str 查询字符串 /news2?category=1& ...
- 李宏毅 Gradient Descent Demo 代码讲解
何为梯度下降,直白点就是,链式求导法则,不断更新变量值. 这里讲解的代码为李宏毅老师机器学习课程中 class 4 回归展示 中的代码demo Loss函数 python代码如下 import n ...
- Python处理字符串和列表元组的小技巧
变量值互换 a = 1 b = 100 # 变量值互换 a, b = b, a print('a:', a) print('b:', b) 输出结果: a: 100 b: 1 多个变量赋值 a, b, ...
- python 滚动字幕
写在前面:最近学python,爬虫方面感兴趣,顺便还可以了解下人工智能吧. 下面是两种方式做滚动字幕,直接贴代码了: 1.第一种: import time advText = input(" ...
- [转帖]英特尔首款采用10nm技术的混合CPU“Lakefield”即将发布
英特尔首款采用10nm技术的混合CPU“Lakefield”即将发布 intel 也出soc了 里面的东西 跟 安卓和 apple的a系列很像. https://baijiahao.baidu.com ...
- Win7/Win2008下IIS配置Asp站点启用父路径的设置方法
iis日志错误如下: 修改路径文件权限问题依旧. 解决方式:
- Android Application的目录结构
目录结构: 1,java目录:保存java或kotlin源文件 2,res目录:保存Android项目的各种资源文件.比如layout子目录存放界面布局文件,values子目录存放各种XML格式的资源 ...
- PC端判断屏幕宽度到达手机宽度的时候,直接跳转手机页面
<script> // //判断屏幕宽度到达手机宽度的时候,直接跳转手机页面 // window.addEventListener("resize", function ...
- java 序列化和反序列化的底层实现原理
出处:序列化和反序列化的底层实现原理是什么? 一.基本概念1.什么是序列化和反序列化 (1)Java序列化是指把Java对象转换为字节序列的过程,而Java反序列化是指把字节序列恢复为Java对象的过 ...