Course Content
R Introduction: Part I
R Introduction: Part I
Comments in R
When you've written an extensive script for research and need to revisit it later for updates or improvements, remembering the purpose of each line of code can be challenging. That’s where annotations within the code, known as comments, become invaluable.
For instance, we can add comments in two ways: as a standalone line and alongside a computation:
# Some calculation 11 + 3 # eleven plus three
The console will only show the result of 11 + 3
and ignore all the comments.
Comments are useful not just for clarification, but also for debugging purposes, allowing you to deactivate certain lines of code without deleting them.
Task
To make the code executable by deactivating certain lines, apply the hash #
symbol to correct the errors.
Thanks for your feedback!
Comments in R
When you've written an extensive script for research and need to revisit it later for updates or improvements, remembering the purpose of each line of code can be challenging. That’s where annotations within the code, known as comments, become invaluable.
For instance, we can add comments in two ways: as a standalone line and alongside a computation:
# Some calculation 11 + 3 # eleven plus three
The console will only show the result of 11 + 3
and ignore all the comments.
Comments are useful not just for clarification, but also for debugging purposes, allowing you to deactivate certain lines of code without deleting them.
Task
To make the code executable by deactivating certain lines, apply the hash #
symbol to correct the errors.
Thanks for your feedback!
Comments in R
When you've written an extensive script for research and need to revisit it later for updates or improvements, remembering the purpose of each line of code can be challenging. That’s where annotations within the code, known as comments, become invaluable.
For instance, we can add comments in two ways: as a standalone line and alongside a computation:
# Some calculation 11 + 3 # eleven plus three
The console will only show the result of 11 + 3
and ignore all the comments.
Comments are useful not just for clarification, but also for debugging purposes, allowing you to deactivate certain lines of code without deleting them.
Task
To make the code executable by deactivating certain lines, apply the hash #
symbol to correct the errors.
Thanks for your feedback!
When you've written an extensive script for research and need to revisit it later for updates or improvements, remembering the purpose of each line of code can be challenging. That’s where annotations within the code, known as comments, become invaluable.
For instance, we can add comments in two ways: as a standalone line and alongside a computation:
# Some calculation 11 + 3 # eleven plus three
The console will only show the result of 11 + 3
and ignore all the comments.
Comments are useful not just for clarification, but also for debugging purposes, allowing you to deactivate certain lines of code without deleting them.
Task
To make the code executable by deactivating certain lines, apply the hash #
symbol to correct the errors.