且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

我如何读取dBase文件的一部分

更新时间:2023-01-11 16:16:09

我认为 read.dbf(...)包 foreign 中的code>函数用于读取shapefile的 *。dbf 部分,其中在文件的一部分中进行大小写读取确实没有任何意义。您似乎想做些不同的事情。

I think the read.dbf(...) function in package foreign was intended for reading the *.dbf part of a shapefile, in which case reading in part of the file really doesn't make sense. You seem to want to do something different.

使用 RODBC 可能 的工作方式,具体取决于系统的配置方式。如果您正在运行Windows,并且已经安装了dBASE ODBC驱动程序,那么这可能会为您工作(注意:安装MSOffice时,它将设置一个名为 dBase Files的用户dsn,可以从 RODBC 。因此,如果您已安装MSOffice,则应该可以使用...)。

Using RODBC might work, depending on how your system is configured. If you're running Windows, and if you have the dBASE ODBC drivers installed, this will probably work for you (note: When you install MSOffice, it sets up a user dsn called "dBase Files", which should be accessible from RODBC. So if you have MSOffice installed, this should work...).

重要注意 :仅在运行32位版本的R时,此方法才有效。这是因为没有64位dBASE ODBC驱动程序。通常,当您下载64位R时,会同时获得32位和64位版本,因此只需在它们之间进行切换即可。

Important Note: This will only work if you are running a 32-bit version of R. This is because there are no 64-bit dBASE ODBC drivers. Generally, when you download 64-bit R you get both 32- and 64-bit versions, so it's just a matter of switching between them.

library(RODBC)
# setwd("< directory with your files >")
conn <- odbcConnect(dsn="dBASE Files")
df   <- sqlFetch(conn,"myTable",max=10)   # grab first ten rows
head(df)
#       LENGTH COASTLN010
# 1 0.02482170          1
# 2 0.01832134          2
# 3 0.03117752          3
# 4 0.04269755          4
# 5 0.02696307          5
# 6 0.05047828          6

sqlQuery(conn,"select * from myTable where LENGTH<0.008")
#       LENGTH COASTLN010
# 1 0.00625200        186
# 2 0.00634897        379
# 3 0.00733319       1583
# 4 0.00369786       1617
# 5 0.00722233       1618
# 6 0.00524176       1636

上面的示例只是为了让您了解如何使用 RODBC 。在此示例中,我在包含所有文件的目录中有一个文件 myTable.dbf ,此dbf有两列 LENGTH COASTLN010 (此文件实际上是海岸线shapefile的一部分,但这无关紧要...)。

The example above is just meant to give you an idea of how to use RODBC. In this example, I have a file, myTable.dbf in the "directory with all your files", and this dbf has two columns, LENGTH and COASTLN010 (this file actually is part of a coastline shapefile, but that is irrelevant...).

如果这不起作用,请尝试:

If this doesn't work try:

 conn <- odbcConnectDbase("myTable.dbf")