tags:

views:

104

answers:

2
+4  Q: 

Include files R?

Is it possible to use include files in R like in most programming languages, for example C?

+2  A: 

See help(source), and maybe read the Introduction to R afterwards.

Dirk Eddelbuettel
+4  A: 

Use source and/or sys.source.

Joshua Ulrich