I was trying to generate a figure based on the concentration vs absorbance. I have the absorbance from 4 fractions. All the values are numeric. I was trying to convert it into factor but it appeared as error like this -
data = read_excel("df.xlsx", StringsAsFactors = TRUE)
The output was
Error in read_excel("df.xlsx", StringsAsFactors = TRUE) : unused argument (StringsAsFactors = TRUE)
My questions are-
1. Do I need to convert the numeric value as factor for plotting?
2. Which argument should I use to plot multiple Fractions against the concentration?