Skip to content

Commit

Permalink
Fixing outstanding sphinx errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mortonjt committed Nov 28, 2016
1 parent 8a356c9 commit a62acb3
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
Empty file added doc/source/_static/dummy
Empty file.
1 change: 1 addition & 0 deletions doc/source/sort.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. automodule:: gneiss.sort
38 changes: 38 additions & 0 deletions gneiss/regression/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
"""
Regression functions (:mod:`gneiss.regression`)
===============================================
.. currentmodule:: gneiss.regression
This module contains functions that can convert proportions
to balances for regression analysis
Functions
---------
.. autosummary::
:toctree: generated/
ols
mixedlm
Classes
-------
.. autosummary::
:toctree: generated/
RegressionResults
"""
# ----------------------------------------------------------------------------
# Copyright (c) 2016--, gneiss development team.
#
# Distributed under the terms of the GPLv3 License.
#
# The full license is in the file COPYING.txt, distributed with this software.
# ----------------------------------------------------------------------------

from ._summary import RegressionResults
from ._regression import ols, mixedlm

__all__ = ["ols", "mixedlm", "RegressionResults"]

0 comments on commit a62acb3

Please sign in to comment.