I'm novice with R.
I have a text file with precalculated sequence of elliptic Fourier coefficients (harmonics). The first column keeps the objects name, other - sets of harmonics divides by spaces: A0 B0 C0 D0 ... An Bn Cn Dn. It is the part of a file:
Lceph-sp1-1 0 0,27 -1 0 -0,29 0,2 0,1 -0,05 0,15 0,1 0,07 0,02
Lceph-sp1-2 0 -0,36 1 0 -0,27 0,25 0,12 -0,09 -0,26 -0,03 -0,17 0
Lceph-sp1-3 0 0,25 -1 0 -0,29 0,19 0,09 -0,05 0,15 0,1 0,06 0,01
Lceph-sp1-4 0 -0,37 1 0 -0,27 0,26 0,09 -0,07 -0,19 -0,07 -0,12 -0,02
I load file into R with the read.delim2 command:
ef <- read.delim2( "filename", header=FALSE, sep="")
Then I want to analyze obtained data using functions from Momocs package, like calibrate_harmonicpower, plot, PCA and other.
To do so it is necessary to transform loaded data into Coe(?) or other object. (I don't exactly know to which one.)
How to prepare loaded data for analysis in Momocs R package?