readtext.ij: File management

Description Usage Arguments Value Author(s) See Also Examples

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

1

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

run.ij, resmerge.ij

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#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))

LeafArea documentation built on July 3, 2019, 5:04 p.m.