How do I find the last occurrence index for a certain value in a Pandas Series?
For example, let's say I have a Series that looks like follows:
s = pd.Series([False, False, True, True, False, False])
And I want to find the last index for a True value (i.e. index 3), how would you go about it?