Documenting Your Analysis
Cloudera Data Science Workbench supports Markdown documentation of your code written in comments. This allows you to generate reports directly from valid Python and R code that runs anywhere, even outside Cloudera Data Science Workbench.
To add documentation to your analysis, create comments in Markdown format:
R
# Heading # ------- # # This documentation is **important.** # # Inline math: $e^ x$ # # Display math: $$y = \Sigma x + \epsilon$$ print("Now the code!")
Python
# Heading # ------- # # This documentation is **important.** # # Inline math: $e^ x$ # # Display math: $$y = \Sigma x + \epsilon$$ print("Now the code!")