Hi,
here is my problem
result = run_pipeline(make_pipeline(), start_date='2015-01-01', end_date = '2015-02-02')
result.head()
result.replace(["Equity(6583 [RTN])"],
['Equity(12691 [LMT])'], inplace=True)
<<<
I want to substitute the word [RTN] with [LMT], but my DataFrame (result) doesn't change at all
Am I using the wrong command?