filmov
tv
Advanced Excel Filtering Across Workbooks Tutorial - Excel Automation with Python Series
Показать описание
How to integrate excel workbooks and filter values across them using logical statements, loc method, and boolean series.
We'll cover:
- pandas merge
- pandas isin method
- python logical statements
Here's the spreadsheets if you want to use them yourself:
#Python #Tutorial #ExcelAutomationWithPython
Let me know your requests!! I'll do my best to get them out as quickly as possible.
Thanks so much for the opportunity to provide videos to you all. You're all incredible - thank you for all your continued support (4,400+ subscribers at the time of writing) Thank you all.
*****************************************************************
Full code from the video:
import pandas as pd
# denote spreadsheets
#read in spreadsheets
#print columns
# Filter by conditions
print((df1['Name'].isin(df2['Name'])))
all_frames = [df1, df2]
print(all_df)
print(filtered_frame_4)
*****************************************************************
Code from this tutorial and all my others can be found on my GitHub:
Check out my website:
If you liked the video - please hit the like button. It means more than you know. Thanks for watching and thank you for all your support!!
Always looking for suggestions on what video to make next -- leave me a comment with your project! Happy Coding!
We'll cover:
- pandas merge
- pandas isin method
- python logical statements
Here's the spreadsheets if you want to use them yourself:
#Python #Tutorial #ExcelAutomationWithPython
Let me know your requests!! I'll do my best to get them out as quickly as possible.
Thanks so much for the opportunity to provide videos to you all. You're all incredible - thank you for all your continued support (4,400+ subscribers at the time of writing) Thank you all.
*****************************************************************
Full code from the video:
import pandas as pd
# denote spreadsheets
#read in spreadsheets
#print columns
# Filter by conditions
print((df1['Name'].isin(df2['Name'])))
all_frames = [df1, df2]
print(all_df)
print(filtered_frame_4)
*****************************************************************
Code from this tutorial and all my others can be found on my GitHub:
Check out my website:
If you liked the video - please hit the like button. It means more than you know. Thanks for watching and thank you for all your support!!
Always looking for suggestions on what video to make next -- leave me a comment with your project! Happy Coding!
Комментарии