scSemiProfiler.utils.
estimate_cost
Estimate the cost of semi-profiling and real-profiling.
total_samples (int) – Total number of samples
int
n_representatives (int) – Number of representatives
typing.Tuple[float, float]
typing.Tuple
float
semicost – Cost of semi-profiling
realcost – Cost of real-profiling
Example
>>> semicost, realcost = estimate_cost(12,2)