I am trying to export my simple data frame into a .txt file. My data frame BridgeGateHourlyDirection looks like:
I used the statement below
write.table(BridgeGateHourlyDirection, "X:/Maria/Trends/BridgeGateHourlyDOWDirection.txt", sep="\t",row.names=FALSE, quote=FALSE, eol="\n",na="NA",dec=".")
The output looks to be quite unusual and is not readable containing c(). It looks like this:
Has anyone experienced this before and found a solution?
sapply(BridgeGateHourlyDirection,class)
Year Month Hour DayClass EBTot WBTot
"integer" "integer" "integer" "character" "data.frame" "data.frame"
Thank you!