Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Referencing a fixed cell
#1
This line of code is giving a Traceback:
ES_skel['Pct_Return']=100*(ES_skel['Close']-ES_skel['Close'][0])/ES_skel['Close'][0]
The IndexError is "index 0 is out of bounds for axis 0 with size 0."

This df currently has only column ('Close') with a datetime index. What I'm trying to do is create a new column 'Pct_Return' that reflects percentage change since the beginning of the period. I'm therefore trying to fix the first date by selecting the zero index of the column.

What did I do wrong? Thanks!
Reply
#2
Always show unaltered and complete traceback (in bbcode error tags)
In addition, please post enough of a snippet that it is runnable.
Reply
#3
I figured it out with this line:
ES_skel['Cum_Return'] = (1 + ES_skel['Daily_Return']).cumprod() - 1
I was trying to reinvent the wheel, I guess.

Sorry for the insufficient info. I have another question about this--I'll include it all there.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to do "fixed size" (wrapping) math in Python? AlexanderWulf 13 1,851 Jul-19-2023, 04:13 PM
Last Post: deanhystad
  Fixed colum width for rowLabels i Matplotlib pandabay 0 422 Jun-10-2023, 03:40 PM
Last Post: pandabay
  name 'lblstatus' is not defined when referencing a label KatManDEW 4 1,511 Apr-21-2022, 12:33 PM
Last Post: KatManDEW
  Encrypt and decrypt in python using own fixed key SriRajesh 3 4,809 Feb-20-2022, 01:18 PM
Last Post: dboxall123
  Dictionary Referencing nickdavis2017 1 1,602 Nov-20-2021, 06:24 PM
Last Post: deanhystad
  Referencing string names in df to outside variables illmattic 1 1,358 Nov-16-2021, 12:47 PM
Last Post: jefsummers
  Play fixed frequency sound in python 3 jpezz 2 2,765 Feb-07-2021, 08:21 PM
Last Post: jpezz
Sad need help in referencing a list n00bdev 2 1,832 Nov-01-2020, 12:06 PM
Last Post: buran
  Issue referencing new instance from other class nanok66 3 2,215 Jul-31-2020, 02:07 AM
Last Post: nanok66
  referencing another method in a class Skaperen 6 2,644 Jul-02-2020, 04:30 AM
Last Post: Skaperen

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020