This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### BCA analysis for protein quantification | |
# References: https://www.spsanderson.com/steveondata/posts/2023-11-17/index.html | |
# https://www.theanalysisfactor.com/r-tutorial-4/ | |
# Loading libraries | |
library(ggplot2) | |
library(dplyr) | |
library(nls2) # For non-linear regression | |
library(ggrepel) # For non-overlapping text labels |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load necessary libraries | |
### BCA analysis for protein quantification | |
# References: https://www.spsanderson.com/steveondata/posts/2023-11-17/index.html | |
# https://www.theanalysisfactor.com/r-tutorial-4/ | |
# Loading libraries | |
library(ggplot2) | |
library(dplyr) | |
library(nls2) # For non-linear regression |