Datasets:

Modalities:
Tabular
Text
Formats:
parquet
ArXiv:
DOI:
Libraries:
Datasets
Dask
License:
memoryfull commited on
Commit
f4116e3
·
verified ·
1 Parent(s): 31000ac

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -1
README.md CHANGED
@@ -150,10 +150,24 @@ The data is provided in Apache Parquet format. This is a structured, column-orie
150
 
151
  ## Version and Update Policy
152
 
153
- Version (SemVer): `1.0.0`.
154
 
155
  We intend to update the RFSD annualy as the data becomes available, in other words when most of the firms have their statements filed with the Federal Tax Service. The official deadline for filing of previous year statements is April, 1. However, every year a portion of firms either fails to meet the deadline or submits corrections afterwards. Filing continues up to the very end of the year but after the end of April this stream quickly thins out. Nevertheless, there is obviously a trade-off between minimization of data completeness and version availability. We find it a reasonable compromise to query new data in early June, since on average by the end of May 96.7% statements are already filed, including 86.4% of all the correcting filings. We plan to make a new version of RFSD available by July, 2025.
156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
157
  ## Licence
158
  <a rel="license" href="https://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />
159
  Creative Commons License Attribution 4.0 International (CC BY 4.0).
 
150
 
151
  ## Version and Update Policy
152
 
153
+ Version (SemVer): `1.0.1`.
154
 
155
  We intend to update the RFSD annualy as the data becomes available, in other words when most of the firms have their statements filed with the Federal Tax Service. The official deadline for filing of previous year statements is April, 1. However, every year a portion of firms either fails to meet the deadline or submits corrections afterwards. Filing continues up to the very end of the year but after the end of April this stream quickly thins out. Nevertheless, there is obviously a trade-off between minimization of data completeness and version availability. We find it a reasonable compromise to query new data in early June, since on average by the end of May 96.7% statements are already filed, including 86.4% of all the correcting filings. We plan to make a new version of RFSD available by July, 2025.
156
 
157
+ ## Changelog
158
+
159
+ All notable changes to this project will be documented below. The format is based on [Keep a Changelog](http://keepachangelog.com/).
160
+
161
+ ## [1.0.1] - 2025-05-13
162
+
163
+ ### Fixed
164
+
165
+ - Fixed a bug in summation of negative lines when calculating line 2400 (net profit). The reason for the incorrect values was the sign with which the profit tax (line 2410) enters the calculation for adjusting net profit (2400). In the reporting forms, there are lines with values enclosed in parentheses: this means that they can only be negative, but they need to be entered as positive. However, it sometimes happens that companies enter negative values in these fields. To correct this, during the data preparation stage, we make all values of the ()-ed lines positive. At first, we thought it was there that the problem occurred, because we missed line 2410 while compiling the list of ()-ed lines. But this was not the case: the list is correct, and line 2410 can indeed be both negative and positive — but only in the full statement form. In simplified form it is strictly negative, in parentheses. This is a useful side finding: now the correction of the ()-ed lines occurs separately for the firms that use simplified and non-simplified forms for their statements. The error was further down the process, in the values adjustment part, where we check summary lines like 2400 against their recalculated values and change them if the difference is more than 4000 rubles. To subtract the profit tax from profit, we multiplied line 2410 by -1, as if it were ()-ed while it wasn't. We corrected this and changed the logic for adjusting line 2410 itself: previously, we adjusted it based on lines 2411 and 2412 only starting from 2020, when its content changed, but now the logic is expanded to all years. This should help with companies that were the first to implement the changes back in 2019, and it does not break anything for others.
166
+
167
+ - Fixed a bug in adjustment of line 1300 (total capital and reserves) and 2500 (result of the period).
168
+
169
+ The updated lines 2400 are quite different from the original values. The value of line 2400 changed in 6-11% of observations in 2011-2018 and in about 25% observations in 2019-2023, the summed difference in the original and new values ranges from 5% to 110% depending on year. Fix for signs inconsistency implies revising scripts for all calculations where negative-only, those ()-ed in statement forms, variables were used.
170
+
171
  ## Licence
172
  <a rel="license" href="https://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />
173
  Creative Commons License Attribution 4.0 International (CC BY 4.0).