当前位置: 首页 > news >正文

【ChatGPT】搜索趋势分析

【ChatGPT】搜索趋势分析

为了分析 ChatGPT 在过去一年的流行趋势,我们可以查看 Google Trends 的数据

安装依赖pytrends

pip install pytrends

运行以下 Python 脚本

import pandas as pd
import matplotlib.pyplot as plt
from pytrends.request import TrendReq# Set up Google Trends API
pytrends = TrendReq(hl='en-US', tz=360)# Define the keyword and timeframe
kw_list = ["ChatGPT"]
pytrends.build_payload(kw_list, timeframe='today 12-m')  # last 12 months# Fetch the interest over time
interest_over_time_df = pytrends.interest_over_time()# Ensure data is available and clean
if not interest_over_time_df.empty:# Plotting the trendplt.figure(figsize=(12, 6))plt.plot(interest_over_time_df.index, interest_over_time_df['ChatGPT'], color='blue', label='ChatGPT')plt.title("Google Search Trend for 'ChatGPT' Over the Last Year")plt.xlabel("Date")plt.ylabel("Search Interest")plt.legend()plt.grid(True)plt.show()
else:print("No data available for the specified search term and timeframe.")

输出

在这里插入图片描述

代理配置

# Define proxies as a list with at least one valid proxy
proxies_list = ['https://your_proxy_here:port',  # Replace with actual proxy address
]# Ensure pytrends initializes with a non-empty proxy list
if proxies_list:pytrends = TrendReq(hl='en-US', tz=360, proxies=proxies_list)
else:raise ValueError("Proxies list is empty. Add at least one proxy.")

http://www.mrgr.cn/news/62540.html

相关文章:

  • 【C++】string类的底层
  • uniapp的两种弹窗方式
  • Excel中公式和函数的区别
  • 前端开发 vue 中如何实现 u-form 多个form表单同时校验
  • 基于Python的投资组合收益率与波动率的数据分析
  • 【通识安全】煤气中毒急救的处置
  • Spring Boot在校园社团信息管理中的实践与思考
  • 北京神州分诊叫号系统 doctor 任意文件上传漏洞
  • 最新AI绘画ComfyUI整合包又更新了!
  • 【天线&空中农业】蜜蜂检测系统源码&数据集全套:改进yolo11-ASF
  • go-logger v0.27.0 - 并发性能为官方库 10 倍
  • echarts 实现3D饼状图 加 label标签显示
  • 编程知识概览
  • C#核心(5)构造,析构,垃圾回收
  • 一文说清什么是数据要素
  • 如何使用weditor定位iphone手机的控件?
  • 基于Openwrt系统架构,实现应用与驱动的实例。
  • SpringBoot旋律线:Web音乐网站构建
  • 界面控件DevExpress WPF中文教程:Data Grid——卡片视图概述
  • 比微软的GraphRag更加强大的LightRAG:简单快速的检索增强生成
  • Java 的并发工具类与性能优化(22/30)
  • ubuntu20.04 加固方案-设置用户缺省UMASK
  • 计组-流水线吞吐率、加速比、效率计算
  • 数据不一致
  • Java爬虫:在1688上“拍立淘”——按图搜索商品的奇妙之旅
  • AdaBoost与前向分步算法 10-16最小化指数损失函数 公式解析