NormalizeMets package errors

Hi,

I'm working with the NormalizeMets package to perform metabolomic analysis. It's proving to be a challenge because I can't seem to import my data. I've used the muma package and all I had to do for that was set my workdir and just plug in the file name in my syntax. But that didn't work for the NormalizeMets package. I tried creating a variable of my data but I ended up with this error:

featuredata <- read.csv(C:/Users/Name/Desktop/Metaolomics/halfday.csv)
Error: unexpected '/' in "read.csv(C:/"

I repeated the command with "" instead of "/" but ended up with the same error.

should be
featuredata <- read.csv("C:/Users/Name/Desktop/Metaolomics/halfday.csv")