The following code
from pytrends.request import TrendReq
pytrends = TrendReq(hl='it', tz=0, timeout=None)
keywords = ['dichiarazione', 'redditi']
pytrends.build_payload(keywords, timeframe='2004-01-01 2017-01-01', geo='IT')
pytrends.interest_by_region(resolution='COUNTRY', inc_low_vol=True, inc_geo_code=False)
returns
I don't have a clear understanding of the results I'm obtaining. Firstly, should the column numbers not be normalized between 0 and 100, as is usually done for Google Trends? What do they represent? Why, for example, does the last column have much lower numbers than the one next to it? I wanted to focus on searches containing both the words 'dichiarazione' and 'redditi' in Italian, but I'm starting to doubt whether this code actually returns results for searches containing each of the words 'dichiarazione' and 'redditi' separately (i.e., in the second column, searches containing the single word 'dichiarazione,' and in the third column, searches containing the single word 'redditi'). Is that really the case? Additionally, I would like to obtain monthly results of searches within the specified time frame (so I would like to see this dataframe repeated for each month of the time frame), but I don't know where to start. Any suggestions, please?
Here is the code that achieves what you want if I understood your request correctly.
Here are the results:
And here is the graph: