Update sorted_market_capitalization.py
This commit is contained in:
parent
fc66ebb6b1
commit
342efb8562
@ -7,10 +7,17 @@ import akshare as ak
|
||||
import numpy as np
|
||||
stocks = ak.stock_zh_a_spot_em()
|
||||
stock_data = stocks.values
|
||||
list_index = np.argsort(stock_data[:, 17])
|
||||
new_stock_data = []
|
||||
for stock in stock_data:
|
||||
if np.isnan(float(stock[9])):
|
||||
continue
|
||||
else:
|
||||
new_stock_data.append(stock)
|
||||
new_stock_data = np.array(new_stock_data)
|
||||
list_index = np.argsort(new_stock_data[:, 17])
|
||||
list_index = list_index[::-1]
|
||||
for i0 in range(30):
|
||||
stock_symbol = stock_data[list_index[i0], 1]
|
||||
stock_name = stock_data[list_index[i0], 2]
|
||||
market_capitalization = stock_data[list_index[i0], 17]/1e8
|
||||
stock_symbol = new_stock_data[list_index[i0], 1]
|
||||
stock_name = new_stock_data[list_index[i0], 2]
|
||||
market_capitalization = new_stock_data[list_index[i0], 17]/1e8
|
||||
print([i0+1, stock_symbol, stock_name, market_capitalization])
|
Loading…
x
Reference in New Issue
Block a user