def predict_communities(self, deg_corr): if self.is_weighted: state = gt.minimize_blockmodel_dl(self.coocurence_graph, overlap=self.allow_overlap, deg_corr=deg_corr, layers=True, state_args=dict(ec=self.weights, layers=False)) else: state = gt.minimize_blockmodel_dl(self.coocurence_graph, overlap=self.allow_overlap, deg_corr=deg_corr) state = state.copy(B=self.coocurence_graph.num_vertices()) self.dls_[deg_corr] = [] # description length history self.vm_[deg_corr] = None # vertex marginals self.em_[deg_corr] = None # edge marginals self.h_[deg_corr] = np.zeros(self.coocurence_graph.num_vertices() + 1) def collect_marginals(s, deg_corr, obj): obj.vm_[deg_corr] = s.collect_vertex_marginals(obj.vm_[deg_corr]) obj.em_[deg_corr] = s.collect_edge_marginals(obj.em_[deg_corr]) obj.dls_[deg_corr].append(s.entropy()) B = s.get_nonempty_B() obj.h_[deg_corr][B] += 1 collect_marginals_for_class = lambda s: collect_marginals( s, deg_corr, self) # Now we collect the marginal distributions for exactly 200,000 sweeps gt.mcmc_equilibrate(state, force_niter=self.n_iters, mcmc_args=dict(niter=self.n_init_iters), callback=collect_marginals_for_class, **self.equlibrate_options) S_mf = gt.mf_entropy(self.coocurence_graph, self.vm_[deg_corr]) S_bethe = gt.bethe_entropy(self.coocurence_graph, self.em_[deg_corr])[0] L = -np.mean(self.dls_[deg_corr]) self.state_[deg_corr] = copy.copy(state) self.S_bethe_[deg_corr] = copy.copy(S_bethe) self.S_mf_[deg_corr] = copy.copy(S_mf) self.L_[deg_corr] = copy.copy(L) if self.verbose: print(("Model evidence for deg_corr = %s:" % deg_corr, L + S_mf, "(mean field),", L + S_bethe, "(Bethe)"))
def draw_lesmis(): g = gt.collection.data["lesmis"] state = gt.BlockState(g, B=20) # This automatically initializes the state # with a random partition into B=20 # nonempty groups; The user could # also pass an arbitrary initial # partition using the 'b' parameter. # If we work with the above state object, we will be restricted to # partitions into at most B=20 groups. But since we want to consider # an arbitrary number of groups in the range [1, N], we transform it # into a state with B=N groups (where N-20 will be empty). print('num v:', g.num_vertices()) state = state.copy(B=g.num_vertices()) # Now we run 1,000 sweeps of the MCMC dS, nmoves = state.mcmc_sweep(niter=1000) print("Change in description length:", dS) print("Number of accepted vertex moves:", nmoves) gt.mcmc_equilibrate(state, wait=1000, mcmc_args=dict(niter=10)) def collect_marginals(s): global pv pv = s.collect_vertex_marginals(pv) print(pv) # Now we collect the marginals for exactly 100,000 sweeps gt.mcmc_equilibrate(state, force_niter=10000, mcmc_args=dict(niter=10), callback=collect_marginals) print(g.vp.pos) # Now the node marginals are stored in property map pv. We can # visualize them as pie charts on the nodes: state.draw(pos=g.vp.pos, vertex_shape="pie", vertex_pie_fractions=pv, edge_gradient=None, output="lesmis-sbm-marginals.pdf")
# Save graph fname = "SBM_%d_%f" % (nClass, entropy) write_classes(os.path.join(outdir, fname + ".tsv"), g, state) pickle.dump([g, state], open(os.path.join(outdir, fname + ".pickle"), "wb"), -1) g.save(os.path.join(outdir, fname + ".gt.gz")) k = np.argmin(entropy_list) state, entropy = state_list[k], entropy_list[k] nClass = len(np.unique(state.get_blocks().a)) print("Selected toss %d: %d classes, entropy %f" % (k, nClass, entropy)) # Avoid the transient state gt.mcmc_equilibrate(state, wait=2000, nbreaks=2, mcmc_args=dict(niter=10), verbose=False) entropy = state.entropy() nClass = len(np.unique(state.get_blocks().a)) print("%d classes, entropy %f" % (nClass, entropy)) # Save graph fname = "SBM_mcmc_ini_%d_%f" % (nClass, entropy) write_classes(os.path.join(outdir, fname + ".tsv"), g, state) pickle.dump([g, state], open(os.path.join(outdir, fname + ".pickle"), "wb"), -1) g.save(os.path.join(outdir, fname + ".gt.gz")) # Callback to collect the vertex marginal probabilities dls = [] # Description length history
k = np.argmin(entropy_list) state, entropy = state_list[k], entropy_list[k] if args.hierarchical: bs = state.get_bs() bs += [np.zeros(1)] * (args.maxLevels - len(bs)) state = state.copy(bs=bs, sampling=True) state_0 = state.get_levels()[0] nClass = len(np.unique(state_0.get_blocks().a)) else: nClass = len(np.unique(state.get_blocks().a)) print("Selected toss %d: %d classes, entropy %f" % (k, nClass, entropy)) # Avoid the transient state gt.mcmc_equilibrate(state, wait=args.transient, nbreaks=2, multiflip=True, mcmc_args=dict(niter=10), verbose=False) entropy = state.entropy() if args.hierarchical: state_0 = state.get_levels()[0] nClass = len(np.unique(state_0.get_blocks().a)) else: nClass = len(np.unique(state.get_blocks().a)) print("%d classes, entropy %f" % (nClass, entropy)) # Save graph (v_Block, v_BlockCC, v_BlockCC4) = block_annotation(g, state) g.vertex_properties['Block'] = v_Block g.vertex_properties['BlockCC'] = v_BlockCC g.vertex_properties['BlockCC4'] = v_BlockCC4
def planted_model( adata: AnnData, n_sweep: int = 10, beta: float = np.inf, tolerance=1e-6, max_iterations: int = 1000000, epsilon: float = 0, equilibrate: bool = False, wait: int = 1000, nbreaks: int = 2, collect_marginals: bool = False, niter_collect: int = 10000, deg_corr: bool = True, n_init: int = 1, beta_range: Tuple[float] = (1., 100.), steps_anneal: int = 5, resume: bool = False, *, restrict_to: Optional[Tuple[str, Sequence[str]]] = None, random_seed: Optional[int] = None, key_added: str = 'ppbm', adjacency: Optional[sparse.spmatrix] = None, neighbors_key: Optional[str] = 'neighbors', directed: bool = False, use_weights: bool = False, copy: bool = False, minimize_args: Optional[Dict] = {}, equilibrate_args: Optional[Dict] = {}, ) -> Optional[AnnData]: """\ Cluster cells into subgroups [Peixoto14]_. Cluster cells using the Stochastic Block Model [Peixoto14]_, performing Bayesian inference on node groups. This function, in particular, uses the Planted Block Model, which is particularly suitable in case of assortative graphs and it returns the optimal number of communities This requires having ran :func:`~scanpy.pp.neighbors` or :func:`~scanpy.external.pp.bbknn` first. Parameters ---------- adata The annotated data matrix. n_sweep Number of MCMC sweeps to get the initial guess beta Inverse temperature for the initial MCMC sweep tolerance Difference in description length to stop MCMC sweep iterations max_iterations Maximal number of iterations to be performed by the equilibrate step. epsilon Relative changes in entropy smaller than epsilon will not be considered as record-breaking. equilibrate Whether or not perform the mcmc_equilibrate step. Equilibration should always be performed. Note, also, that without equilibration it won't be possible to collect marginals. collect_marginals Whether or not collect node probability of belonging to a specific partition. niter_collect Number of iterations to force when collecting marginals. This will increase the precision when calculating probabilites wait Number of iterations to wait for a record-breaking event. Higher values result in longer computations. Set it to small values when performing quick tests. nbreaks Number of iteration intervals (of size `wait`) without record-breaking events necessary to stop the algorithm. deg_corr Whether to use degree correction in the minimization step. In many real world networks this is the case, although this doesn't seem the case for KNN graphs used in scanpy. n_init Number of initial minimizations to be performed. The one with smaller entropy is chosen beta_range Inverse temperature at the beginning and the end of the equilibration steps_anneal Number of steps in which the simulated annealing is performed resume Start from a previously created model, if any, without initializing a novel model key_added `adata.obs` key under which to add the cluster labels. adjacency Sparse adjacency matrix of the graph, defaults to `adata.uns['neighbors']['connectivities']` in case of scanpy<=1.4.6 or `adata.obsp[neighbors_key][connectivity_key]` for scanpy>1.4.6 neighbors_key The key passed to `sc.pp.neighbors` directed Whether to treat the graph as directed or undirected. use_weights If `True`, edge weights from the graph are used in the computation (placing more emphasis on stronger edges). Note that this increases computation times copy Whether to copy `adata` or modify it inplace. random_seed Random number to be used as seed for graph-tool Returns ------- `adata.obs[key_added]` Array of dim (number of samples) that stores the subgroup id (`'0'`, `'1'`, ...) for each cell. `adata.uns['sbm']['params']` A dict with the values for the parameters `resolution`, `random_state`, and `n_iterations`. `adata.uns['sbm']['stats']` A dict with the values returned by mcmc_sweep `adata.uns['sbm']['cell_affinity']` A `np.ndarray` with cell probability of belonging to a specific group `adata.uns['sbm']['state']` The BlockModel state object """ # first things first check_gt_version() if resume: equilibrate = True if resume and (key_added not in adata.uns or 'state' not in adata.uns[key_added]): # let the model proceed as default logg.warning('Resuming has been specified but a state was not found\n' 'Will continue with default minimization step') resume = False if random_seed: np.random.seed(random_seed) gt.seed_rng(random_seed) if collect_marginals: logg.warning('Collecting marginals has a large impact on running time') if not equilibrate: raise ValueError( "You can't collect marginals without MCMC equilibrate " "step. Either set `equlibrate` to `True` or " "`collect_marginals` to `False`") start = logg.info('minimizing the Planted Partition Block Model') adata = adata.copy() if copy else adata # are we clustering a user-provided graph or the default AnnData one? if adjacency is None: if neighbors_key not in adata.uns: raise ValueError('You need to run `pp.neighbors` first ' 'to compute a neighborhood graph.') elif 'connectivities_key' in adata.uns[neighbors_key]: # scanpy>1.4.6 has matrix in another slot conn_key = adata.uns[neighbors_key]['connectivities_key'] adjacency = adata.obsp[conn_key] else: # scanpy<=1.4.6 has sparse matrix here adjacency = adata.uns[neighbors_key]['connectivities'] if restrict_to is not None: restrict_key, restrict_categories = restrict_to adjacency, restrict_indices = restrict_adjacency( adata, restrict_key, restrict_categories, adjacency, ) # convert it to igraph g = get_graph_tool_from_adjacency(adjacency, directed=directed) recs = [] rec_types = [] if use_weights: # this is not ideal to me, possibly we may need to transform # weights. More tests needed. recs = [g.ep.weight] rec_types = ['real-normal'] if resume: # create the state and make sure sampling is performed state = adata.uns[key_added]['state'].copy() g = state.g else: if n_init < 1: n_init = 1 # initialize the block states states = [gt.PPBlockState(g) for x in range(n_init)] # perform a mcmc sweep on each # no list comprehension as I need to collect stats _dS = np.zeros(n_init) _nattempts = np.zeros(n_init) _nmoves = np.zeros(n_init) for x in range(n_init): t_ds = 1 while np.abs(t_ds) > tolerance: # perform sweep until a tolerance is reached t_ds, t_natt, t_nm = states[x].multiflip_mcmc_sweep( beta=beta, niter=n_sweep) _dS[x] += t_ds _nattempts[x] += t_natt _nmoves[x] += t_nm _amin = np.argmin([s.entropy() for s in states]) state = states[_amin] dS = _dS[_amin] nattempts = _nattempts[_amin] nmoves = _nmoves[_amin] logg.info(' done', time=start) # equilibrate the Markov chain if equilibrate: logg.info('running MCMC equilibration step') equilibrate_args['wait'] = wait equilibrate_args['nbreaks'] = nbreaks equilibrate_args['max_niter'] = max_iterations equilibrate_args['mcmc_args'] = {'niter': 10} dS, nattempts, nmoves = gt.mcmc_anneal( state, mcmc_equilibrate_args=equilibrate_args, niter=steps_anneal, beta_range=beta_range) if collect_marginals and equilibrate: # we here only retain level_0 counts, until I can't figure out # how to propagate correctly counts to higher levels # I wonder if this should be placed after group definition or not logg.info(' collecting marginals') group_marginals = np.zeros(g.num_vertices() + 1) def _collect_marginals(s): group_marginals[s.get_B()] += 1 gt.mcmc_equilibrate(state, wait=wait, nbreaks=nbreaks, epsilon=epsilon, max_niter=max_iterations, multiflip=True, force_niter=niter_collect, mcmc_args=dict(niter=10), callback=_collect_marginals) logg.info(' done', time=start) # everything is in place, we need to fill all slots # first build an array with groups = pd.Series(state.get_blocks().get_array()).astype('category') new_cat_names = dict([(cx, u'%s' % cn) for cn, cx in enumerate(groups.cat.categories)]) groups.cat.rename_categories(new_cat_names, inplace=True) if restrict_to is not None: groups.index = adata.obs[restrict_key].index else: groups.index = adata.obs_names # add column names adata.obs.loc[:, key_added] = groups # add some unstructured info adata.uns[key_added] = {} adata.uns[key_added]['stats'] = dict(dS=dS, nattempts=nattempts, nmoves=nmoves, modularity=gt.modularity( g, state.get_blocks())) adata.uns[key_added]['state'] = state # now add marginal probabilities. if collect_marginals: # cell marginals will be a list of arrays with probabilities # of belonging to a specific group adata.uns[key_added]['group_marginals'] = group_marginals # calculate log-likelihood of cell moves over the remaining levels # adata.uns[key_added]['cell_affinity'] = {'1':get_cell_loglikelihood(state, as_prob=True, rescale=True)} # last step is recording some parameters used in this analysis adata.uns[key_added]['params'] = dict(epsilon=epsilon, wait=wait, nbreaks=nbreaks, equilibrate=equilibrate, collect_marginals=collect_marginals, random_seed=random_seed) logg.info( ' finished', time=start, deep=( f'found {state.get_B()} clusters and added\n' f' {key_added!r}, the cluster labels (adata.obs, categorical)'), ) return adata if copy else None
def nested_model( adata: AnnData, max_iterations: int = 1000000, epsilon: float = 0, equilibrate: bool = False, wait: int = 1000, nbreaks: int = 2, collect_marginals: bool = False, niter_collect: int = 10000, hierarchy_length: int = 10, deg_corr: bool = True, multiflip: bool = True, fast_model: bool = False, fast_tol: float = 1e-6, n_sweep: int = 10, beta: float = np.inf, n_init: int = 1, beta_range: Tuple[float] = (1., 1000.), steps_anneal: int = 3, resume: bool = False, *, restrict_to: Optional[Tuple[str, Sequence[str]]] = None, random_seed: Optional[int] = None, key_added: str = 'nsbm', adjacency: Optional[sparse.spmatrix] = None, neighbors_key: Optional[str] = 'neighbors', directed: bool = False, use_weights: bool = False, prune: bool = False, return_low: bool = False, copy: bool = False, minimize_args: Optional[Dict] = {}, equilibrate_args: Optional[Dict] = {}, ) -> Optional[AnnData]: """\ Cluster cells into subgroups [Peixoto14]_. Cluster cells using the nested Stochastic Block Model [Peixoto14]_, a hierarchical version of Stochastic Block Model [Holland83]_, performing Bayesian inference on node groups. NSBM should circumvent classical limitations of SBM in detecting small groups in large graphs replacing the noninformative priors used by a hierarchy of priors and hyperpriors. This requires having ran :func:`~scanpy.pp.neighbors` or :func:`~scanpy.external.pp.bbknn` first. Parameters ---------- adata The annotated data matrix. max_iterations Maximal number of iterations to be performed by the equilibrate step. epsilon Relative changes in entropy smaller than epsilon will not be considered as record-breaking. equilibrate Whether or not perform the mcmc_equilibrate step. Equilibration should always be performed. Note, also, that without equilibration it won't be possible to collect marginals. collect_marginals Whether or not collect node probability of belonging to a specific partition. niter_collect Number of iterations to force when collecting marginals. This will increase the precision when calculating probabilites wait Number of iterations to wait for a record-breaking event. Higher values result in longer computations. Set it to small values when performing quick tests. nbreaks Number of iteration intervals (of size `wait`) without record-breaking events necessary to stop the algorithm. hierarchy_length Initial length of the hierarchy. When large values are passed, the top-most levels will be uninformative as they will likely contain the very same groups. Increase this valus if a very large number of cells is analyzed (>100.000). deg_corr Whether to use degree correction in the minimization step. In many real world networks this is the case, although this doesn't seem the case for KNN graphs used in scanpy. multiflip Whether to perform MCMC sweep with multiple simultaneous moves to sample network partitions. It may result in slightly longer runtimes, but under the hood it allows for a more efficient space exploration. fast_model Whether to skip initial minization step and let the MCMC find a solution. This approach tend to be faster and consume less memory, but may be less accurate. fast_tol Tolerance for fast model convergence. n_sweep Number of iterations to be performed in the fast model MCMC greedy approach beta Inverse temperature for MCMC greedy approach n_init Number of initial minimizations to be performed. The one with smaller entropy is chosen beta_range Inverse temperature at the beginning and the end of the equilibration steps_anneal Number of steps in which the simulated annealing is performed resume Start from a previously created model, if any, without initializing a novel model key_added `adata.obs` key under which to add the cluster labels. adjacency Sparse adjacency matrix of the graph, defaults to `adata.uns['neighbors']['connectivities']` in case of scanpy<=1.4.6 or `adata.obsp[neighbors_key][connectivity_key]` for scanpy>1.4.6 neighbors_key The key passed to `sc.pp.neighbors` directed Whether to treat the graph as directed or undirected. use_weights If `True`, edge weights from the graph are used in the computation (placing more emphasis on stronger edges). Note that this increases computation times prune Some high levels in hierarchy may contain the same information in terms of cell assignments, even if they apparently have different group names. When this option is set to `True`, the function only returns informative levels. Note, however, that cell affinities are still reported for all levels. Pruning does not rename group levels return_low Whether or not return nsbm_level_0 in adata.obs. This level usually contains so many groups that it cannot be plot anyway, but it may be useful for particular analysis. By default it is not returned copy Whether to copy `adata` or modify it inplace. random_seed Random number to be used as seed for graph-tool Returns ------- `adata.obs[key_added]` Array of dim (number of samples) that stores the subgroup id (`'0'`, `'1'`, ...) for each cell. `adata.uns['nsbm']['params']` A dict with the values for the parameters `resolution`, `random_state`, and `n_iterations`. `adata.uns['nsbm']['stats']` A dict with the values returned by mcmc_sweep `adata.uns['nsbm']['cell_affinity']` A `np.ndarray` with cell probability of belonging to a specific group `adata.uns['nsbm']['state']` The NestedBlockModel state object """ if resume: # if the fast_model is chosen perform equilibration anyway # also if a model has previously created equilibrate = True if resume and ('nsbm' not in adata.uns or 'state' not in adata.uns['nsbm']): # let the model proceed as default logg.warning('Resuming has been specified but a state was not found\n' 'Will continue with default minimization step') resume = False if random_seed: np.random.seed(random_seed) gt.seed_rng(random_seed) if collect_marginals: logg.warning('Collecting marginals has a large impact on running time') if not equilibrate: raise ValueError( "You can't collect marginals without MCMC equilibrate " "step. Either set `equlibrate` to `True` or " "`collect_marginals` to `False`") start = logg.info('minimizing the nested Stochastic Block Model') adata = adata.copy() if copy else adata # are we clustering a user-provided graph or the default AnnData one? if adjacency is None: if neighbors_key not in adata.uns: raise ValueError('You need to run `pp.neighbors` first ' 'to compute a neighborhood graph.') elif 'connectivities_key' in adata.uns[neighbors_key]: # scanpy>1.4.6 has matrix in another slot conn_key = adata.uns[neighbors_key]['connectivities_key'] adjacency = adata.obsp[conn_key] else: # scanpy<=1.4.6 has sparse matrix here adjacency = adata.uns[neighbors_key]['connectivities'] if restrict_to is not None: restrict_key, restrict_categories = restrict_to adjacency, restrict_indices = restrict_adjacency( adata, restrict_key, restrict_categories, adjacency, ) # convert it to igraph g = get_graph_tool_from_adjacency(adjacency, directed=directed) recs = [] rec_types = [] if use_weights: # this is not ideal to me, possibly we may need to transform # weights. More tests needed. recs = [g.ep.weight] rec_types = ['real-normal'] if n_init < 1: n_init = 1 if fast_model: # do not minimize, start with a dummy state and perform only equilibrate states = [ gt.NestedBlockState(g=g, state_args=dict(deg_corr=deg_corr, recs=recs, rec_types=rec_types)) for n in range(n_init) ] for x in range(n_init): dS = 1 while np.abs(dS) > fast_tol: # perform sweep until a tolerance is reached dS, _, _ = states[x].multiflip_mcmc_sweep(beta=beta, niter=n_sweep) _amin = np.argmin([s.entropy() for s in states]) state = states[_amin] # dS = 1 # while np.abs(dS) > fast_tol: # dS, nattempts, nmoves = state.multiflip_mcmc_sweep(niter=10, beta=np.inf) bs = state.get_bs() logg.info(' done', time=start) elif resume: # create the state and make sure sampling is performed state = adata.uns['nsbm']['state'].copy(sampling=True) bs = state.get_bs() # get the graph from state g = state.g else: states = [ gt.minimize_nested_blockmodel_dl( g, deg_corr=deg_corr, state_args=dict(recs=recs, rec_types=rec_types), **minimize_args) for n in range(n_init) ] state = states[np.argmin([s.entropy() for s in states])] # state = gt.minimize_nested_blockmodel_dl(g, deg_corr=deg_corr, # state_args=dict(recs=recs, # rec_types=rec_types), # **minimize_args) logg.info(' done', time=start) bs = state.get_bs() if len(bs) <= hierarchy_length: # increase hierarchy length up to the specified value # according to Tiago Peixoto 10 is reasonably large as number of # groups decays exponentially bs += [np.zeros(1)] * (hierarchy_length - len(bs)) else: logg.warning( f'A hierarchy length of {hierarchy_length} has been specified\n' f'but the minimized model contains {len(bs)} levels') pass # create a new state with inferred blocks state = gt.NestedBlockState(g, bs, state_args=dict(recs=recs, rec_types=rec_types), sampling=True) # equilibrate the Markov chain if equilibrate: logg.info('running MCMC equilibration step') # equlibration done by simulated annealing equilibrate_args['wait'] = wait equilibrate_args['nbreaks'] = nbreaks equilibrate_args['max_niter'] = max_iterations equilibrate_args['multiflip'] = multiflip equilibrate_args['mcmc_args'] = {'niter': 10} dS, nattempts, nmoves = gt.mcmc_anneal( state, mcmc_equilibrate_args=equilibrate_args, niter=steps_anneal, beta_range=beta_range) if collect_marginals and equilibrate: # we here only retain level_0 counts, until I can't figure out # how to propagate correctly counts to higher levels # I wonder if this should be placed after group definition or not logg.info(' collecting marginals') group_marginals = [ np.zeros(g.num_vertices() + 1) for s in state.get_levels() ] def _collect_marginals(s): levels = s.get_levels() for l, sl in enumerate(levels): group_marginals[l][sl.get_nonempty_B()] += 1 gt.mcmc_equilibrate(state, wait=wait, nbreaks=nbreaks, epsilon=epsilon, max_niter=max_iterations, multiflip=True, force_niter=niter_collect, mcmc_args=dict(niter=10), callback=_collect_marginals) logg.info(' done', time=start) # everything is in place, we need to fill all slots # first build an array with groups = np.zeros((g.num_vertices(), len(bs)), dtype=int) for x in range(len(bs)): # for each level, project labels to the vertex level # so that every cell has a name. Note that at this level # the labels are not necessarily consecutive groups[:, x] = state.project_partition(x, 0).get_array() groups = pd.DataFrame(groups).astype('category') # rename categories from 0 to n for c in groups.columns: new_cat_names = dict([ (cx, u'%s' % cn) for cn, cx in enumerate(groups.loc[:, c].cat.categories) ]) groups.loc[:, c].cat.rename_categories(new_cat_names, inplace=True) if restrict_to is not None: groups.index = adata.obs[restrict_key].index else: groups.index = adata.obs_names # add column names groups.columns = [ "%s_level_%d" % (key_added, level) for level in range(len(bs)) ] # remove any column with the same key keep_columns = [ x for x in adata.obs.columns if not x.startswith('%s_level_' % key_added) ] adata.obs = adata.obs.loc[:, keep_columns] # concatenate obs with new data, skipping level_0 which is usually # crap. In the future it may be useful to reintegrate it # we need it in this function anyway, to match groups with node marginals if return_low: adata.obs = pd.concat([adata.obs, groups], axis=1) else: adata.obs = pd.concat([adata.obs, groups.iloc[:, 1:]], axis=1) # add some unstructured info adata.uns['nsbm'] = {} adata.uns['nsbm']['stats'] = dict(level_entropy=np.array( [state.level_entropy(x) for x in range(len(state.levels))]), modularity=np.array([ gt.modularity( g, state.project_partition(x, 0)) for x in range(len((state.levels))) ])) if equilibrate: adata.uns['nsbm']['stats']['dS'] = dS adata.uns['nsbm']['stats']['nattempts'] = nattempts adata.uns['nsbm']['stats']['nmoves'] = nmoves adata.uns['nsbm']['state'] = state # now add marginal probabilities. if collect_marginals: # refrain group marginals. We collected data in vector as long as # the number of cells, cut them into appropriate length data adata.uns['nsbm']['group_marginals'] = {} for nl, level_marginals in enumerate(group_marginals): idx = np.where(level_marginals > 0)[0] + 1 adata.uns['nsbm']['group_marginals'][nl] = np.array( level_marginals[:np.max(idx)]) # prune uninformative levels, if any if prune: to_remove = prune_groups(groups) logg.info(f' Removing levels f{to_remove}') adata.obs.drop(to_remove, axis='columns', inplace=True) # calculate log-likelihood of cell moves over the remaining levels # we have to calculate events at level 0 and propagate to upper levels logg.info(' calculating cell affinity to groups') levels = [ int(x.split('_')[-1]) for x in adata.obs.columns if x.startswith(f'{key_added}_level') ] adata.uns['nsbm']['cell_affinity'] = dict.fromkeys( [str(x) for x in levels]) p0 = get_cell_loglikelihood(state, level=0, as_prob=True) adata.uns['nsbm']['cell_affinity'][0] = p0 l0 = "%s_level_0" % key_added for nl, level in enumerate(groups.columns[1:]): cross_tab = pd.crosstab(groups.loc[:, l0], groups.loc[:, level]) cl = np.zeros((p0.shape[0], cross_tab.shape[1]), dtype=p0.dtype) for x in range(cl.shape[1]): # sum counts of level_0 groups corresponding to # this group at current level cl[:, x] = p0[:, np.where(cross_tab.iloc[:, x] > 0)[0]].sum(axis=1) adata.uns['nsbm']['cell_affinity'][str(nl + 1)] = cl / np.sum( cl, axis=1)[:, None] # last step is recording some parameters used in this analysis adata.uns['nsbm']['params'] = dict( epsilon=epsilon, wait=wait, nbreaks=nbreaks, equilibrate=equilibrate, fast_model=fast_model, collect_marginals=collect_marginals, hierarchy_length=hierarchy_length, random_seed=random_seed, prune=prune, ) logg.info( ' finished', time=start, deep= (f'found {state.get_levels()[1].get_nonempty_B()} clusters at level_1, and added\n' f' {key_added!r}, the cluster labels (adata.obs, categorical)'), ) return adata if copy else None