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

【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 trend
    plt.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.kler.cn/a/382866.html

相关文章:

  • 三周精通FastAPI:33 在编辑器中调试
  • C语言中的分支和循环:深入理解与应用
  • 群控系统服务端开发模式-应用开发-上传工厂开发
  • 企业CRM管理系统PHP源码/PHP客户关系CRM客户管理系统源码
  • [前端] 为网站侧边栏添加搜索引擎模块
  • 高清烟花视频素材下载网站推荐
  • 七、Spring Boot集成Spring Security之前后分离认证最佳实现
  • 智能化健身房管理:Spring Boot与Vue的创新解决方案
  • 《C++ 游戏开发》
  • Unity中c#脚本使用protocol buffers
  • 制作并量化GGUF模型上传到HuggingFace和ModelScope
  • [C++ 核心编程]笔记 4.4.1 全局函数做友元
  • 51c嵌入式~合集1
  • openvino python推理demo
  • 网络,NAT地址转换,虚拟路由冗余协议VRRP
  • Linux云计算 |【第五阶段】CLOUD-DAY8
  • Java 批量导出Word模板生成ZIP文件到浏览器默认下载位置
  • 大模型与搜索引擎结合:智能体、思维链和智谱AI搜索代码案例
  • w~视觉~3D~合集1
  • LeetCode题练习与总结:O(1) 时间插入、删除和获取随机元素--380
  • xshell连接不上linux的原因
  • 【EMNLP2024】阿里云人工智能平台 PAI 多篇论文入选 EMNLP2024
  • 架构评估的方法
  • CentOS8.4 部署 k8s 1.31.2
  • XPath 实例
  • 【论文复现】KAN卷积:医学图像分割新前沿