Some calculations inside .rolling() give an IndexErrorWhat is the Python equivalent of static variables inside a function?Rolling delinquiency calculation for a dataframeCalculation in CSV file with Python, Perl, CSVfix?How to get access to a column in a 2D list in Python?Resampling pandas dataframe is deleting columnHow to iterate over the rows of a csv file and drop based on the value of a particular columnGrouping columns in a Pandas Dataframeapply polyfit on rolling baseEfficient and salable way to Iterate over a Dataframe and write to text file row by row having huge amount of text dataCalculate pandas dataframe index difference based on the value of another column

Did Stalin kill all Soviet officers involved in the Winter War?

How serious is plagiarism in a master’s thesis?

Will electrically joined dipoles of different lengths, at right angles, behave as a multiband antenna?

how to convert Timestring to seconds

How to calculate a conditional PDF in mathematica?

Boss has banned cycling to work because he thinks it's unsafe

Did Snape really give Umbridge a fake Veritaserum potion that Harry later pretended to drink?

What are the differences of checking a self-signed certificate vs ignore it?

Why do Klingons use cloaking devices?

What instances can be solved today by modern solvers (pure LP)?

Milky way is orbiting around?

Why do we need a bootloader separate than our application program in MCU's?

Term for a character that only exists to be talked to

What units are kpts?

Convenience stores in India

How many spells does my Bard 6/Wizard 1 know?

How to figure out layers of the atmosphere?

About opening an LLC with little to report in the beginning

What is the difference between a historical drama and a period drama?

Motorcyle Chain needs to be cleaned every time you lube it?

Has chattel slavery ever been used as a criminal punishment in the USA since the passage of the Thirteenth Amendment?

Do the 26 richest billionaires own as much wealth as the poorest 3.8 billion people?

What is this arch-and-tower near a road?

How can solar sailed ships be protected from space debris?



Some calculations inside .rolling() give an IndexError


What is the Python equivalent of static variables inside a function?Rolling delinquiency calculation for a dataframeCalculation in CSV file with Python, Perl, CSVfix?How to get access to a column in a 2D list in Python?Resampling pandas dataframe is deleting columnHow to iterate over the rows of a csv file and drop based on the value of a particular columnGrouping columns in a Pandas Dataframeapply polyfit on rolling baseEfficient and salable way to Iterate over a Dataframe and write to text file row by row having huge amount of text dataCalculate pandas dataframe index difference based on the value of another column






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I don't know the exact value for .rolling(), so I need to calculate it based on the value of another column which is df.candle. So I would like to calculate index difference between current row and the row where df.candle = (df.candle[current_iteration] - 20)[0] (so 20 candles behind and first iteration (there are multiple rows with same candle value so [0])



So I though that something like this should work:



import pandas as pd

df = pd.read_csv('https://www.dropbox.com/s/hy94jp4d7qwmv04/eurusd_df1.csv?dl=1')
df.reset_index(inplace=True)

# pandas settings
pd.set_option('display.max_columns', 320)
pd.set_option('display.max_rows', 1320)
pd.set_option('display.width', 320)

#
a = df.index[df.candle == df.candle - 20][0]
df['test'] = df.bid.rolling(int(a)).mean()



But it actually gives an error:



IndexError: index 0 is out of bounds for axis 0 with size 0


So I'm a bit lost here...



EDIT: Here's, perhaps, a better and shorter explanation: https://www.reddit.com/r/learnpython/comments/b5o8o5/pandas_rolling_with_some_calculations_inside/










share|improve this question
























  • Please provide the full error traceback, and what happens when you print a?

    – G. Anderson
    Mar 25 at 19:12






  • 1





    Also, a sample input and ideal ouput would help, see this link on creating a minimal reproducible example

    – G. Anderson
    Mar 25 at 19:13






  • 1





    df.candle == df.candle - 20 will return False, so you don't have anything for index.

    – bhansa
    Mar 25 at 19:14












  • Traceback (most recent call last): File "C:/Users/irmsc/pp/fml/test.py", line 12, in <module> a = df.index[df.candle == df.candle - 20][0] File "C:Usersirmscppfmlvenvlibsite-packagespandascoreindexesbase.py", line 3957, in __getitem__ return getitem(key) IndexError: index 0 is out of bounds for axis 0 with size 0

    – Andrey Kurnikovs
    Mar 25 at 19:37












  • Nothing happens when I print a, the traceback when calculating it.

    – Andrey Kurnikovs
    Mar 25 at 19:38

















0















I don't know the exact value for .rolling(), so I need to calculate it based on the value of another column which is df.candle. So I would like to calculate index difference between current row and the row where df.candle = (df.candle[current_iteration] - 20)[0] (so 20 candles behind and first iteration (there are multiple rows with same candle value so [0])



So I though that something like this should work:



import pandas as pd

df = pd.read_csv('https://www.dropbox.com/s/hy94jp4d7qwmv04/eurusd_df1.csv?dl=1')
df.reset_index(inplace=True)

# pandas settings
pd.set_option('display.max_columns', 320)
pd.set_option('display.max_rows', 1320)
pd.set_option('display.width', 320)

#
a = df.index[df.candle == df.candle - 20][0]
df['test'] = df.bid.rolling(int(a)).mean()



But it actually gives an error:



IndexError: index 0 is out of bounds for axis 0 with size 0


So I'm a bit lost here...



EDIT: Here's, perhaps, a better and shorter explanation: https://www.reddit.com/r/learnpython/comments/b5o8o5/pandas_rolling_with_some_calculations_inside/










share|improve this question
























  • Please provide the full error traceback, and what happens when you print a?

    – G. Anderson
    Mar 25 at 19:12






  • 1





    Also, a sample input and ideal ouput would help, see this link on creating a minimal reproducible example

    – G. Anderson
    Mar 25 at 19:13






  • 1





    df.candle == df.candle - 20 will return False, so you don't have anything for index.

    – bhansa
    Mar 25 at 19:14












  • Traceback (most recent call last): File "C:/Users/irmsc/pp/fml/test.py", line 12, in <module> a = df.index[df.candle == df.candle - 20][0] File "C:Usersirmscppfmlvenvlibsite-packagespandascoreindexesbase.py", line 3957, in __getitem__ return getitem(key) IndexError: index 0 is out of bounds for axis 0 with size 0

    – Andrey Kurnikovs
    Mar 25 at 19:37












  • Nothing happens when I print a, the traceback when calculating it.

    – Andrey Kurnikovs
    Mar 25 at 19:38













0












0








0








I don't know the exact value for .rolling(), so I need to calculate it based on the value of another column which is df.candle. So I would like to calculate index difference between current row and the row where df.candle = (df.candle[current_iteration] - 20)[0] (so 20 candles behind and first iteration (there are multiple rows with same candle value so [0])



So I though that something like this should work:



import pandas as pd

df = pd.read_csv('https://www.dropbox.com/s/hy94jp4d7qwmv04/eurusd_df1.csv?dl=1')
df.reset_index(inplace=True)

# pandas settings
pd.set_option('display.max_columns', 320)
pd.set_option('display.max_rows', 1320)
pd.set_option('display.width', 320)

#
a = df.index[df.candle == df.candle - 20][0]
df['test'] = df.bid.rolling(int(a)).mean()



But it actually gives an error:



IndexError: index 0 is out of bounds for axis 0 with size 0


So I'm a bit lost here...



EDIT: Here's, perhaps, a better and shorter explanation: https://www.reddit.com/r/learnpython/comments/b5o8o5/pandas_rolling_with_some_calculations_inside/










share|improve this question
















I don't know the exact value for .rolling(), so I need to calculate it based on the value of another column which is df.candle. So I would like to calculate index difference between current row and the row where df.candle = (df.candle[current_iteration] - 20)[0] (so 20 candles behind and first iteration (there are multiple rows with same candle value so [0])



So I though that something like this should work:



import pandas as pd

df = pd.read_csv('https://www.dropbox.com/s/hy94jp4d7qwmv04/eurusd_df1.csv?dl=1')
df.reset_index(inplace=True)

# pandas settings
pd.set_option('display.max_columns', 320)
pd.set_option('display.max_rows', 1320)
pd.set_option('display.width', 320)

#
a = df.index[df.candle == df.candle - 20][0]
df['test'] = df.bid.rolling(int(a)).mean()



But it actually gives an error:



IndexError: index 0 is out of bounds for axis 0 with size 0


So I'm a bit lost here...



EDIT: Here's, perhaps, a better and shorter explanation: https://www.reddit.com/r/learnpython/comments/b5o8o5/pandas_rolling_with_some_calculations_inside/







python pandas rolling-computation






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 26 at 11:21







Andrey Kurnikovs

















asked Mar 25 at 18:57









Andrey KurnikovsAndrey Kurnikovs

521 silver badge10 bronze badges




521 silver badge10 bronze badges












  • Please provide the full error traceback, and what happens when you print a?

    – G. Anderson
    Mar 25 at 19:12






  • 1





    Also, a sample input and ideal ouput would help, see this link on creating a minimal reproducible example

    – G. Anderson
    Mar 25 at 19:13






  • 1





    df.candle == df.candle - 20 will return False, so you don't have anything for index.

    – bhansa
    Mar 25 at 19:14












  • Traceback (most recent call last): File "C:/Users/irmsc/pp/fml/test.py", line 12, in <module> a = df.index[df.candle == df.candle - 20][0] File "C:Usersirmscppfmlvenvlibsite-packagespandascoreindexesbase.py", line 3957, in __getitem__ return getitem(key) IndexError: index 0 is out of bounds for axis 0 with size 0

    – Andrey Kurnikovs
    Mar 25 at 19:37












  • Nothing happens when I print a, the traceback when calculating it.

    – Andrey Kurnikovs
    Mar 25 at 19:38

















  • Please provide the full error traceback, and what happens when you print a?

    – G. Anderson
    Mar 25 at 19:12






  • 1





    Also, a sample input and ideal ouput would help, see this link on creating a minimal reproducible example

    – G. Anderson
    Mar 25 at 19:13






  • 1





    df.candle == df.candle - 20 will return False, so you don't have anything for index.

    – bhansa
    Mar 25 at 19:14












  • Traceback (most recent call last): File "C:/Users/irmsc/pp/fml/test.py", line 12, in <module> a = df.index[df.candle == df.candle - 20][0] File "C:Usersirmscppfmlvenvlibsite-packagespandascoreindexesbase.py", line 3957, in __getitem__ return getitem(key) IndexError: index 0 is out of bounds for axis 0 with size 0

    – Andrey Kurnikovs
    Mar 25 at 19:37












  • Nothing happens when I print a, the traceback when calculating it.

    – Andrey Kurnikovs
    Mar 25 at 19:38
















Please provide the full error traceback, and what happens when you print a?

– G. Anderson
Mar 25 at 19:12





Please provide the full error traceback, and what happens when you print a?

– G. Anderson
Mar 25 at 19:12




1




1





Also, a sample input and ideal ouput would help, see this link on creating a minimal reproducible example

– G. Anderson
Mar 25 at 19:13





Also, a sample input and ideal ouput would help, see this link on creating a minimal reproducible example

– G. Anderson
Mar 25 at 19:13




1




1





df.candle == df.candle - 20 will return False, so you don't have anything for index.

– bhansa
Mar 25 at 19:14






df.candle == df.candle - 20 will return False, so you don't have anything for index.

– bhansa
Mar 25 at 19:14














Traceback (most recent call last): File "C:/Users/irmsc/pp/fml/test.py", line 12, in <module> a = df.index[df.candle == df.candle - 20][0] File "C:Usersirmscppfmlvenvlibsite-packagespandascoreindexesbase.py", line 3957, in __getitem__ return getitem(key) IndexError: index 0 is out of bounds for axis 0 with size 0

– Andrey Kurnikovs
Mar 25 at 19:37






Traceback (most recent call last): File "C:/Users/irmsc/pp/fml/test.py", line 12, in <module> a = df.index[df.candle == df.candle - 20][0] File "C:Usersirmscppfmlvenvlibsite-packagespandascoreindexesbase.py", line 3957, in __getitem__ return getitem(key) IndexError: index 0 is out of bounds for axis 0 with size 0

– Andrey Kurnikovs
Mar 25 at 19:37














Nothing happens when I print a, the traceback when calculating it.

– Andrey Kurnikovs
Mar 25 at 19:38





Nothing happens when I print a, the traceback when calculating it.

– Andrey Kurnikovs
Mar 25 at 19:38












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55344751%2fsome-calculations-inside-rolling-give-an-indexerror%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55344751%2fsome-calculations-inside-rolling-give-an-indexerror%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현