-
Notifications
You must be signed in to change notification settings - Fork 171
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
List of general functions and their documentation isn't showing up in the documentation #1146
Comments
I can make sure The lower version use A quickly fix this we can As the developer said,
|
I know little about mkdocs, I use sphinx a lot. Method chaining usage example:
- >>> import pandas as pd
- >>> import janitor.finance
- >>> df = pd.DataFrame({"profit":[100.10, 200.20, 300.30, 400.40, 500.50]})
- >>> df
- profit
- 0 100.1
- 1 200.2
- 2 300.3
- 3 400.4
- 4 500.5
- >>> df.inflate_currency(
- ... column_name='profit',
- ... country='USA',
- ... currency_year=2015,
- ... to_year=2018,
- ... make_new_column=True
- ... )
- profit profit_2018
- 0 100.1 106.050596
- 1 200.2 212.101191
- 2 300.3 318.151787
- 3 400.4 424.202382
- 4 500.5 530.252978
+ ```python
+ >>> import pandas as pd
+ >>> import janitor.finance
+ >>> df = pd.DataFrame({"profit":[100.10, 200.20, 300.30, 400.40, 500.50]})
+ >>> df
+ profit
+ 0 100.1
+ 1 200.2
+ 2 300.3
+ 3 400.4
+ 4 500.5
+ >>> df.inflate_currency(
+ ... column_name='profit',
+ ... country='USA',
+ ... currency_year=2015,
+ ... to_year=2018,
+ ... make_new_column=True
+ ... )
+ profit profit_2018
+ 0 100.1 106.050596
+ 1 200.2 212.101191
+ 2 300.3 318.151787
+ 3 400.4 424.202382
+ 4 500.5 530.252978
+ ``` or Method chaining usage example:
- >>> import pandas as pd
- >>> import janitor.finance
- >>> df = pd.DataFrame({"profit":[100.10, 200.20, 300.30, 400.40, 500.50]})
- >>> df
- profit
- 0 100.1
- 1 200.2
- 2 300.3
- 3 400.4
- 4 500.5
- >>> df.inflate_currency(
- ... column_name='profit',
- ... country='USA',
- ... currency_year=2015,
- ... to_year=2018,
- ... make_new_column=True
- ... )
- profit profit_2018
- 0 100.1 106.050596
- 1 200.2 212.101191
- 2 300.3 318.151787
- 3 400.4 424.202382
- 4 500.5 530.252978
+ >>> import pandas as pd
+ >>> import janitor.finance
+ >>> df = pd.DataFrame({"profit":[100.10, 200.20, 300.30, 400.40, 500.50]})
+ >>> df
+ profit
+ 0 100.1
+ 1 200.2
+ 2 300.3
+ 3 400.4
+ 4 500.5
+ >>> df.inflate_currency(
+ ... column_name='profit',
+ ... country='USA',
+ ... currency_year=2015,
+ ... to_year=2018,
+ ... make_new_column=True
+ ... )
+ profit profit_2018
+ 0 100.1 106.050596
+ 1 200.2 212.101191
+ 2 300.3 318.151787
+ 3 400.4 424.202382
+ 4 500.5 530.252978 |
thanks @DavidHinchee for the observation. @Zeroto521 @ericmjl should we revert temporarily to |
@Zeroto521 something like this: link |
I am pushing up a temporary fix for the docs; we will pin |
@DavidHinchee kindly have a look now; the documentation should render completely |
Confirmed that the decimation renders completely for me. Thanks and kudos to the development team. You’ve created a package that’s truly useful to me as a new pandas/python coder.
… On Aug 14, 2022, at 8:54 PM, Samuel Oranyeli ***@***.***> wrote:
@DavidHinchee <https://github.com/DavidHinchee> kindly have a look now; the documentation should render completely
—
Reply to this email directly, view it on GitHub <#1146 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/APK5DWMHPPU5I7DXCZAYMATVZGPOJANCNFSM56NOBSHQ>.
You are receiving this because you were mentioned.
|
Thank you, @DavidHinchee, for letting us know! The positive feedback is encouraging! |
There has another reason need to set the versioning feature for the docs website. #1145 |
"General Functions" link on this page doesn't open the list of general functions and their documentation:
This link: https://pyjanitor-devs.github.io/pyjanitor/api/functions/
and this link: https://pyjanitor-devs.github.io/pyjanitor/api/functions/#janitor.functions--general-functions
display same page.
All other "API Reference" subsection links--Biology, Chemistry, Engineering, etc.--display functions & descriptions, but not the General
The text was updated successfully, but these errors were encountered: