You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We talking about this but opening an issue here for memory and in case someone wants to chime in:
library(pavo)
#> Welcome to pavo 2! Take a look at the latest features (and update your bibliography) in our recent publication: Maia R., Gruson H., Endler J. A., White T. E. (2019) pavo 2: new tools for the spectral and spatial analysis of colour in R. Methods in Ecology and Evolution, 10, 1097-1107.
data(flowers)
vis.flowers<- vismodel(flowers, visual="apis")
cd.flowers<- coldist(vis.flowers, n= c(1,1,1))
#> Quantum catch are relative, distances may not be meaningful#> Calculating noise-weighted Euclidean distances# Current methodpavo_xyz<- jnd2xyz(cd.flowers)
plot(pavo_xyz, asp=1)
# Base methodbase_xyz<- cmdscale(coldist2mat(cd.flowers)[[1]], k=2)
plot(base_xyz[, 1], base_xyz[, 2], asp=1)
# Base method only rotates the output compared to the current methodbase_xyz<-base_xyz*-1
We talking about this but opening an issue here for memory and in case someone wants to chime in:
Created on 2021-04-27 by the reprex package (v2.0.0.9000)
The text was updated successfully, but these errors were encountered: