-
Notifications
You must be signed in to change notification settings - Fork 0
Use multiple sheets from ab excel file in reports #115
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
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
ba55251
:art: table_utils module, textwrapping and naming vars
enryH c6cb19f
:memo: where should the caption come from?
enryH dbd468d
:sparkles::construction: first draft to use multiple sheets from exce…
enryH 0d5c0d8
:construction: add streamlit support using selection dropdown menu
enryH c21413e
:memo: To discuss
enryH aa2ba13
Merge branch 'main' into xlsx_with_multiple_sheets
enryH 26388f0
:bug: using the dataframe while qmd generation, need to redefine path
enryH b309600
Merge branch 'main' into xlsx_with_multiple_sheets
enryH cd26c3f
✅ add excel table with two sheets
enryH 2b4103b
✅ add a xlsx example
enryH 50b988e
🐛 Fix(quarto_reportview.py): avoid showing suplicated sheets and remo…
sayalaruano File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file modified
BIN
+1 KB
(100%)
...example_vuegen_demo_notebook/2_Dataframes/1_All_formats/2_abundance_table_example_xls.xls
Binary file not shown.
Binary file added
BIN
+8.77 KB
...le_data/Basic_example_vuegen_demo_notebook/2_Dataframes/1_All_formats/5_example_xlsx.xlsx
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import pandas as pd | ||
|
||
from . import report as r | ||
|
||
# Mapping of file extensions to read functions | ||
read_function_mapping = { | ||
r.DataFrameFormat.CSV.value_with_dot: pd.read_csv, | ||
r.DataFrameFormat.PARQUET.value_with_dot: pd.read_parquet, | ||
r.DataFrameFormat.TXT.value_with_dot: pd.read_table, | ||
r.DataFrameFormat.XLS.value_with_dot: pd.read_excel, | ||
r.DataFrameFormat.XLSX.value_with_dot: pd.read_excel, | ||
} | ||
|
||
|
||
def get_sheet_names( | ||
file_path: str, | ||
) -> list[str]: | ||
"""Get the sheet names of an Excel file. | ||
|
||
Parameters | ||
---------- | ||
file_path : str | ||
Path to the Excel file. | ||
|
||
Returns | ||
------- | ||
list[str] | ||
List of sheet names. | ||
""" | ||
return pd.ExcelFile(file_path).sheet_names |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.