怎么使用r语言自带的USPersonaIExpenditure数据
时间: 2024-05-11 09:19:02 浏览: 71
可以按照以下步骤使用R语言自带的USPersonalExpenditure数据集:
1. 载入数据集
```
data(USPersonalExpenditure)
```
2. 查看数据集信息
```
str(USPersonalExpenditure)
```
该数据集包含了4个变量(Expenditure、Income、Population、Year),且共有12行数据。
3. 查看数据集内容
```
USPersonalExpenditure
```
输出结果如下:
```
Expenditure Income Population Year
Food and tobacco 73.3 406.0 116.0 1940
Household operation 10.5 406.0 116.0 1940
Medical and health 3.0 406.0 116.0 1940
Personal care 1.2 406.0 116.0 1940
Private education 0.5 406.0 116.0 1940
Transportation 11.6 406.0 116.0 1940
```
该数据集包含了1940年到1960年期间,美国人民在不同领域的支出数据,其中“Expenditure”为支出金额,“Income”为收入金额,“Population”为人口数量,“Year”为年份。
希望这个回答对你有帮助!
阅读全文