search for: provovide

Displaying 4 results from an estimated 4 matches for "provovide".

2019 Aug 28
2
Conventions: Use of globals and main functions
...solution. It might also be that some functionality is put into functions to be reused in other places. This can be done by putting those function definitions into separate files. Than one cane use source wherever those functions?are needed. Now, putting stuff that runs code and scripts that define/provovide functions into the same script is a bad idea. Using the main()-idioms described might prevent this the problems stemming from mixing functions and function execution. But it would also encourage this mixing which is - I think, a bad idea anyways. I actually would agree entirely that files should...
2019 Aug 27
0
Conventions: Use of globals and main functions
...solution. It might also be that some functionality is put into functions to be reused in other places. This can be done by putting those function definitions into separate files. Than one cane use source wherever those functions are needed. Now, putting stuff that runs code and scripts that define/provovide functions into the same script is a bad idea. Using the main()-idioms described might prevent this the problems stemming from mixing functions and function execution. But it would also encourage this mixing which is - I think, a bad idea anyways. Therefore, I am against fostering a main()-idiom -...
2019 Aug 28
0
Conventions: Use of globals and main functions
...also be that some functionality is put into functions to > be reused in other places. This can be done by putting those function > definitions into separate files. Than one cane use source wherever those > functions are needed. Now, putting stuff that runs code and scripts that > define/provovide functions into the same script is a bad idea. Using the > main()-idioms described might prevent this the problems stemming from > mixing functions and function execution. But it would also encourage this > mixing which is - I think, a bad idea anyways. > > I actually would agree enti...
2019 Aug 25
10
Conventions: Use of globals and main functions
In R scripts (as opposed to packages), even in reproducible scripts, it seems fairly conventional to use the global workspace as a sort of main function, and thus R scripts often populate the global environment with many variables, which may be mutated. Although this makes sense given R has historically been used interactively and this practice is common for scripting languages, this appears to