Skip to content

Commit

Permalink
Updated docs/source/*.rst files
Browse files Browse the repository at this point in the history
  • Loading branch information
christianjauregui committed May 1, 2020
1 parent cb38fc8 commit c8602a2
Show file tree
Hide file tree
Showing 6 changed files with 1,599 additions and 1,162 deletions.
2,444 changes: 1,432 additions & 1,012 deletions docs/source/applications/applications.rst

Large diffs are not rendered by default.

12 changes: 11 additions & 1 deletion docs/source/changes/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,17 @@ Version 0 (Beta)

Release 0.1.1
=============
The current release (as of April 25, 2020) is the initial release.
Initial release as of April 25, 2020.

Release 0.1.2
=============
Current release as of May 1, 2020.

* Resolved ``FutureWarning`` for deprecated ``pandas.np`` module used to fill missing values (i.e. ``nan`` or ``None``): replaced the use of ``value=pd.np.nan`` w/ ``value=np.nan`` in :obj:`pandas.DataFrame.fillna`.
* Fixed a bug that used the wrong instance method on a :class:`pandas.DatetimeIndex`. To check if a :class:`pandas.DatetimeIndex` value landed on a Saturday or Sunday, incorrect use of ``pandas.DatetimeIndex.weekday_name`` is replaced w/ :meth:`pandas.DatetimeIndex.day_name()`. The aforementioned is required when comparing datasets constructed at a weekly frequency to those from Ken French's online library (e.g. `Weekly Fama-French 3 Factors <https://mba.tuck.dartmouth.edu/pages/faculty/ken.french/Data_Library/f-f_factors.html>`_).
* Fixed a bug that **did not** exclude data for an `incomplete` final calendar year in the construction of annual datasets. For example, annual datasets constructed from a given start date to the present should end in 2019, not 2020.
* Added options to construct portfolios based on sorts not included in Ken French's online data library. A single anomaly characteristic or multiple anomaly characteristics can now be split into 4 (i.e. quartiles), 6, 8, 20, 25, or 100 (i.e. percentiles) buckets.




2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
author = 'Christian Jauregui'

# The full version, including alpha/beta/rc tags
version = '0.1.1'
version = '0.1.2'
release = version

# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit c8602a2

Please sign in to comment.