There are 400 underlying stocks in the csv file. I need toselect best 15 underlying asset from the csv file using python.
How do i use python programming to filter out the best15 underlying stock from the csv file? (*Please do not use random to generate *)
THe csv file contain the dates, stocks and price. due certaindates like weekend, the price of the stock is empty.
Below is the coding that i am able to generate the whole fileout.
import panda as pd
stock=pd.read_csv(‘C:/Users/data.csv ‘)
print(stock)
Expert Answer
An answer will be send to you shortly. . . . .