DataIO-package: DataIO

Description Details Author(s) References See Also Examples

Description

Functions for writing and reading data are being provided in the DataIO package, which specializes on [n,k] matrices and data frames. The file format with the extension *.data enables the user to import data to Microsoft Excel and Mathworks Matlab. Furthermore it allows for inspecting and editing data with any text editor. To prevent failure which for example might occur during unintentional alteration of the *.data file in Excel or an editor, the files are verified by a checksum for each column of data.

See the vignettes for more examples of how to use the functions for writing and reading *.data files.

Details

*.data: files with this extension are used to store [n,k] matrices of numbers and strings.
Package: DataIO
Type: Package
Version: 1.0
Date: 2015-03-03
License: CC BY-NC-SA 4.0

Author(s)

Michael Thrun, Tim Schneider, Alfred Ultsch

References

www.uni-marburg.de/fb12/datenbionik mthrun@mathematik.uni-marburg.de

See Also

WriteData

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
	#Writing a *.data file
	#mat = matrix( 
    #  c(1,0,0,0,1,0,0,0,1), 
   #   nrow=3, 
    #  ncol=3) 

	#WriteData(FileName = "test.data",Data = mat)
		
	#Read again
	#ReadData("test.data")

aultsch/DataIO documentation built on May 14, 2019, 10:34 p.m.