Remember to describe comments!
This commit is contained in:
parent
c78ed76664
commit
001609d203
|
@ -51,6 +51,14 @@ Instead, use RStudio's keyboard shortcut: Alt + - (the minus sign).
|
|||
Notice that RStudio automagically surrounds `<-` with spaces, which is a good code formatting practice.
|
||||
Code is miserable to read on a good day, so giveyoureyesabreak and use spaces.
|
||||
|
||||
## Comments
|
||||
|
||||
R will ignore any text after `#`.
|
||||
This allows to you to write **comments**, text that is ignored by R but read by other humans.
|
||||
We'll sometimes include comments in examples explaining what's happening with the code.
|
||||
|
||||
TODO: add more info
|
||||
|
||||
## What's in a name?
|
||||
|
||||
Object names must start with a letter, and can only contain letters, numbers, `_` and `.`.
|
||||
|
|
Loading…
Reference in New Issue