-
-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
why is the in_rate_base
records from the liabilities table all null from 2005-2020?
#3233
Comments
sigh.... it looks like this problem is coming straight from the dbf sqlite db @zaneselvans any ideas on checking the source of this? |
Ooooh, your plot is so pretty. |
You could use |
hahah 🎨 import mplcyberpunk
plt.style.use("cyberpunk") and thanks i'll take a peek |
I think I see what's happening: import dbfread
f1_bal_sheet_cr_dbf = dbfread.DBF(
"/tmp/UPLOADERS/FORM1/working/F1_11.DBF",
)
f1_bal_sheet_cr_dbf.load()
f1_bal_sheet_cr_df = pd.DataFrame(f1_bal_sheet_cr_dbf.records)
f1_bal_sheet_cr_df.info()
The starting and ending year balances are indeed f1_bal_sheet_cr_df.sample(20)
|
yea there is nothing in the ending balance in several years I just checked. There a far amount of sigh it looks like they reported all of the money as end of quarter balances instead of end of year balances for these years. |
I think that means we could integrate the end of quarter data as annual data |
Yeah, I think if you select ONLY the |
For some reason all of the records labeled
in_rate_base
from 2005 and 2020 are null:removing the
tags_in_rate_base=="yes"
mask, there is a ton of non-null data in the table..i will first check if this is a low label issue...
The text was updated successfully, but these errors were encountered: