I'm practically a total beginner but anyway - trying to convert column values to numeric values.
If I go:
head(df$Average.Amount)
returns: "1,646.15" "1,425.00" "2,487.50" "2,200.00" "2,456.25" "2,412.50"
class(df$Average.Amount)
returns: character
head(as.numeric(df$Average.Amount))
returns: NA NA NA NA NA NA
I tried noquote to take away quotations...
Let me know what you think!