Description Usage Arguments Value Examples
View source: R/extract_points.R
Summarize Available Points in Lab by Section
1 | extract_points(notebook = NULL, margins = TRUE)
|
notebook |
A character indicating the path or list of paths to MDS lab files (either.ipynb or .Rmd). If left blank, the function will recursively search for all labs in the working directory based on the file extension. |
margins |
A scalar logical which indicates whether to add a row for the total number of points. Defaults to TRUE. |
A dataframe indicating total optional and required number of points.
1 2 3 4 5 6 7 | # R markdown
notebook <- system.file("extdata", "dummylab.Rmd", package = "labzenr")
extract_points(notebook)
# Python notebook
notebook <- system.file("extdata", "dummylab.ipynb", package = "labzenr")
extract_points(notebook)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.