ny_frb_as_dataframe 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.travis.yml +6 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Gemfile +8 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +4 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/lib/ny_frb_as_dataframe/hhdc.rb +176 -0
- data/lib/ny_frb_as_dataframe/version.rb +5 -0
- data/lib/ny_frb_as_dataframe.rb +9 -0
- data/ny_frb_as_dataframe.gemspec +39 -0
- data/sig/ny_frb_as_dataframe.rbs +4 -0
- metadata +117 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 037b31b64679ee33a6a8632a80e5a9fcc9d09939b9e45c8499a561c624f98816
|
4
|
+
data.tar.gz: 96a90d12efa519f0633a2162cf2f263769395cfcd2b992af3dbb235e37a0577c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 30eea77268f8ebab0ca02efbcfb1f5531046123738b1bb57796663cc9677ada2fbcdf61d688ce27a92352bb9c3bc6526b8ec37b82900d838575a60965466a803
|
7
|
+
data.tar.gz: d34d36721197a590d1e16c4fec87657e68c5723047a4c674ded9d6233cf4280f61929420d253ef7df9bb7a5afd1b5479f3b4df6ba95123e602d2b9faa8cdaab2
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CHANGELOG.md
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
|
6
|
+
|
7
|
+
We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
|
8
|
+
|
9
|
+
## Our Standards
|
10
|
+
|
11
|
+
Examples of behavior that contributes to a positive environment for our community include:
|
12
|
+
|
13
|
+
* Demonstrating empathy and kindness toward other people
|
14
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
15
|
+
* Giving and gracefully accepting constructive feedback
|
16
|
+
* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
|
17
|
+
* Focusing on what is best not just for us as individuals, but for the overall community
|
18
|
+
|
19
|
+
Examples of unacceptable behavior include:
|
20
|
+
|
21
|
+
* The use of sexualized language or imagery, and sexual attention or
|
22
|
+
advances of any kind
|
23
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
24
|
+
* Public or private harassment
|
25
|
+
* Publishing others' private information, such as a physical or email
|
26
|
+
address, without their explicit permission
|
27
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
28
|
+
professional setting
|
29
|
+
|
30
|
+
## Enforcement Responsibilities
|
31
|
+
|
32
|
+
Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
|
33
|
+
|
34
|
+
Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
|
35
|
+
|
36
|
+
## Scope
|
37
|
+
|
38
|
+
This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
|
39
|
+
|
40
|
+
## Enforcement
|
41
|
+
|
42
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at bill.mckinnon@bmck.org. All complaints will be reviewed and investigated promptly and fairly.
|
43
|
+
|
44
|
+
All community leaders are obligated to respect the privacy and security of the reporter of any incident.
|
45
|
+
|
46
|
+
## Enforcement Guidelines
|
47
|
+
|
48
|
+
Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
|
49
|
+
|
50
|
+
### 1. Correction
|
51
|
+
|
52
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
|
53
|
+
|
54
|
+
**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
|
55
|
+
|
56
|
+
### 2. Warning
|
57
|
+
|
58
|
+
**Community Impact**: A violation through a single incident or series of actions.
|
59
|
+
|
60
|
+
**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
|
61
|
+
|
62
|
+
### 3. Temporary Ban
|
63
|
+
|
64
|
+
**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
|
65
|
+
|
66
|
+
**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
|
67
|
+
|
68
|
+
### 4. Permanent Ban
|
69
|
+
|
70
|
+
**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
|
71
|
+
|
72
|
+
**Consequence**: A permanent ban from any sort of public interaction within the community.
|
73
|
+
|
74
|
+
## Attribution
|
75
|
+
|
76
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
|
77
|
+
available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
|
78
|
+
|
79
|
+
Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
|
80
|
+
|
81
|
+
[homepage]: https://www.contributor-covenant.org
|
82
|
+
|
83
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
84
|
+
https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2024 Bill McKinnon
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# NyFrbAsDataframe
|
2
|
+
|
3
|
+
Up to date remote economic data access for ruby, using Polars dataframes.
|
4
|
+
|
5
|
+
This package will fetch economic and financial information from the Federal Reserve Bank of Philadelphia, and return the results as a Polars dataframe.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'ny_frb_as_dataframe'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle install
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install ny_frb_as_dataframe
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/ny_frb_as_dataframe. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/ny_frb_as_dataframe/blob/main/CODE_OF_CONDUCT.md).
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
40
|
+
|
41
|
+
## Code of Conduct
|
42
|
+
|
43
|
+
Everyone interacting in the NyFrbAsDataframe project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/ny_frb_as_dataframe/blob/main/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require "bundler/setup"
|
5
|
+
require "ny_frb_as_dataframe"
|
6
|
+
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
9
|
+
|
10
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
11
|
+
# require "pry"
|
12
|
+
# Pry.start
|
13
|
+
|
14
|
+
require "irb"
|
15
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,176 @@
|
|
1
|
+
require 'polars-df'
|
2
|
+
require 'httparty'
|
3
|
+
require 'simple_xlsx_reader'
|
4
|
+
require 'csv'
|
5
|
+
require 'active_support/core_ext/date/calculations'
|
6
|
+
require 'active_support/core_ext/string/conversions'
|
7
|
+
|
8
|
+
|
9
|
+
module NyFrbAsDataframe
|
10
|
+
class Hhdc
|
11
|
+
|
12
|
+
include ::HTTParty
|
13
|
+
base_uri 'https://www.newyorkfed.org/medialibrary/interactives/householdcredit/data/xls/'
|
14
|
+
|
15
|
+
attr_reader :tag
|
16
|
+
|
17
|
+
def initialize(series = nil)
|
18
|
+
@tag = series
|
19
|
+
end
|
20
|
+
|
21
|
+
def fetch(start = nil, fin = nil)
|
22
|
+
df = nil
|
23
|
+
|
24
|
+
SimpleXlsxReader.configuration.auto_slurp = true
|
25
|
+
|
26
|
+
Tempfile.open(['foo', '.xlsx'], '/tmp', binmode: true) do |f|
|
27
|
+
qtr = Date.today.year * 4 + Date.today.quarter
|
28
|
+
dta = nil
|
29
|
+
resp = nil
|
30
|
+
|
31
|
+
loop do
|
32
|
+
u = "https://www.newyorkfed.org/medialibrary/interactives/householdcredit/data/xls/hhd_c_report_#{qtr.div(4)}q#{qtr.modulo(4)+1}.xlsx"
|
33
|
+
dta = self.class.get(u)
|
34
|
+
resp = dta.parsed_response
|
35
|
+
break if (dta.response.code.to_i == 200 && dta.parsed_response.encoding.to_s == "ASCII-8BIT")
|
36
|
+
qtr -= 1
|
37
|
+
end
|
38
|
+
f.write(resp)
|
39
|
+
f.rewind
|
40
|
+
|
41
|
+
xlsx_file = SimpleXlsxReader.open(f.path)
|
42
|
+
|
43
|
+
col_nm_hsh =
|
44
|
+
{
|
45
|
+
'Total Debt Balance and Its Composition' => {'Mortgage' => 'Mort Debt Balance ($T)', 'HE Revolving' => 'HELOC Debt Balance ($T)', 'Auto Loan' => 'Car Loan Debt Balance ($T)', 'Credit Card' => 'CC Debt Balance ($T)', 'Student Loan' => 'Student Debt Balance ($T)', 'Other' => 'Other Debt Balance ($T)', 'Total' => 'Total Debt Balance ($T)'},
|
46
|
+
'Number of Accounts by Loan Type' => {'Auto Loan' => 'Num Car Loan Accts (M)', 'Credit Card' => 'Num CC Accts (M)', 'Mortgage' => 'Num Mort Accts (M)', 'HE Revolving' => 'Num HELOC Accts (M)'},
|
47
|
+
'Total Number of New and Closed Accounts and Consumer Credit Inquiries' => {'inquiry within 6 mo' => 'Num Credit Inquiries and New Accts', 'closed within 12 mo' => 'Num New Credit Accts Closed in 12 mo', 'open within 12 mo' => 'Num New Credit Accts Open after 12 mo'},
|
48
|
+
'Mortgage Origination Volume by Riskscore' => {'<620' => 'New Mort w Riskscore <620 ($B)','620-659' => 'New Mort w Riskscore 620-659 ($B)','660-719' => 'New Mort w Riskscore 660-719 ($B)','720-759' => 'New Mort w Riskscore 720-759 ($B)','760+' => 'New Mort w Riskscore 760+ ($B)','TOTAL' => 'New Mort ($B)'},
|
49
|
+
'Distribution of Riskscore of Mortgage Originations' => {'Median' => 'Median Riskscore for New Mort', '25th percentile' => 'Bottom 25%ile Riskscore for New Mort', '10th percentile' => 'Bottom 10%ile Riskscore for New Mort'},
|
50
|
+
'Auto Loan Origination Volume by Riskscore' => {'<620' => 'New Car Loans w Riskscore <620 ($B)','620-659' => 'New Car Loans w Riskscore 620-659 ($B)','660-719' => 'New Car Loans w Riskscore 660-719 ($B)','720-759' => 'New Car Loans w Riskscore 720-759 ($B)','760+' => 'New Car Loans w Riskscore 760+ ($B)','TOTAL' => 'All New Car Loans ($B)'},
|
51
|
+
'Distribution of Riskscore of Auto Loan Originations' => {'Median' => 'Median Riskscore for New Car Loan', '25th percentile' => 'Bottom 25%ile Riskscore for New Car Loan', '10th percentile' => 'Bottom 10%ile Riskscore for New Car Loan'},
|
52
|
+
'Credit Limit and Balance for Credit Cards and HE Revolving' => {'Credit Card Balance' => 'CC Balance ($T)', 'Credit Card Available Credit' => 'CC Avail Credit ($T)', 'Credit Card Limit' => 'CC Limit ($T)', 'HE Revolving Balance' => 'HELOC Balance ($T)', 'HE Revolving Available Credit' => 'HELOC Avail Credit ($T)', 'HE Revolving Limit' => 'HELOC Limit ($T)'},
|
53
|
+
'Total Balance by Delinquency Status' => {'Current' => '% Balances Current', '30 days late' => '% Balances 30d late', '60 days late' => '% Balances 60d late', '90 days late' => '% Balances 90d late', '120+ days late' => '% Balances 120+d late', 'Severely Derogatory' => '% Balances Severely Impair'},
|
54
|
+
'Percent of Balance 90+ Days Delinquent by Loan Type' => {'MORTGAGE' => '% Mort Bal 90d+ late', 'HELOC' => '% HELOC Bal 90d+ late', 'AUTO' => '% Car Loan Bal 90d+ late', 'CC' => '% CC Bal 90d+ late', 'STUDENT LOAN' => '% Student Loan Bal 90d+ late', 'OTHER' => '% Other Bal 90d+ late', 'ALL' => '% All Bal 90d+ late'},
|
55
|
+
'New Delinquent* Balances by Loan Type' => {'AUTO' => '% Car Loan Bal 0d->30d+ Late', 'CC' => '% CC Bal 0d->30d+ Late', 'MORTGAGE' => '% Mort Bal 0d->30d+ Late', 'HELOC' => '% HELOC Bal 0d->30d+ Late', 'STUDENT LOAN' => '% Student Loan Bal 0d->30d+ Late', 'OTHER' => '% Other Bal 0d->30d+ Late', 'Total' => '% All Bal 0d->30d+ Late'},
|
56
|
+
'New Seriously Delinquent* Balances by Loan Type' => {'AUTO' => '% Car Loan Bal ->90d+ Late', 'CC' => '% CC Bal ->90d+ Late', 'MORTGAGE' => '% Mort Bal ->90d+ Late', 'HELOC' => '% HELOC Bal ->90d+ Late', 'STUDENT LOAN' => '% Student Loan Bal ->90d+ Late', 'OTHER' => '% Other Bal ->90d+ Late', 'ALL' => '% All Bal ->90d+ Late'},
|
57
|
+
'Quarterly Transition Rates for Current Mortgage Accounts' => {'To 30-60 days late' => 'Qtrly % Mort 0->30-60d late', 'To 90+ days Late' => 'Qtrly % Mort ->90d+ Late'},
|
58
|
+
'Quarterly Transition Rates for 30-60 Day Late Mortgage Accounts' => {'To current' => 'Qtrly % Mort % 30-60d->0d Late', 'To 90+ days Late' => 'Qtrly % Mort 30-60d->90d+ Late'},
|
59
|
+
'Number of Consumers with New Foreclosures and Bankruptcies' => {'foreclosure' => 'Num Consumers w New Foreclosure', 'bankruptcy' => 'Num Consumers w New Bankruptcy'},
|
60
|
+
'Third Party Collections' => {'proportion of consumers with collection' => '% Consumers w Collection', 'average collection amount per person with item' => 'Avg Collection Amt'},
|
61
|
+
'Total Debt Balance by Age' => {'18-29' => 'Avg Total Debt Bal for 18-29 yo ($T)', '30-39' => 'Avg Total Debt Bal for 30-39 yo ($T)', '40-49' => 'Avg Total Debt Bal for 40-49 yo ($T)', '50-59' => 'Avg Total Debt Bal for 50-59 yo ($T)', '60-69' => 'Avg Total Debt Bal for 60-69 yo ($T)', '70+' => 'Avg Total Debt Bal for 70+ yo ($T)'},
|
62
|
+
'Auto Loan Originations By Age' => {'18-29' => 'New Car Loans for 18-29 yo ($B)', '30-39' => 'New Car Loans for 30-39 yo ($B)', '40-49' => 'New Car Loans for 40-49 yo ($B)', '50-59' => 'New Car Loans for 50-59 yo ($B)', '60-69' => 'New Car Loans for 60-69 yo ($B)', '70+' => 'New Car Loans for 70+ yo ($B)'},
|
63
|
+
'Total Mortgage Orginations by Age' => {'18-29' => 'New Mort for 18-29 yo ($B)', '30-39' => 'New Mort for 30-39 yo ($B)', '40-49' => 'New Mort for 40-49 yo ($B)', '50-59' => 'New Mort for 50-59 yo ($B)', '60-69' => 'New Mort for 60-69 yo ($B)', '70+' => 'New Mort for 70+ yo ($B)'},
|
64
|
+
'Transition into Serious Delinquency (90+) by Age' => {'18-29' => 'Qtrly % ->90d+ late for 18-29 yo', '30-39' => 'Qtrly % ->90d+ late for 30-39 yo', '40-49' => 'Qtrly % ->90d+ late for 40-49 yo', '50-59' => 'Qtrly % ->90d+ late for 50-59 yo', '60-69' => 'Qtrly % ->90d+ late for 60-69 yo', '70+' => 'Qtrly % ->90d+ late for 70+ yo', 'all' => 'Qtrly % ->90d+ late'},
|
65
|
+
'Transition into Serious Delinquency (90+) for Mortgages by Age' => {'18-29' => 'Qtrly % Mort ->90d+ late for 18-29 yo', '30-39' => 'Qtrly % Mort ->90d+ late for 30-39 yo', '40-49' => 'Qtrly % Mort ->90d+ late for 40-49 yo', '50-59' => 'Qtrly % Mort ->90d+ late for 50-59 yo', '60-69' => 'Qtrly % Mort ->90d+ late for 60-69 yo', '70+' => 'Qtrly % Mort ->90d+ late for 70+ yo', 'all' => 'Qtrly % Mort ->90d+ late'},
|
66
|
+
'Transition into Serious Delinquency (90+) for Auto Loans by Age' => {'18-29' => 'Qtrly % Car Loans ->90d+ late for 18-29 yo', '30-39' => 'Qtrly % Car Loans ->90d+ late for 30-39 yo', '40-49' => 'Qtrly % Car Loans ->90d+ late for 40-49 yo', '50-59' => 'Qtrly % Car Loans ->90d+ late for 50-59 yo', '60-69' => 'Qtrly % Car Loans ->90d+ late for 60-69 yo', '70+' => 'Qtrly % Car Loans ->90d+ late for 70+ yo', 'all' => 'Qtrly % Car Loans ->90d+ late'},
|
67
|
+
'Transition into Serious Delinquency (90+) for Credit Cards by Age' => {'18-29' => 'Qtrly % CC ->90d+ late for 18-29 yo', '30-39' => 'Qtrly % CC ->90d+ late for 30-39 yo', '40-49' => 'Qtrly % CC ->90d+ late for 40-49 yo', '50-59' => 'Qtrly % CC ->90d+ late for 50-59 yo', '60-69' => 'Qtrly % CC ->90d+ late for 60-69 yo', '70+' => 'Qtrly % CC ->90d+ late for 70+ yo', 'all' => 'Qtrly % CC ->90d+ late'},
|
68
|
+
'Transition into Serious Delinquency (90+) for Student Loans by Age' => {'18-29' => 'Qtrly % Student Loan ->90d+ late for 18-29 yo', '30-39' => 'Qtrly % Student Loan ->90d+ late for 30-39 yo', '40-49' => 'Qtrly % Student Loan ->90d+ late for 40-49 yo', '50-59' => 'Qtrly % Student Loan ->90d+ late for 50-59 yo', 'all' => 'Qtrly % Student Loan ->90d+ late'},
|
69
|
+
'New Foreclosures By Age' => {'18-29' => 'New Foreclosures for 18-29 yo (000)', '30-39' => 'New Foreclosures for 30-39 yo (000)', '40-49' => 'New Foreclosures for 40-49 yo (000)', '50-59' => 'New Foreclosures for 50-59 yo (000)', '60-69' => 'New Foreclosures for 60-69 yo (000)', '70+' => 'New Foreclosures for 70+ yo (000)'},
|
70
|
+
'New Bankruptcy By Age' => {'18-29' => 'New Bankruptcies for 18-29 yo (000)', '30-39' => 'New Bankruptcies for 30-39 yo (000)', '40-49' => 'New Bankruptcies for 40-49 yo (000)', '50-59' => 'New Bankruptcies for 50-59 yo (000)', '60-69' => 'New Bankruptcies for 60-69 yo (000)', '70+' => 'New Bankruptcies for 70+ yo (000)'}
|
71
|
+
}
|
72
|
+
|
73
|
+
# Polars::Config.set_tbl_cols(-1)
|
74
|
+
Polars::Config.set_tbl_rows(-1)
|
75
|
+
|
76
|
+
done = false
|
77
|
+
xlsx_file.sheets.each do |sht| # Begin per-sheet analysis
|
78
|
+
nm = sht.name
|
79
|
+
|
80
|
+
begin
|
81
|
+
_ = sht.rows
|
82
|
+
pg_nm_text = sht.rows
|
83
|
+
pg_nm_text = pg_nm_text.first
|
84
|
+
rescue
|
85
|
+
begin
|
86
|
+
pg_nm_text = sht.rows.first
|
87
|
+
rescue
|
88
|
+
done = true
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
break if done == true
|
93
|
+
|
94
|
+
pg_nm_text = pg_nm_text.first
|
95
|
+
next unless col_nm_hsh.keys.include?(pg_nm_text)
|
96
|
+
|
97
|
+
header_found = false
|
98
|
+
csv_txt = []
|
99
|
+
|
100
|
+
sht.rows.each do |row| # Begin per-line analysis
|
101
|
+
r = row
|
102
|
+
|
103
|
+
if header_found == false
|
104
|
+
if r.length > (r - col_nm_hsh[pg_nm_text].keys).length
|
105
|
+
header_found = true
|
106
|
+
0.upto(r.length-1).to_a.each do |ndex|
|
107
|
+
if ndex.zero?
|
108
|
+
r[ndex] = 'Timestamps_'
|
109
|
+
else
|
110
|
+
col_nm_hsh[pg_nm_text].keys.each do |k|
|
111
|
+
r[ndex] = col_nm_hsh[pg_nm_text][k] if r[ndex] == k
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
next if header_found == false
|
118
|
+
end
|
119
|
+
|
120
|
+
break if r.compact.length.zero?
|
121
|
+
|
122
|
+
# puts "#{__FILE__}:#{__LINE__} r = >#{r.inspect}<"
|
123
|
+
if /(?<yr>\d{2}):Q(?<qtr>\d)/ =~ r[0].to_s
|
124
|
+
yr = yr.to_i + 2000
|
125
|
+
yr -= 100 if yr > Date.today.year
|
126
|
+
dte = Date.new(yr, qtr.to_i * 3 - 2, 1)
|
127
|
+
r[0] = dte
|
128
|
+
elsif (r[0].to_date rescue false)
|
129
|
+
r[0] = r[0].to_date.beginning_of_quarter
|
130
|
+
end
|
131
|
+
|
132
|
+
next if r.map{|rr| (rr.nil? ? '' : rr.to_s).length }.sum.zero?
|
133
|
+
rr = r.map{|c| c.nil? ? '' : c}
|
134
|
+
rr = rr.reverse.drop_while(&:nil?).reverse
|
135
|
+
next if rr.compact.length.zero?
|
136
|
+
csv_txt << rr.join(',')
|
137
|
+
|
138
|
+
end # End per-line analysis
|
139
|
+
|
140
|
+
csv_dta = CSV.parse(csv_txt.join("\n"), headers: true, converters: [:numeric])
|
141
|
+
csv_dta.delete(nil)
|
142
|
+
|
143
|
+
keys = csv_dta.headers.compact.intersection(['Timestamps_'] + col_nm_hsh[pg_nm_text].values)
|
144
|
+
vals = csv_dta.to_a[1..-1].map{|r| (r + [''] * keys.length)[0..keys.length-1] }.transpose
|
145
|
+
|
146
|
+
tmp_df = {}; (0..(keys.length-1)).to_a.each{|i| tmp_df[keys[i]] = vals[i]}
|
147
|
+
|
148
|
+
tmp_df = Polars::DataFrame.new(tmp_df)
|
149
|
+
tmp_df = tmp_df.filter(Polars.col('Timestamps_') <= fin.to_date) unless start.nil?
|
150
|
+
tmp_df = tmp_df.filter(Polars.col('Timestamps_') >= start.to_date) unless fin.nil?
|
151
|
+
tmp_df.sort!('Timestamps_')
|
152
|
+
|
153
|
+
if df.nil?
|
154
|
+
df = tmp_df.dup
|
155
|
+
else
|
156
|
+
df = df.join(tmp_df, on: 'Timestamps_', how: 'full')
|
157
|
+
|
158
|
+
tmp_timestamps = df['Timestamps_'].to_a
|
159
|
+
tmp_timestamps__ = df['Timestamps__right'].to_a
|
160
|
+
tmp_timestamps.length.times.each {|ndex| tmp_timestamps[ndex] ||= tmp_timestamps__[ndex] }
|
161
|
+
df.replace('Timestamps_', Polars::Series.new(tmp_timestamps))
|
162
|
+
df = df.drop(['Timestamps__right'])
|
163
|
+
end
|
164
|
+
df = df.sort('Timestamps_')
|
165
|
+
|
166
|
+
end # End per-sheet analysis
|
167
|
+
|
168
|
+
s = Polars::Series.new('Timestamps', df['Timestamps_'].to_a)
|
169
|
+
df = df.insert_column(0,s).drop(['Timestamps_'])
|
170
|
+
end
|
171
|
+
|
172
|
+
df = df.drop(df.columns - ['Timestamps', @tag]) unless @tag.nil? || !df.columns.include?(@tag)
|
173
|
+
df
|
174
|
+
end
|
175
|
+
end
|
176
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
|
2
|
+
require_relative "lib/ny_frb_as_dataframe/version"
|
3
|
+
|
4
|
+
Gem::Specification.new do |spec|
|
5
|
+
spec.name = "ny_frb_as_dataframe"
|
6
|
+
spec.version = NyFrbAsDataframe::VERSION
|
7
|
+
spec.authors = ["Bill McKinnon"]
|
8
|
+
spec.email = ["bill.mckinnon@bmck.org"]
|
9
|
+
|
10
|
+
spec.summary = "Alternative economic and financial data from the NY FRB"
|
11
|
+
spec.description = "Alternative economic and financial data from the NY FRB"
|
12
|
+
spec.homepage = "https://github.com/bmck/ny_frb_as_dataframe"
|
13
|
+
spec.license = "MIT"
|
14
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")
|
15
|
+
|
16
|
+
|
17
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
18
|
+
spec.metadata["source_code_uri"] = "https://github.com/bmck/ny_frb_as_dataframe"
|
19
|
+
spec.metadata["changelog_uri"] = "https://github.com/bmck/ny_frb_as_dataframe/CHANGELOG.md"
|
20
|
+
|
21
|
+
# Specify which files should be added to the gem when it is released.
|
22
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
23
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
24
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
25
|
+
end
|
26
|
+
spec.bindir = "exe"
|
27
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
28
|
+
spec.require_paths = ["lib"]
|
29
|
+
|
30
|
+
# Uncomment to register a new dependency of your gem
|
31
|
+
# spec.add_dependency "example-gem", "~> 1.0"
|
32
|
+
|
33
|
+
# For more information and examples about making a new gem, checkout our
|
34
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
35
|
+
spec.add_dependency 'polars-df'
|
36
|
+
spec.add_dependency 'httparty'
|
37
|
+
spec.add_dependency 'simple_xlsx_reader'
|
38
|
+
spec.add_dependency 'activesupport'
|
39
|
+
end
|
metadata
ADDED
@@ -0,0 +1,117 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ny_frb_as_dataframe
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Bill McKinnon
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-08-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: polars-df
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: httparty
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: simple_xlsx_reader
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: activesupport
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: Alternative economic and financial data from the NY FRB
|
70
|
+
email:
|
71
|
+
- bill.mckinnon@bmck.org
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- ".travis.yml"
|
78
|
+
- CHANGELOG.md
|
79
|
+
- CODE_OF_CONDUCT.md
|
80
|
+
- Gemfile
|
81
|
+
- LICENSE.txt
|
82
|
+
- README.md
|
83
|
+
- Rakefile
|
84
|
+
- bin/console
|
85
|
+
- bin/setup
|
86
|
+
- lib/ny_frb_as_dataframe.rb
|
87
|
+
- lib/ny_frb_as_dataframe/hhdc.rb
|
88
|
+
- lib/ny_frb_as_dataframe/version.rb
|
89
|
+
- ny_frb_as_dataframe.gemspec
|
90
|
+
- sig/ny_frb_as_dataframe.rbs
|
91
|
+
homepage: https://github.com/bmck/ny_frb_as_dataframe
|
92
|
+
licenses:
|
93
|
+
- MIT
|
94
|
+
metadata:
|
95
|
+
homepage_uri: https://github.com/bmck/ny_frb_as_dataframe
|
96
|
+
source_code_uri: https://github.com/bmck/ny_frb_as_dataframe
|
97
|
+
changelog_uri: https://github.com/bmck/ny_frb_as_dataframe/CHANGELOG.md
|
98
|
+
post_install_message:
|
99
|
+
rdoc_options: []
|
100
|
+
require_paths:
|
101
|
+
- lib
|
102
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: 3.0.0
|
107
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0'
|
112
|
+
requirements: []
|
113
|
+
rubygems_version: 3.4.19
|
114
|
+
signing_key:
|
115
|
+
specification_version: 4
|
116
|
+
summary: Alternative economic and financial data from the NY FRB
|
117
|
+
test_files: []
|