В Thu, 13 Sep 2018 15:49:52 -0700 (PDT) Rich Shepard <rshep...@appl-ecosys.com> пишет:
> sink('stat-summaries/estacada-wnw-precip.txt') > print(/summary(estacada_wnw_wx)) > sink() Just remove the slash from your print command (line 25 of rainfall-dubois-crk-all.r) because it's a syntax error (must be a typo). I.e. the above should be print(summary(estacada_wnw_wx)), not print(/summary(estacada_wnw_wx)) (do you notice the difference?). The rest of your sequence of commands is fine. -- Best regards, Ivan ______________________________________________ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.