Adding missing rows
问题 The format of my excel data file is: day value 01-01-2000 00:00:00 4 01-01-2000 00:01:00 3 01-01-2000 00:02:00 1 01-01-2000 00:04:00 1 I open my file with this: ts = read.csv(file=pathfile, header=TRUE, sep=",") How can I add additional rows with zero number in column “value” into the data frame. Output example: day value 01-01-2000 00:00:00 4 01-01-2000 00:01:00 3 01-01-2000 00:02:00 1 01-01-2000 00:03:00 0 01-01-2000 00:04:00 1 回答1: Try: ts = read.csv(file=pathfile, header=TRUE, sep=",",