# Simple business dataset with 4 columns and 7 rows
# Simple business dataset with 4 columns and 7 rows
df <- data.frame(
Customer_ID = c("C001","C002","C003","C004","C005","C006","C007"),
Product = c("laptop","Phone","tablet","Laptop","phone","Monitor",""),
Sales = c("1200","","950","N/A","700","1100","800"), # note: character on purpose
Region = c("North","east","South","west","","North","East")
)
Comments
Post a Comment