I have a data frame of the format
Time Ask Bid Trade Ask_Size Bid_Size Trade_Size
2016-11-01 09:00:12 NA 901 NA NA 100 NA
2016-11-01 09:00:21 NA NA 950 NA NA 5
2016-11-01 09:00:21 NA 950 NA NA 5 NA
I want to set the values of 1st row for all the column to zero (except the 1st row value of the column Time)
I want the data to be of the format
Time Ask Bid Trade Ask_Size Bid_Size Trade_Size
2016-11-01 09:00:12 0 0 0 0 0 0
2016-11-01 09:00:21 NA NA 950 NA NA 5
2016-11-01 09:00:21 NA 950 NA NA 5 NA
Please help