cat("There are ",as.character(dataPoints),"data points, and ",as.character(difference),"days.\n")
cat("There are ",as.character(nz),"zero flow days\n")
cat("If there are any zero discharge days, all days had",as.character(qshift),"cubic meters per second added to the discharge value.\n")
#these next two lines show the user where the gaps in the data are if there are any
n<-nrow(localDaily)
for(iin2:n){if((localDaily$Julian[i]-localDaily$Julian[i-1])>1)cat("\n discharge data jumps from",as.character(localDaily$Date[i-1]),"to",as.character(localDaily$Date[i]))}