Hey!
So I did set up Jupyter Lab and followed some tutorials on how to request data from Google Trends. Somehow I get an Error and I don't really know what's causing this I believe I did everything I need to in the correct order, but somewhere I did something wrong for sure!
import pandas as pd
from pytrends.request import TrendReq
# Set up the TrendReq object
pytrend = TrendReq()
# Define the keywords and category
keywords = ['baby', 'car', 'beanie']
category = 18 # Shopping category in the USA
# Get the historical interest data for the past 90 days
pytrend.build_payload(kw_list=keywords, cat=category, timeframe='today 90-d', geo='US')
interest_over_time_df = pytrend.interest_over_time()
# Filter the results based on the given conditions
filtered_df = interest_over_time_df[(interest_over_time_df >= 50).sum(axis=1) >= 2] # Filter for 2 or more keywords with values >= 50
filtered_df = filtered_df[filtered_df.iloc[:, -1] >= 35] # Filter for the last date value >= 35
print(filtered_df)
[img]![[Image: PljjkG2.png]](https://i.imgur.com/PljjkG2.png)
Hope for some help, and thank you for your time and help in advance!
With kind regards
Chris

import pandas as pd
from pytrends.request import TrendReq
# Set up the TrendReq object
pytrend = TrendReq()
# Define the keywords and category
keywords = ['baby', 'car', 'beanie']
category = 18 # Shopping category in the USA
# Get the historical interest data for the past 90 days
pytrend.build_payload(kw_list=keywords, cat=category, timeframe='today 90-d', geo='US')
interest_over_time_df = pytrend.interest_over_time()
# Filter the results based on the given conditions
filtered_df = interest_over_time_df[(interest_over_time_df >= 50).sum(axis=1) >= 2] # Filter for 2 or more keywords with values >= 50
filtered_df = filtered_df[filtered_df.iloc[:, -1] >= 35] # Filter for the last date value >= 35
print(filtered_df)
[img]
![[Image: PljjkG2.png]](https://i.imgur.com/PljjkG2.png)
Hope for some help, and thank you for your time and help in advance!
With kind regards
Chris