gl_data = web.DataReader(series_code, data_source)
时间: 2023-11-30 14:03:06 浏览: 126
使用DataReader对象读取数据
这段代码的作用是使用Python的pandas_datareader库从指定的数据源(data_source)中获取指定股票(series_code)的历史价格数据,并将其存储在gl_data中。其中,series_code是股票代码,data_source是数据源,比如Yahoo Finance或Google Finance等,gl_data是一个pandas的DataFrame类型,包含了股票的历史价格信息。这段代码可以用来获取股票的历史价格数据,以便进行后续的数据分析或处理。需要注意的是,使用该代码需要先安装pandas_datareader库并导入相应的包。
阅读全文