You should read the Typer Tutorial - User Guide before referring to this summary. Information icons ℹ️ link to the relevant sections of the Typer Tutorial.
- Documentation: https://typer.tiangolo.com
- Source Code: https://github.com/fastapi/typer
You should read the Typer Tutorial - User Guide before referring to this summary. Information icons ℹ️ link to the relevant sections of the Typer Tutorial.
| pearson_residuals <- function(counts, theta = 100) { | |
| counts_sum0 <- as(matrix(Matrix::colSums(counts),nrow=1),"dgCMatrix") | |
| counts_sum1 <- as(matrix(Matrix::rowSums(counts),ncol=1),"dgCMatrix") | |
| counts_sum <- sum(counts@x) | |
| #get residuals | |
| mu <- (counts_sum1 %*% counts_sum0) / counts_sum | |
| z <- (counts - mu) / sqrt(mu + mu^2/theta) | |
| #clip to sqrt(n) |
Published May-13-2020
Install Synthwave ’84/Synthwave + Fluoromachine theme on VS Code (I used the Fluoromachine one)
Install Custom CSS and JS Loader
Command + Shift + P to open command palette > "Preferences: Open settings (JSON)"
exFAT support on macOS seems to have some bugs because my external drives with exFAT formatting will randomly get corrupted.
If Disk Utility is unable to repair, consider trying this:
diskutil list to find the right drive id.disk1s1sudo fsck_exfat -d <id from above>. eg sudo fsck_exfat -d disk1s3-d is debug so you'll see all your files output as they're processed.