Advertisement
Guest User

Untitled

a guest
May 23rd, 2015
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. ─atma@gauss ~/Downloads
  2. ╰─$ R < tweet-engangement.R --no-save tweet_activity_metrics_patmatzidis_20150426_20150524_en.csv test 1 ↵
  3. ARGUMENT 'tweet_activity_metrics_patmatzidis_20150426_20150524_en.csv' __ignored__
  4.  
  5. ARGUMENT 'test' __ignored__
  6.  
  7.  
  8. R version 2.15.2 (2012-10-26) -- "Trick or Treat"
  9. Copyright (C) 2012 The R Foundation for Statistical Computing
  10. ISBN 3-900051-07-0
  11. Platform: i386-apple-darwin9.8.0/i386 (32-bit)
  12.  
  13. R is free software and comes with ABSOLUTELY NO WARRANTY.
  14. You are welcome to redistribute it under certain conditions.
  15. Type 'license()' or 'licence()' for distribution details.
  16.  
  17. R is a collaborative project with many contributors.
  18. Type 'contributors()' for more information and
  19. 'citation()' on how to cite R or R packages in publications.
  20.  
  21. Type 'demo()' for some demos, 'help()' for on-line help, or
  22. 'help.start()' for an HTML browser interface to help.
  23. Type 'q()' to quit R.
  24.  
  25. > #!/usr/bin/env Rscript
  26. > library(ggplot2)
  27. > library(plyr)
  28. >
  29. > # Process command-line arguments
  30. > args <- commandArgs(trailingOnly = TRUE)
  31. > if (length(args) != 2)
  32. + stop("usage: tweet-engangement input-file output-base-name")
  33. Error: usage: tweet-engangement input-file output-base-name
  34. Execution halted
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement