If you mean that you want Date values to be rownames, that's not usually a good idea, but it depends on what you want to do with Price.
To make the Date column into rownames, you can use
Data <- row.names(Data$Date)
Avoid using data or df as variable names because they are built-ins and some operations treat your object of those names as closures and throw an error.