I have multiple data frames with the exact same structure. I'd like to loop through all these data frames and remove rows where the variable "Hat" = D. Below is what I have for a singular instance but would like to write a loop to do this for multiple data frames.
final_prices_designations_20161101_20161114.csv <- subset.data.frame(final_prices_designations_20161101_20161114.csv,
final_prices_designations_20161101_20161114.csv$Hat == "D")