7 lines
312 B
R
7 lines
312 B
R
# Michael Cayton
|
|
# Script to import Happy Dad's Physic files and from them to Fortan readable format.
|
|
# April 21st, 2016
|
|
|
|
ns54U140105 <- read.delim2("~/Desktop/ns54U140105.txt", header=FALSE)
|
|
write.fwf(ns54U140105, file="~/Desktop/test.txt", sep =" ", colnames = F, rownames=F, quote=F, width=1, scientific=T)
|