--- title: "Pareto" output: html_vignette vignette: > %\VignetteIndexEntry{Pareto} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( # eval = FALSE, collapse = TRUE, comment = "#>", fig.width=8, fig.height=5, fig.align = "center" ) ``` ```{r setup} library(Morphoscape) library(rPref) data(warps) data(turtles) ``` The following provides a guide on the workflow of performing adaptive landscape analysis using Pareto optimality. If you haven't already, please read the accompanying "Morphoscape" vignette for an introduction to adaptive landscapes more generally as well as some core functions of the package! # Considering Optimality ## Functional Optimality Morphospace was originally built to produce functional adaptive landscapes, marrying phenotypic data (morphospace) and performance data. This illustrates one way of thinking about optimality as it concerns adaptive landscapes: which traits, and in what combinations, are particular morphologies optimized for? ```{r} data("turtles") data("warps") str(turtles) str(warps) # Make performance surfaces warps_fnc <- as_fnc_df(warps, func.names = c("hydro", "curve", "mech", "fea")) kr_surf <- krige_surf(warps_fnc, hull = NULL, new_data = turtles) # Make functional adaptive landscapes weights <- generate_weights(n = 20, data = kr_surf) all_landscapes <- calc_all_lscps(kr_surf, grid_weights = weights) wprime_by_Group <- calcWprimeBy(all_landscapes, by = ~Ecology,method = "quantile") ``` ## Pareto Optimality An alternative way of thinking about optimality comes from Pareto optimality. A structure might have to compromise between different functions due to inherent trade-offs. See the differences in the performance surfaces for two traits from the turtle dataset. ```{r} # Make performance surfaces for individual traits plot_ggsurf(kr_surf,'hydro') plot_ggsurf(kr_surf,'curve') ``` We see a trade-off exists between curvature and hydrodynamic performance, where you cannot simultaeneously maximize both traits. While trade-offs inevitably exist, some morphologies handle them better than others. For example, you might not be able to maximize two trait ssimultaeneously, but you can still maximize one trait *for a given value* of the second trait; morphologies that meet this criterion are referred to as 'Pareto optimal'. If we plot hydrodynamic performance vs curvature for each point in morphospace, the 'Pareto optimal' points fall along the top left edge of the plot. ```{r} # Compute Pareto landscape for two traits KrSurfParOpt <- calc_lscp_Pareto(kr_surf,'hydro','curve') # Plot trade-offs between the traits plot_ggtrade(KrSurfParOpt) ``` If we project these points back in morphospace now, the Pareto optimal points should form the 'Pareto front'; the optimal pathway through morphospace from one trait optimum to another. Here, the trade-off between the two traits has the least impact on overall performance. ```{r} # Plot the Pareto landscape plot_ggPareto(KrSurfParOpt) ``` Pareto optimality is generally defined in terms of trade-offs between traits, hence why the example above used performance surfaces as the input. However, we can extend the same methods to a more abstract case, and examine trade-offs between performance on different adaptive landscapes, as shown below. ```{r} ######### # Plot individual group landscapes plot_ggsurf(wprime_by_Group,'M') plot_ggsurf(wprime_by_Group,'S') # Calculate Pareto landscape based on functional landscapes Lscp_Pareto_MS <- calc_lscp_Pareto(wprime_by_Group,'M','S') summary(Lscp_Pareto_MS) # Plot trade-offs between landscape heights plot_ggtrade(wprime_by_Group,'M','S') # Plot Pareto landscape between landscape heights plot_ggPareto(wprime_by_Group,'M','S') ``` We can even do all of that with just one function! ```{r} plot_lscp_Pareto(wprime_by_Group,'M','S') ``` It should be noted that there may be times where the shape of the performance surfaces or adaptive landscapes are such that a smooth transition between optima is not possible. The example below demonstrates this for two other adaptive landscapes from the turtle dataset: marine and terrestrial. ```{r} plot_lscp_Pareto(wprime_by_Group,'M','T') ``` ## References Dickson, B. V., & Pierce, S. E. (2019). Functional performance of turtle humerus shape across an ecological adaptive landscape. Evolution, 73(6), 1265-1277. Deakin, W.J., Anderson, P.S., den Boer, W., Smith, T.J., Hill, J.J., Rücklin, M., Donoghue, P.C. & Rayfield, E.J. (2022). Increasing morphological disparity and decreasing optimality for jaw speed and strength during the radiation of jawed vertebrates. Science Advances 8, eabl3644. Roocks, P. (2016). Computing Pareto frontiers and database preferences with the rPref package.