Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/source/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ It is mainly dedicated to help new users to familiarize with it and others to re
./tutorial/tutorial_transforming.ipynb
./tutorial/tutorial_indexing.ipynb
./tutorial/tutorial_arithmetic_op_and_aggregation.ipynb
./tutorial/tutorial_string_syntax.ipynb
./tutorial/tutorial_plotting.ipynb
./tutorial/tutorial_miscellaneous.ipynb
./tutorial/tutorial_sessions.ipynb
Expand Down
10 changes: 5 additions & 5 deletions doc/source/tutorial/tutorial_IO.ipyml
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ cells:


- code: |
read_hdf(filepath_hdf, key='deaths', sort_rows=True)
read_hdf(filepath_hdf, key='deaths').sort_axes()


- markdown: |
Expand Down Expand Up @@ -574,17 +574,17 @@ cells:
- code: |
# create a new Session object and load all arrays, axes, groups and metadata
# from all CSV files located in the passed directory
csv_dir = get_example_filepath('population_session')
csv_dir = get_example_filepath('demography_eurostat')
session = Session(csv_dir)

# create a new Session object and load all arrays, axes, groups and metadata
# stored in the passed Excel file
filepath_excel = get_example_filepath('population_session.xlsx')
filepath_excel = get_example_filepath('demography_eurostat.xlsx')
session = Session(filepath_excel)

# create a new Session object and load all arrays, axes, groups and metadata
# stored in the passed HDF5 file
filepath_hdf = get_example_filepath('population_session.h5')
filepath_hdf = get_example_filepath('demography_eurostat.h5')
session = Session(filepath_hdf)

print(session.summary())
Expand Down Expand Up @@ -728,7 +728,7 @@ metadata:
name: python
nbconvert_exporter: python
pygments_lexer: ipython3
version: 3.6.8
version: 3.7.3
livereveal:
autolaunch: false
scroll: true
Expand Down
Loading