Niharmahesh commited on
Commit
1f8be55
·
verified ·
1 Parent(s): 443e8b4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -88,7 +88,7 @@ def load_and_concat_data():
88
  # Drop duplicates and rows with NaT in date_posted removed this to make it clear (jan13th)
89
  #filtered_df = filtered_df.drop_duplicates().dropna(subset=['date_posted'])
90
  #filtering based on data in 2024
91
- #filtered_df = filtered_df[filtered_df['date_posted'].dt.year==2024]
92
  # Convert titles and company name to lowercase
93
  filtered_df['title'] = filtered_df['title'].str.lower()
94
  filtered_df['company'] = filtered_df['company'].str.lower()
 
88
  # Drop duplicates and rows with NaT in date_posted removed this to make it clear (jan13th)
89
  #filtered_df = filtered_df.drop_duplicates().dropna(subset=['date_posted'])
90
  #filtering based on data in 2024
91
+ filtered_df = filtered_df[filtered_df['date_posted'].dt.year==2025]
92
  # Convert titles and company name to lowercase
93
  filtered_df['title'] = filtered_df['title'].str.lower()
94
  filtered_df['company'] = filtered_df['company'].str.lower()