Skip to content

Commit

Permalink
added degree plan metrics to examples
Browse files Browse the repository at this point in the history
  • Loading branch information
heileman committed Nov 15, 2018
1 parent 56e7dbe commit daa139c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CITING.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ To cite the definitive Curricular Analytics technical reference, please use the
author = {Gregory L. Heileman and Chaouki T. Abdallah and Ahmad Slim and Michael Hickman},
title = {Curricular Analytics: A Framework for Quantifying the Impact of Curricular Reforms and Pedagogical Innovations},
journal = {arXiv.org},
url = {https://arxiv.org/submit/2471755/view},
url = {https://arxiv.org/submit/2471755/view},
year = {2018}
}
```
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Documentation for functions in this toolbox is also available via the Julia REPL
Additional tutorials can be found at [CurricularAnaltyics](http://curricula.academicdashboards.org).

## Installation
Installation is straightforward. Enter Pkg mode in the Julia REPL by typing `]`, and then typing:
Installation is straightforward. Enter Pkg mode in the Julia REPL by typing `]`, and then type:
```julia-repl
(v1.0) pkg> add CurricularAnalytics
```
Expand Down
2 changes: 1 addition & 1 deletion docs/src/citing.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ To cite the definitive Curricular Analytics technical reference, please use the
author = {Gregory L. Heileman and Chaouki T. Abdallah and Ahmad Slim and Michael Hickman},
title = {Curricular Analytics: A Framework for Quantifying the Impact of Curricular Reforms and Pedagogical Innovations},
journal = {arXiv.org},
url = {https://arxiv.org/submit/2471755/view},
url = {https://arxiv.org/submit/2471755/view},
year = {2018}
}
```
2 changes: 2 additions & 0 deletions examples/curric_Cornell_EE.jl
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,6 @@ terms[8] = Term([c[35],c[36],c[37],c[38]])

dp = DegreePlan("Cornell University EE Program 4-year Plan", curric, terms)

basic_metrics(dp)
dp.metrics
visualize(dp)
3 changes: 3 additions & 0 deletions examples/curric_UH_EE.jl
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@ if isvalid_curriculum(curric, errors)
print(String(take!(errors)))
println("\nDiplaying degree plan for debugging purposes...")
end

basic_metrics(dp)
dp.metrics
visualize(dp)

else # invalid curriculum
Expand Down

0 comments on commit daa139c

Please sign in to comment.