-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpipeline.json
117 lines (117 loc) · 6.22 KB
/
pipeline.json
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
115
116
117
{
"EX":{
"chartbook_format_version": "0.0.1",
"pipeline_name": "Pipeline Template - Example",
"pipeline_description": "Template for demonstrating how to construct a ChartBook pipeline. This template uses example charts and dataframes using public repo data.",
"lead_pipeline_developer": "Jeremiah Bejarano",
"contributors": [
"Jeremiah Bejarano",
"John Doe"
],
"software_modules_command": "module load anaconda3/3.11.4 TeXLive/2023 R/4.4.0 pandoc/3.1.6 gcc/14.1.0 stata/17",
"runs_on_grid_or_windows_or_other": "Windows/Linux/MacOS",
"git_repo_URL": "https://github.com/jmbejara/blank_project",
"README_file_path": "./README.md",
"dataframes": {
"repo_public": {
"dataframe_name": "Public Repo Data",
"short_description_df":"Public repo series and related economic and financial aggregates.",
"data_sources": [ "FRED", "Office of Financial Research"],
"data_providers": [ "FRED", "Office of Financial Research"],
"links_to_data_providers": ["https://fred.stlouisfed.org/", "https://www.financialresearch.gov/short-term-funding-monitor/api/"],
"topic_tags": ["Short Term Funding", "Repo"],
"type_of_data_access": "Public",
"data_license": "No",
"license_expiration_date": "N/A",
"need_to_contact_provider": "No",
"provider_contact_info": "",
"restriction_on_use": "No",
"how_is_pulled": "Web API via Python",
"path_to_parquet_data": "./_data/repo_public.parquet",
"path_to_excel_data": "./_data/repo_public.xlsx",
"date_col": "date",
"path_to_dataframe_doc": "./docs_src/dataframes/repo_public.md"
},
"repo_public_relative_fed": {
"dataframe_name": "Public Repo Data, Relative to the Fed Funds Target Midpoint",
"short_description_df":"Public repo series and related economic and financial aggregates. Rates are normalized relative to the midpoint of the Fed Funds target range.",
"data_sources": [ "FRED", "Office of Financial Research"],
"data_providers": [ "FRED", "Office of Financial Research"],
"links_to_data_providers": ["NA"],
"topic_tags": ["Short Term Funding", "Repo"],
"type_of_data_access": "Public",
"data_license": "No",
"license_expiration_date": "",
"need_to_contact_provider": "No",
"provider_contact_info": "",
"restriction_on_use": "No",
"how_is_pulled": "Web API via Python",
"path_to_parquet_data": "./_data/repo_public_relative_fed.parquet",
"path_to_excel_data": "./_data/repo_public_relative_fed.xlsx",
"date_col": "date",
"path_to_dataframe_doc": "./docs_src/dataframes/repo_public_relative_fed.md"
}
},
"charts": {
"repo_rates": {
"chart_name": "Repo Rates",
"short_description_chart":"SOFR, the Effective Funds Rate, and the Fed's Target Range",
"dataframe_id": "repo_public",
"topic_tags": ["Short Term Funding", "Repo"],
"data_series_start_date": "2/29/2012",
"data_frequency": "Daily",
"observation_period": "Weekday",
"lag_in_data_release": "One day",
"data_release_dates": "Weekday",
"seasonal_adjustment": "None",
"units": "Percent",
"data_series": "",
"mnemonic": "",
"path_to_html_chart": "./_output/repo_rates.html",
"path_to_excel_chart": "./src/repo_rates.xlsx",
"path_to_chart_doc": "./docs_src/charts/repo_rates.md"
},
"repo_rates_normalized": {
"chart_name": "Repo Rates, Normalized",
"short_description_chart":"Repo rates relative to the midpoint of the Fed's target range.",
"dataframe_id": "repo_public_relative_fed",
"topic_tags": ["Short Term Funding", "Repo"],
"data_series_start_date": "2/29/2012",
"data_frequency": "Daily",
"observation_period": "Weekday",
"lag_in_data_release": "One day",
"data_release_dates": "Weekday",
"seasonal_adjustment": "None",
"units": "Percent",
"data_series": "",
"mnemonic": "",
"path_to_html_chart": "./_output/repo_rates_normalized.html",
"path_to_excel_chart": "./src/repo_rates_normalized.xlsx",
"path_to_chart_doc": "./docs_src/charts/repo_rates_normalized.md"
},
"repo_rates_normalized_w_balance_sheet": {
"chart_name": "Repo Rate Spikes and the Fed's Balance Sheet",
"short_description_chart":"Repo rate spikes relative to the size of the Fed's balance sheet.",
"dataframe_id": "repo_public_relative_fed",
"topic_tags": ["Short Term Funding", "Repo", "Monetary Policy"],
"data_series_start_date": "2/29/2012",
"data_frequency": "Daily",
"observation_period": "Weekday",
"lag_in_data_release": "One day",
"data_release_dates": "Weekday",
"seasonal_adjustment": "None",
"units": "Percent (left) and Ratio (right)",
"data_series": "",
"mnemonic": "",
"path_to_html_chart": "./_output/repo_rates_normalized_w_balance_sheet.html",
"path_to_excel_chart": "./src/repo_rates_normalized_w_balance_sheet.xlsx",
"path_to_chart_doc": "./docs_src/charts/repo_rates_normalized_w_balance_sheet.md"
}
},
"notebooks": [
"_output/01_example_notebook_interactive.ipynb",
"_output/02_example_with_dependencies.ipynb",
"_output/03_public_repo_summary_charts.ipynb"
]
}
}