Description Usage Arguments Details Value Examples
View source: R/ParseNetlogoData.R
In Pheno-Evo, xydr is a property of a cell that is a list of the x-coordinate, the y-coordinate, and the degrade rate. These are reported together in order to enable spatial analysis of degrade rate values, which would not otherwise be possible because coordinate data would be separated from degrade rate data. [extractXYdr()] takes all the xydr values reported in one entry (one timepoint of one experiment) of a Pheno-Evo data table and separates them out into a new dataframe with appropriately labeled columns.
1 | extractXYdr(charstring)
|
charstring |
The full character string from one entry in the xydir column of a NetLogo data table, including brackets and quotation marks. |
In general, the normal Pheno-Evo user should not have to use this function. It is called by several other functions used for analyzing Pheno-Evo output data, such as [degraderate.variogram()].
A dataframe with three columns: xcor, ycor, and degrade.rate. Each row represents the data from one cell.
1 2 3 | data(PE.ends)
PE.ends$xydr[4]
extractXYdr(PE.ends$xydr[4])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.