PC-Axis with R: pxR
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
PC-Axis is a software family consisting of a number of programs for the Windows and Internet environment used to present statistical information. It is used by national and international institutions to publish statistical data. Programs in the PC-Axis family use a particular data file format (see the full PX-Axis data format description). Now the pxR package is available at CRAN: it provides a set of functions for reading and writing PC-Axis files. This will facilitate the analysis of statistical data to the R community.
The function read.px
reads a PC-Axis file from a given location and returns an object of the class px
containing all the data and metadata in the PC-Axis file. The single most important piece of infomation with a px
object is the data matrix, which can be extracted with function as.data.frame
.
For instance,
my.px.object <- read.px("/path/to/pc-axis/file") my.px.data <- as.data.frame(my.px.object)
will create the data.frame my.px.data
with the data in the corresponding PC-Axis file.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.