R/composition_of_neighborhoods.R
composition_of_neighborhoods.Rd
Returns a data.frame which contains the percentages of cells with a specific marker within each neighborhood. and the number of cells in the neighborhood.
composition_of_neighborhoods(spe_object, feature_colname)
SpatialExperiment that is the output of
identify_neighborhoods
.
String. Column with cell types.
A data.frame is returned
neighborhoods <- identify_neighborhoods(image_no_markers,
method = "hierarchical", min_neighborhood_size = 100,
cell_types_of_interest = c("Immune", "Immune1", "Immune2"), radius = 50,
feature_colname = "Cell.Type")
neighborhoods_vis <- composition_of_neighborhoods(neighborhoods,
feature_colname="Cell.Type")