Name Mode Size
..
ElbowPlot.Rd 100644 2 kb
SFEMethod.Rd 100644 8 kb
calculateBivariate.Rd 100644 7 kb
calculateMultivariate.Rd 100644 6 kb
calculateUnivariate.Rd 100644 15 kb
clusterCorrelograms.Rd 100644 3 kb
clusterMoranPlot.Rd 100644 2 kb
clusterVariograms.Rd 100644 3 kb
colFeatureData.Rd 100644 1 kb
ditto_colors.Rd 100644 0 kb
getDivergeRange.Rd 100644 1 kb
getParams.Rd 100644 1 kb
listSFEMethods.Rd 100644 1 kb
listw2sparse.Rd 100644 1 kb
moranBounds.Rd 100644 1 kb
moranPlot.Rd 100644 5 kb
multi_listw2sparse.Rd 100644 1 kb
multispati_rsp.Rd 100644 2 kb
plotCellBin2D.Rd 100644 2 kb
plotColDataFreqpoly.Rd 100644 3 kb
plotColDataHistogram.Rd 100644 3 kb
plotColGraph.Rd 100644 3 kb
plotCorrelogram.Rd 100644 5 kb
plotCrossVariogram.Rd 100644 1 kb
plotCrossVariogramMap.Rd 100644 1 kb
plotDimLoadings.Rd 100644 2 kb
plotGeometry.Rd 100644 2 kb
plotLocalResult.Rd 100644 12 kb
plotMoranMC.Rd 100644 3 kb
plotSpatialFeature.Rd 100644 10 kb
plotVariogram.Rd 100644 4 kb
plotVariogramMap.Rd 100644 2 kb
spatialReducedDim.Rd 100644 8 kb
variogram-internal.Rd 100644 3 kb
README.md
# From geospatial to spatial transcriptomics <!-- badges: start --> [![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental) [![BioC status](http://www.bioconductor.org/shields/build/release/bioc/Voyager.svg)](https://bioconductor.org/checkResults/release/bioc-LATEST/Voyager) [![codecov](https://codecov.io/gh/pachterlab/voyager/branch/devel/graph/badge.svg?token=RCIXA7AQER)](https://codecov.io/gh/pachterlab/voyager) <!-- badges: end --> This package brings the tradition of geospatial statistics to spatial omics by wrapping classical geospatial packages such as `spdep` and `gstat` to be used with the SpatialFeatureExperiment class, which extends SpatialExperiment with sf. The [companion website](https://pachterlab.github.io/voyager/) for this package includes vignettes that showcase the functionality of `Voyager` in the context of the Visium, Slide-seq V2, CosMx, Xenium, and MERFISH technologies. ## Installation This package is in Bioconductor version 3.16 and above. Install with ```r if (!requireNamespace("BiocManager")) install.packages("BiocManager") BiocManager::install(version = "3.17") # Or a higher version in the future BiocManager::install("Voyager") ``` The main branch in this repo is the release version. The development version of Voyager can be installed from [GitHub](https://github.com/) with: ```r # install.packages("remotes") remotes::install_github("pachterlab/voyager", ref = "devel") ``` Or from Bioconductor with: ```r BiocManager::install("Voyager", version = "devel") ```