Python Futurewarning: How would i reconoiter this to get rid of futurewarning?

1.9k Views Asked by At

Python Futurewarning: How would i reconoiter this to get rid of futurewarning??

for symbol in symbol_string.split(','):
    hqm_dataframe = hqm_dataframe.append(
                                    pd.Series([symbol,
                                               data[symbol]['quote']['latestPrice'],
                                               'N/A',
                                               data[symbol]['stats']['year1ChangePercent'],
                                               'N/A',
                                               data[symbol]['stats']['month6ChangePercent'],
                                               'N/A',
                                               data[symbol]['stats']['month3ChangePercent'],
                                               'N/A',
                                               data[symbol]['stats']['month1ChangePercent'],
                                               'N/A',
                                               'N/A'
                                               ],
                                              index = hqm_columns),
                                    ignore_index = True)

C:\Users\actor\PycharmProjects\pythonProject\momentum strategy.py:60: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. hqm_dataframe = hqm_dataframe.append(

0

There are 0 best solutions below