House.Points <- readOGR("Camden_house_sales")
时间: 2024-03-07 13:49:45 浏览: 96
worklife-camden-display:攀登工作生活社交平台– Camden
这段代码无法运行,因为readOGR函数需要指定文件格式和文件路径。你需要在函数中加入文件格式和文件路径参数,例如:
```R
House.Points <- readOGR(dsn = "path/to/Camden_house_sales.shp", layer = "Camden_house_sales")
```
其中,dsn参数指定文件路径,layer参数指定数据图层名称。这段代码的作用是读取Camden_house_sales.shp文件中的数据,并将其存储在House.Points对象中。 House.Points对象将包含该文件中的点状空间数据和属性数据。
阅读全文