-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgreat-docs.yml
More file actions
114 lines (99 loc) · 3.65 KB
/
Copy pathgreat-docs.yml
File metadata and controls
114 lines (99 loc) · 3.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
display_name: rtichoke
parser: numpy
repo: https://github.com/uriahf/rtichoke_python
user_guide: user_guide
homepage: user_guide
site_url: https://uriahf.github.io/rtichoke_python/
changelog:
enabled: true
max_releases: 50
include_in_header:
- text: |
<script>
document.addEventListener('DOMContentLoaded', () => {
const nav = document.querySelector('nav.navbar ul.navbar-nav.me-auto');
if (!nav || nav.querySelector('[data-rtichoke-guides-link]')) return;
const guidesItem = document.createElement('li');
guidesItem.className = 'nav-item';
guidesItem.setAttribute('data-rtichoke-guides-link', '');
const guidesLink = document.createElement('a');
guidesLink.className = 'nav-link';
const offset = document.querySelector('meta[name="quarto:offset"]');
guidesLink.href = (offset ? offset.content : '') + 'index.html';
guidesLink.textContent = 'Guides';
guidesItem.appendChild(guidesLink);
const item = document.createElement('li');
item.className = 'nav-item';
item.setAttribute('data-rtichoke-blog-link', '');
const link = document.createElement('a');
link.className = 'nav-link';
link.href = 'https://rtichoke-blog.netlify.app/';
link.textContent = 'Blog ↗';
item.appendChild(link);
const reference = [...nav.children].find((el) =>
el.textContent.trim().toLowerCase().includes('reference')
);
nav.insertBefore(guidesItem, reference || null);
nav.insertBefore(item, reference || null);
});
</script>
- text: |
<script>
(function () {
var script = document.createElement('script');
var offset = document.querySelector('meta[name="quarto:offset"]');
script.src = (offset ? offset.content : '') + 'assets/uriahtalks-horizon-explorer.js';
script.defer = true;
document.head.appendChild(script);
})();
</script>
site:
css: site.css
source:
enabled: true
branch: main
placement: usage
reference:
- title: Performance Data
desc: Prepare classification and time-to-event data for visualization.
contents:
- prepare_performance_data
- prepare_binned_classification_data
- prepare_performance_data_times
- prepare_binned_classification_data_times
- title: Performance Tables
desc: Summarize model performance across thresholds and time horizons.
contents:
- create_performance_table
- create_performance_table_times
- render_performance_table
- title: Discrimination
desc: ROC, precision-recall, gains, and lift visualizations.
contents:
- create_roc_curve
- create_roc_curve_times
- plot_roc_curve
- create_precision_recall_curve
- create_precision_recall_curve_times
- plot_precision_recall_curve
- create_gains_curve
- create_gains_curve_times
- plot_gains_curve
- create_lift_curve
- create_lift_curve_times
- plot_lift_curve
- title: Calibration
desc: Calibration visualizations for classification and time-to-event models. See Curve API Compatibility for time-dependent heuristic and horizon differences.
contents:
- create_calibration_curve
- create_calibration_curve_times
- title: Summary Reports
desc: Create historical R-backed reports or explicitly opt into canonical browser ReportSpec rendering.
contents:
- create_summary_report
- title: Utility
desc: Decision-curve analysis for classification and time-to-event models.
contents:
- create_decision_curve
- create_decision_curve_times
- plot_decision_curve