The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
Read GraphPad Prism .pzfx
files into R. It tries to
understand different .pzfx
table formats, e.g. replicates
as subcolumns, or mean-sd-n as subcolumns etc and adds proper suffix to
column names of the parsed output.
# Install from CRAN
install.packages("pzfx")
# Install development version from GitHub
devtools::install_github("Yue-Jiang/pzfx")
To list tables in a .pzfx
file
library(pzfx)
pzfx_tables("/path/to/my/pzfx/file")
To read a specific table from a .pzfx
file
df <- read_pzfx("/path/to/my/pzfx/file", 1) # read first table
df <- read_pzfx("/path/to/my/pzfx/file", "Table Name") # read table by name
To write a data frame or matrix to a .pzfx
file
write_pzfx(df, "/path/to/my/pzfx/file")
To write a list of data frames or matrices to a .pzfx
file
write_pzfx(list("Table Name 1" = df1, "Table Name 2" = df2), "/path/to/my/pzfx/file")
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.