class: middle background-image: url("background.png") background-position: right background-size: auto # .orange[Explicitly Spatial Analyses] ### .fancy[Genes in Space!] --- class: middle, center ![](https://live.staticflickr.com/65535/51198451539_f09703e3d8_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206228661_831c4a9241_c_d.jpg) --- class: inverse, middle background-image: url("background.png") background-position: right background-size: auto # .blue[Spatial <br> Autocorrelation] ## .fancy[Self-similarity in space] --- class: middle, center ![](https://live.staticflickr.com/65535/51206415778_cbcfde8417_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206209856_ff6cc1e21b_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51205518387_9a282276e8_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206228671_cde5f8ff6a_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206434673_a227c2dd48_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206209876_fac5d21f18_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51207277255_f6c7737ecd_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206994379_1117dc4e90_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51205499692_8930c96040_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51207277285_e4bb978743_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51207277345_391091e168_c_d.jpg) --- # An Example from *Cornus* .pull-left[ ```r library( gstudio ) data(cornus) summary( cornus ) ``` ``` ## Population SampleID X.Coordinate Y.Coordinate Cf.G8 ## Min. :2.000 Min. :203.0 Min. : 346 Min. : 254 155:165 : 18 ## 1st Qu.:3.000 1st Qu.:315.5 1st Qu.:1482 1st Qu.:2231 165:165 : 15 ## Median :4.000 Median :428.0 Median :1656 Median :2928 167:167 : 13 ## Mean :3.809 Mean :428.0 Mean :1747 Mean :2588 155:159 : 12 ## 3rd Qu.:5.000 3rd Qu.:540.5 3rd Qu.:1914 3rd Qu.:3082 157:157 : 12 ## Max. :6.000 Max. :653.0 Max. :3778 Max. :6148 (Other) :372 ## NA's : 9 ## Cf.H18 Cf.N5 Cf.N10 Cf.O5 ## 105:119 : 23 170:170 :251 189:193 : 25 182:196 : 43 ## 105:105 : 18 162:170 : 34 189:201 : 20 182:182 : 41 ## 107:119 : 16 172:172 : 34 189:197 : 18 178:196 : 28 ## 121:121 : 16 164:170 : 27 189:189 : 17 178:182 : 25 ## 105:113 : 15 166:170 : 19 193:193 : 17 180:180 : 24 ## (Other) :362 (Other) : 50 (Other) :341 (Other) :282 ## NA's : 1 NA's : 36 NA's : 13 NA's : 8 ``` ] .pull-right[ <img src="slides_files/figure-html/unnamed-chunk-2-1.png" width="504" style="display: block; margin: auto;" /> ] --- # Spatial Autocorrelation ![](https://live.staticflickr.com/65535/51207391795_a656b2839e_c_d.jpg) --- # Estimating Spatial Bins .pull-left[ To construct a spatial autocorrelation, we need to find groups of individuals who are separated by a `lag` or `bin` (e.g., that can all be grouped into a *distance class*). - Ecological - Euclidean - Other ] .pull-right[ ```r coords <- strata_coordinates(cornus, stratum = "SampleID", longitude = "X.Coordinate", latitude="Y.Coordinate") P <- strata_distance(coords, mode="Euclidean") G <- genetic_distance(cornus, mode="AMOVA") ``` ] --- ```r df <- data.frame( Physical=P[lower.tri(P)], Genetic=G[lower.tri(G)]) ggplot( df, aes(Physical,Genetic)) + geom_point() + stat_smooth(method="gam") ``` <img src="slides_files/figure-html/unnamed-chunk-4-1.png" width="504" style="display: block; margin: auto;" /> --- # Overall Correlation - The Mantel ```r cor.test(df$Physical, df$Genetic) ``` ``` ## ## Pearson's product-moment correlation ## ## data: df$Physical and df$Genetic ## t = -0.015364, df = 101473, p-value = 0.9877 ## alternative hypothesis: true correlation is not equal to 0 ## 95 percent confidence interval: ## -0.006200982 0.006104525 ## sample estimates: ## cor ## -4.823045e-05 ``` --- ```r df %>% filter( Physical < 25 ) -> df1 ggplot( df[ df$Physical < 25,], aes(Physical,Genetic)) + geom_point() + stat_smooth(method="loess") + geom_jitter() ``` <img src="slides_files/figure-html/unnamed-chunk-6-1.png" width="504" style="display: block; margin: auto;" /> --- # Correlation At Bins - The Spatially Restriced Mantel ```r cor.test(df1$Physical, df1$Genetic) ``` ``` ## ## Pearson's product-moment correlation ## ## data: df1$Physical and df1$Genetic ## t = 5.4428, df = 874, p-value = 6.816e-08 ## alternative hypothesis: true correlation is not equal to 0 ## 95 percent confidence interval: ## 0.1162186 0.2443693 ## sample estimates: ## cor ## 0.1810624 ``` --- # Estimate the Correlgrams .pull-left[ Each entry in the correlogram is based upon the interclass correlation statistic: `\begin{equation} r^h = \frac{\sum_{i\ne j}^K x_{ij}^hc_{ij}^h}{\sum_{i=1}^Kx_{ii}^hc_{ii}^h} \end{equation}` ```r df <- genetic_autocorrelation(P,G,bins=seq(0,1000,by=100),perms=999) df$Significant <- df$P <= 0.05 ggplot( df, aes(x=To,y=R)) + geom_line() + geom_point( aes(color=Significant), size=4) + geom_abline(slope=0,intercept=0, linetype=2) + xlab("Physical Separation") + ylab("Genetic Correlation") ``` ] .pull-right[ <img src="slides_files/figure-html/autocorr-1.png" width="504" style="display: block; margin: auto;" /> ] --- class: middle, center ![](https://live.staticflickr.com/65535/51206415968_fd33982962_c_d.jpg) --- class: inverse, middle background-image: url("background.png") background-position: right background-size: auto # .red[Eigen Structure] ## .fancy[Please define an eigenvalue... I dare you.] --- class: middle, center ![](https://live.staticflickr.com/65535/51206994389_bdd3824fda_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51207296305_4f7428786d_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206415998_3527374bc2_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206210046_4cc91ca0ea_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206975949_e08e018ffe_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206975979_22ceef0be6_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206994494_bcd4fb98c3_c_d.jpg) --- ```r data( arapat ) mv_genos <- to_mv( arapat ) fit.pca <- princomp(mv_genos,cor = TRUE) names( fit.pca ) ``` ``` ## [1] "sdev" "loadings" "center" "scale" "n.obs" "scores" "call" ``` --- ```r summary( fit.pca ) ``` ``` ## Importance of components: ## Comp.1 Comp.2 Comp.3 Comp.4 Comp.5 ## Standard deviation 2.8113021 2.19949725 1.98692071 1.76188725 1.35153653 ## Proportion of Variance 0.1362659 0.08341014 0.06806645 0.05352149 0.03149398 ## Cumulative Proportion 0.1362659 0.21967599 0.28774244 0.34126393 0.37275792 ## Comp.6 Comp.7 Comp.8 Comp.9 Comp.10 ## Standard deviation 1.3052912 1.24832072 1.23585320 1.20816941 1.16573700 ## Proportion of Variance 0.0293756 0.02686732 0.02633333 0.02516678 0.02343005 ## Cumulative Proportion 0.4021335 0.42900084 0.45533417 0.48050095 0.50393100 ## Comp.11 Comp.12 Comp.13 Comp.14 Comp.15 ## Standard deviation 1.1479296 1.12805147 1.11077635 1.09681605 1.07210090 ## Proportion of Variance 0.0227197 0.02193966 0.02127283 0.02074147 0.01981725 ## Cumulative Proportion 0.5266507 0.54859035 0.56986318 0.59060466 0.61042190 ## Comp.16 Comp.17 Comp.18 Comp.19 Comp.20 ## Standard deviation 1.06907461 1.06258841 1.05051763 1.03671883 1.0197660 ## Proportion of Variance 0.01970553 0.01946714 0.01902737 0.01853079 0.0179297 ## Cumulative Proportion 0.63012743 0.64959457 0.66862194 0.68715273 0.7050824 ## Comp.21 Comp.22 Comp.23 Comp.24 Comp.25 ## Standard deviation 1.00291893 0.9913325 0.9779643 0.96869623 0.95675236 ## Proportion of Variance 0.01734218 0.0169438 0.0164899 0.01617883 0.01578233 ## Cumulative Proportion 0.72242461 0.7393684 0.7558583 0.77203714 0.78781947 ## Comp.26 Comp.27 Comp.28 Comp.29 Comp.30 ## Standard deviation 0.94329924 0.93880305 0.91823416 0.89529206 0.87049453 ## Proportion of Variance 0.01534161 0.01519571 0.01453714 0.01381979 0.01306484 ## Cumulative Proportion 0.80316108 0.81835679 0.83289393 0.84671372 0.85977856 ## Comp.31 Comp.32 Comp.33 Comp.34 Comp.35 ## Standard deviation 0.86688903 0.82678815 0.81041743 0.79600231 0.76921802 ## Proportion of Variance 0.01295684 0.01178584 0.01132373 0.01092448 0.01020166 ## Cumulative Proportion 0.87273539 0.88452123 0.89584496 0.90676944 0.91697110 ## Comp.36 Comp.37 Comp.38 Comp.39 ## Standard deviation 0.754445291 0.734096098 0.714354902 0.684415157 ## Proportion of Variance 0.009813581 0.009291329 0.008798326 0.008076278 ## Cumulative Proportion 0.926784684 0.936076013 0.944874340 0.952950617 ## Comp.40 Comp.41 Comp.42 Comp.43 ## Standard deviation 0.672830896 0.648816807 0.630068757 0.552207764 ## Proportion of Variance 0.007805197 0.007257987 0.006844597 0.005257473 ## Cumulative Proportion 0.960755814 0.968013801 0.974858398 0.980115871 ## Comp.44 Comp.45 Comp.46 Comp.47 ## Standard deviation 0.524838797 0.468169464 0.425473390 0.381044367 ## Proportion of Variance 0.004749237 0.003779011 0.003121166 0.002503359 ## Cumulative Proportion 0.984865108 0.988644119 0.991765285 0.994268644 ## Comp.48 Comp.49 Comp.50 Comp.51 ## Standard deviation 0.335281962 0.27425346 0.2233870727 0.1905055409 ## Proportion of Variance 0.001938172 0.00129681 0.0008603756 0.0006257304 ## Cumulative Proportion 0.996206816 0.99750363 0.9983640014 0.9989897318 ## Comp.52 Comp.53 Comp.54 Comp.55 ## Standard deviation 0.1489769289 0.1321112825 0.1058457221 7.033909e-02 ## Proportion of Variance 0.0003826573 0.0003009205 0.0001931606 8.530323e-05 ## Cumulative Proportion 0.9993723891 0.9996733097 0.9998664703 9.999518e-01 ## Comp.56 Comp.57 Comp.58 ## Standard deviation 5.288794e-02 6.748606e-08 5.000842e-08 ## Proportion of Variance 4.822645e-05 7.852359e-17 4.311796e-17 ## Cumulative Proportion 1.000000e+00 1.000000e+00 1.000000e+00 ``` --- ```r plot( fit.pca ) ``` <img src="slides_files/figure-html/unnamed-chunk-11-1.png" width="504" style="display: block; margin: auto;" /> --- # Visualization .pull-left[ ```r predict( fit.pca ) %>% data.frame() %>% mutate( Species = arapat$Species) -> pred.pca ggplot( pred.pca, aes(Comp.1,Comp.2,color=Species) ) + geom_point() + theme( legend.position = "none") ``` ] .pull-right[ <img src="slides_files/figure-html/unnamed-chunk-13-1.png" width="504" style="display: block; margin: auto;" /> ] --- # Principal Components Analysis on Frequencies Just like working on raw data, but coalescing all the individuals into single populations defined by allele frquency matrices. ```r freqs <- frequency_matrix(arapat) head( freqs ) ``` ``` ## Stratum AML-01 AML-02 AML-03 AML-04 AML-05 AML-06 AML-07 AML-08 AML-09 ## 1 101 0.00 0 0 0.0000000 0.0000000 0.00 0.00 0.50 0.00 ## 2 102 0.00 0 0 0.0000000 0.0000000 0.00 0.00 0.00 0.00 ## 3 12 0.05 0 0 0.0000000 0.0000000 0.05 0.35 0.50 0.00 ## 4 153 0.00 0 0 0.0000000 0.0000000 0.00 0.60 0.35 0.05 ## 5 156 0.00 0 0 0.6666667 0.3333333 0.00 0.00 0.00 0.00 ## 6 157 0.00 0 0 0.7000000 0.1000000 0.20 0.00 0.00 0.00 ## AML-10 AML-11 AML-12 AML-13 ATPS-01 ATPS-02 ATPS-03 ATPS-04 ATPS-05 ## 1 0.00 0.5 0 0 0 0.6666667 0.0000000 0.1111111 0.00 ## 2 0.00 1.0 0 0 0 0.9375000 0.0000000 0.0000000 0.00 ## 3 0.05 0.0 0 0 0 0.0000000 0.0000000 0.0000000 1.00 ## 4 0.00 0.0 0 0 0 0.0000000 0.0000000 0.0000000 1.00 ## 5 0.00 0.0 0 0 0 0.0000000 0.9166667 0.0000000 0.00 ## 6 0.00 0.0 0 0 0 0.0000000 0.7000000 0.0000000 0.15 ## ATPS-06 ATPS-07 ATPS-08 ATPS-09 ATPS-10 EF-01 EF-02 EN-01 ## 1 0.00000000 0.00 0 0.2222222 0 0.7142857 0.2857143 0.6111111 ## 2 0.00000000 0.00 0 0.0625000 0 0.6250000 0.3750000 0.2142857 ## 3 0.00000000 0.00 0 0.0000000 0 0.4500000 0.5500000 1.0000000 ## 4 0.00000000 0.00 0 0.0000000 0 0.0000000 1.0000000 1.0000000 ## 5 0.08333333 0.00 0 0.0000000 0 1.0000000 0.0000000 0.1666667 ## 6 0.10000000 0.05 0 0.0000000 0 1.0000000 0.0000000 0.4500000 ## EN-02 EN-03 EN-04 EN-05 LTRS-01 LTRS-02 MP20-01 MP20-02 ## 1 0.0000000 0.3888889 0 0 0.2777778 0.7222222 0 0.08333333 ## 2 0.0000000 0.7857143 0 0 0.3125000 0.6875000 0 0.06250000 ## 3 0.0000000 0.0000000 0 0 0.8000000 0.2000000 0 0.00000000 ## 4 0.0000000 0.0000000 0 0 0.1500000 0.8500000 0 0.00000000 ## 5 0.8333333 0.0000000 0 0 0.0000000 1.0000000 0 0.00000000 ## 6 0.5500000 0.0000000 0 0 0.0000000 1.0000000 0 0.00000000 ## MP20-03 MP20-04 MP20-05 MP20-06 MP20-07 MP20-08 MP20-09 MP20-10 MP20-11 ## 1 0.000 0.00 0.0000 0.00 0.00 0.00 0.000 0 0.08333333 ## 2 0.125 0.00 0.0625 0.00 0.00 0.00 0.125 0 0.12500000 ## 3 0.000 0.05 0.5000 0.10 0.25 0.10 0.000 0 0.00000000 ## 4 0.000 0.00 0.7500 0.05 0.15 0.05 0.000 0 0.00000000 ## 5 0.000 0.00 0.0000 0.00 0.00 0.00 0.000 0 0.00000000 ## 6 0.000 0.00 0.0000 0.00 0.00 0.00 0.000 0 0.20000000 ## MP20-12 MP20-13 MP20-14 MP20-15 MP20-16 MP20-17 MP20-18 MP20-19 ## 1 0.500 0.250 0.08333333 0 0.00000000 0.0000000 0.0000000 0 ## 2 0.375 0.125 0.00000000 0 0.00000000 0.0000000 0.0000000 0 ## 3 0.000 0.000 0.00000000 0 0.00000000 0.0000000 0.0000000 0 ## 4 0.000 0.000 0.00000000 0 0.00000000 0.0000000 0.0000000 0 ## 5 0.000 0.000 0.00000000 0 0.08333333 0.3333333 0.5833333 0 ## 6 0.000 0.000 0.00000000 0 0.00000000 0.3500000 0.4500000 0 ## WNT-01 WNT-02 WNT-03 WNT-04 WNT-05 ZMP-01 ZMP-02 ## 1 1.0000000 0.0000000 0.00 0 0 1.0 0.0 ## 2 1.0000000 0.0000000 0.00 0 0 0.0 0.0 ## 3 0.3000000 0.0000000 0.70 0 0 0.2 0.8 ## 4 0.4000000 0.0000000 0.60 0 0 0.1 0.9 ## 5 0.1666667 0.8333333 0.00 0 0 0.0 1.0 ## 6 0.0500000 0.8000000 0.15 0 0 0.0 1.0 ``` --- # Principal Components Analysis on Frequencies Just like working on raw data, but coalescing all the individuals into single populations defined by allele frquency matrices. ```r F <- as.matrix( freqs[,2:59]) rownames( F ) <- freqs$Stratum fit.pca_freq <- prcomp( F, center = TRUE ) ``` --- ```r summary( fit.pca_freq ) ``` ``` ## Importance of components: ## PC1 PC2 PC3 PC4 PC5 PC6 PC7 ## Standard deviation 0.9961 0.7719 0.5274 0.39514 0.2898 0.25543 0.24065 ## Proportion of Variance 0.4135 0.2483 0.1159 0.06508 0.0350 0.02719 0.02414 ## Cumulative Proportion 0.4135 0.6618 0.7777 0.84282 0.8778 0.90501 0.92914 ## PC8 PC9 PC10 PC11 PC12 PC13 PC14 ## Standard deviation 0.19880 0.15834 0.14287 0.13783 0.12481 0.10191 0.09150 ## Proportion of Variance 0.01647 0.01045 0.00851 0.00792 0.00649 0.00433 0.00349 ## Cumulative Proportion 0.94562 0.95606 0.96457 0.97249 0.97898 0.98331 0.98680 ## PC15 PC16 PC17 PC18 PC19 PC20 PC21 ## Standard deviation 0.08413 0.07641 0.07166 0.05890 0.05077 0.03845 0.03744 ## Proportion of Variance 0.00295 0.00243 0.00214 0.00145 0.00107 0.00062 0.00058 ## Cumulative Proportion 0.98975 0.99218 0.99432 0.99577 0.99685 0.99746 0.99805 ## PC22 PC23 PC24 PC25 PC26 PC27 PC28 ## Standard deviation 0.03216 0.02974 0.02461 0.02256 0.01880 0.01789 0.01682 ## Proportion of Variance 0.00043 0.00037 0.00025 0.00021 0.00015 0.00013 0.00012 ## Cumulative Proportion 0.99848 0.99884 0.99910 0.99931 0.99946 0.99959 0.99971 ## PC29 PC30 PC31 PC32 PC33 PC34 ## Standard deviation 0.01469 0.01358 0.01061 0.007838 0.006974 0.005382 ## Proportion of Variance 0.00009 0.00008 0.00005 0.000030 0.000020 0.000010 ## Cumulative Proportion 0.99980 0.99987 0.99992 0.999950 0.999970 0.999980 ## PC35 PC36 PC37 PC38 PC39 ## Standard deviation 0.004322 0.003937 0.003217 0.002008 7.634e-17 ## Proportion of Variance 0.000010 0.000010 0.000000 0.000000 0.000e+00 ## Cumulative Proportion 0.999990 0.999990 1.000000 1.000000 1.000e+00 ``` --- # Principal Components Analysis on Frequencies .pull-left[ Just like working on raw data, but coalescing all the individuals into single populations defined by allele frquency matrices. ```r predict( fit.pca_freq ) %>% data.frame() %>% mutate( Population = freqs$Stratum ) %>% ggplot( aes(PC1,PC2) ) + geom_text( aes(label=Population)) ``` ] .pull-right[ <img src="slides_files/figure-html/unnamed-chunk-18-1.png" width="504" style="display: block; margin: auto;" /> ] --- # More Detailed Visulizations .pull-left[ ```r library( factoextra ) fviz_pca_biplot( fit.pca_freq ) ``` ] .pull-right[ <img src="slides_files/figure-html/unnamed-chunk-20-1.png" width="504" style="display: block; margin: auto;" /> ] --- # Principal Coordinate Analysis Like PCA but using genetic distance measures instead of raw data. ```r D.Euc <- genetic_distance(arapat, mode="Euclidean") dim(D.Euc) ``` ``` ## [1] 39 39 ``` ```r fit.gendist <- prcomp( D.Euc, center = TRUE) ``` --- ```r summary( fit.gendist ) ``` ``` ## Importance of components: ## PC1 PC2 PC3 PC4 PC5 PC6 PC7 ## Standard deviation 3.4963 2.3244 1.38995 0.76870 0.62286 0.5129 0.4473 ## Proportion of Variance 0.5622 0.2485 0.08884 0.02717 0.01784 0.0121 0.0092 ## Cumulative Proportion 0.5622 0.8106 0.89946 0.92664 0.94448 0.9566 0.9658 ## PC8 PC9 PC10 PC11 PC12 PC13 PC14 ## Standard deviation 0.39332 0.31379 0.26270 0.23524 0.20290 0.1976 0.18482 ## Proportion of Variance 0.00711 0.00453 0.00317 0.00254 0.00189 0.0018 0.00157 ## Cumulative Proportion 0.97289 0.97742 0.98059 0.98314 0.98503 0.9868 0.98839 ## PC15 PC16 PC17 PC18 PC19 PC20 PC21 ## Standard deviation 0.18292 0.16247 0.14794 0.14137 0.13605 0.12182 0.11651 ## Proportion of Variance 0.00154 0.00121 0.00101 0.00092 0.00085 0.00068 0.00062 ## Cumulative Proportion 0.98993 0.99115 0.99215 0.99307 0.99392 0.99461 0.99523 ## PC22 PC23 PC24 PC25 PC26 PC27 PC28 ## Standard deviation 0.11066 0.1039 0.10234 0.09489 0.08724 0.08436 0.07748 ## Proportion of Variance 0.00056 0.0005 0.00048 0.00041 0.00035 0.00033 0.00028 ## Cumulative Proportion 0.99579 0.9963 0.99677 0.99719 0.99754 0.99786 0.99814 ## PC29 PC30 PC31 PC32 PC33 PC34 PC35 ## Standard deviation 0.07707 0.07387 0.06873 0.06740 0.06523 0.06105 0.05838 ## Proportion of Variance 0.00027 0.00025 0.00022 0.00021 0.00020 0.00017 0.00016 ## Cumulative Proportion 0.99841 0.99866 0.99888 0.99909 0.99929 0.99946 0.99961 ## PC36 PC37 PC38 PC39 ## Standard deviation 0.05684 0.05523 0.04602 2.627e-16 ## Proportion of Variance 0.00015 0.00014 0.00010 0.000e+00 ## Cumulative Proportion 0.99976 0.99990 1.00000 1.000e+00 ``` --- <img src="slides_files/figure-html/unnamed-chunk-23-1.png" width="504" style="display: block; margin: auto;" /> --- class: inverse, middle background-image: url("background.png") background-position: right background-size: auto # .green[Admixture] ## .fancy[Simulating Clusters] --- class: middle, center ![](https://live.staticflickr.com/65535/51206416268_36630e815c_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206210291_df27863258_c_d.jpg) --- # Exporting Data for STRUCTURE ![](https://live.staticflickr.com/65535/51206389031_d85445362e_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51207277690_be692945a3_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206416333_c10e5711f1_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206416363_d52a1011d5_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206210376_e3426a3cd3_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206210421_957d853d14_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206994529_512722eac1_c_d.jpg) --- class: middle, center ![](https://live.staticflickr.com/65535/51206228881_922f6ce8ae_c_d.jpg) --- class: middle background-image: url("https://live.staticflickr.com/65535/50367566131_85c1285e2f_o_d.png") background-position: right background-size: auto .pull-left[ ![Moira](https://media.giphy.com/media/7OVR6nwR6CTh2onJq2/giphy.gif) ] .pull-right[ # 🙋🏻 Questions? If you have any questions for about<br/> the content presented herein<br/> now is your time. If you think of something later though, <br/>feel free to [ask me via email](mailto://rjdyer@vcu.edu) and I'll<br/> get back to you as soon as possible. ]