readtext.ij {LeafArea} | R Documentation |
File management
Description
Read multiple tab-delimited text files with a leaf area and perimeter value (one text file for each original JPEG image file) generated by ImageJ.
Usage
readtext.ij(path)
Arguments
path |
Path to the target directory |
Value
A list of data frame of leaf area for each image
area |
Leaf area of the image (cm2) |
Author(s)
Masatoshi Katabuchi mattocci27@gmail.com
See Also
Examples
#prepare example files
data(leafdata)
tf <- paste(tempdir(), "/", sep = "")
for (i in 1:7){
write.table(leafdata[[i]],paste(tf,names(leafdata)[i],sep=""),sep="\t")
}
#list of files
list.files(tf)
readtext.ij(tf)
unlink(list.files(tf))
[Package LeafArea version 0.1.8 Index]