Skip to content

Commit 1d8043a

Browse files
authored
Merge pull request #18 from CyberAgentAILab/fix/plot-import
Import plot function in get-started guide
2 parents 36dd0f7 + 963617d commit 1d8043a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Thank you for considering contributing to this project! Here are some guidelines
44

55
## How can I contribute to this project?
66
### Reporting Bugs
7-
If you find a bug, please report it by opening an issue in the issue tracker. Provide as much detail as possible to help us understand and reproduce the issue:
7+
If you find a bug, please report it by opening an issue in the Github issue tracker. Provide as much detail as possible to help us understand and reproduce the issue:
88
- A clear and descriptive title.
99
- A detailed description of the problem.
1010
- Steps to reproduce the issue.
@@ -28,7 +28,7 @@ Pull requests are welcome! If you plan to make significant changes, please open
2828
- Open a pull request in the original repository.
2929

3030
## Development
31-
Here are the basic commands you can use to develop this package.
31+
Important commands and major dependencies are managed in Pipenv. Here are the basic commands you can use to develop this package.
3232

3333
### Install Pipenv
3434
If you don't have `pipenv` installed, you can install it using `pip`:

docs/source/get_started.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ Then, let's build an empirical cumulative distribution function (CDF).
5555
.. code-block:: python
5656
5757
import dte_adj
58+
from dte_adj.plot import plot
59+
5860
estimator = dte_adj.SimpleDistributionEstimator()
5961
estimator.fit(X, D, Y)
6062
cdf = estimator.predict(D, Y)

0 commit comments

Comments
 (0)