I am trying to locate errors within a data frame and highlight them. I can subset the values I want (see example code), but I don't know how to highlight the desired values upon export (i.e. the instances where "90210" or "Doctor" appear in df1).
I know you can't highlight a CSV, so exporting as an XLSX is probably the way to go.
Any help is soooo appreciated
df1 <- read.csv("My Data.csv")
Test <- subset(df1, df1$Zipcode == "90210" | df1$Occupation == "Doctor")