0 votes
in R Basics by
Explain how R commands are written?

1 Answer

0 votes
by

In R, anywhere in the program you have to preface the line of code with a #sign, for example

# subtraction

# division

# note order of operations exists

...