01
趋势分析
折线为年度均值
2006
5.744
2009
3.896
2011
4.165
2014
4.506
2017
4.550
2019
5.293
2022
6.366
02
样例数据
样例数据(前 10 行)
支持复制到 Excel
| 年份 | 国家/地区 | 新企业密度(每千名15-64岁人口新注册数)(比例) |
|---|---|---|
| 2006 | 阿尔巴尼亚 | 0.725 |
| 2006 | 阿拉伯世界 | 0.429 |
| 2006 | 阿拉伯联合酋长国 | 1.925 |
| 2006 | 阿根廷 | 0.239 |
| 2006 | 亚美尼亚 | 1.213 |
| 2006 | 安提瓜和巴布达 | 5.397 |
| 2006 | 澳大利亚 | 9.703 |
| 2006 | 奥地利 | 0.556 |
| 2006 | 比利时 | 3.023 |
| 2006 | 贝宁 | 0.03 |
New business density (new registrations per 1,000 people ages 15-64)。覆盖 172 个国家、17 年连续面板,适用于面板回归、政策评估与综合评价研究。
03
指标详情
指标解释
指标定义New business density (new registrations per 1,000 people ages 15-64)
数据类型国家级面板数据,覆盖172个国家。
时间跨度2006-2022年,共17年连续面板数据。
应用场景
- 作为被解释变量或核心解释变量进行面板回归分析
- 结合其他指标做相关性与多元回归研究
- 分析时间趋势与区域差异
- 政策评估(DID、PSM-DID 等准自然实验)
- 构建综合评价指标体系(熵值法等)
04
技术文档
数据说明书(Data Dictionary)
数据来源
数据整理自世界银行。经人工校验与交叉比对,确保数据准确性。
部分缺失值已通过线性插值补齐,原始数据与插值数据均可分别下载。
| 变量名 | 中文名称 | 类型 | 说明 |
|---|---|---|---|
| year | 年份 | int | 2006-2022 |
| region | 国家/地区 | string | 国家/地区名称 |
| country-34a40ff851e2138384868-xinqiyemidumeiqianming1564suirenkouxinzhuceshu-15ecd8 | 新企业密度(每千名15-64岁人口新注册数) | float | New business density (new registrations per 1,000 people ages 15-64) |
引用格式(Citation)
[1] 马克集数. 新企业密度(每千名15-64岁人口新注册数)面板数据(2006-2022)[EB/OL]. https://s.macrodatas.cn/article/indicator/country-34a40ff851e2138384868-xinqiyemidumeiqianming1564suirenkouxinzhuceshu-15ecd8, 2026-04-14.
可直接复制上方引用格式至论文参考文献
Stata 读取代码
下载数据后,可使用以下 Stata 代码快速读取并设定面板结构:
* 读取数据
use "country_xinqiyemidumeiqianmi_2006_2022.dta", clear
* 查看变量与前几行
describe
list in 1/10
* 编码国家变量(如尚未编码)
encode region, gen(country_id)
* 设定面板数据结构
xtset country_id year
* 描述性统计
summarize country_xinqiyemidumeiqianmi, detail
* 简单面板回归示例
xtreg country_xinqiyemidumeiqianmi x1 x2, fe
estimates store fe_model
如下载的是 Excel 格式,请先在 Stata 中使用 import excel "country-34a40ff851e2138384868-xinqiyemidumeiqianming1564suirenkouxinzhuceshu-15ecd8_2006_2022.xlsx", firstrow clear 导入。
05
相关指标推荐