Python Forum
List comprehension not working right
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
List comprehension not working right
#1
Hello,
I have written a small snipet using list comprehension, and is not working properly.
I have a dataset that I would like to iterate by row, and if "Rig Sub State" column contains [5,6,7,10,11] update a list with value of 1.
Update the list until the end of dataset and after that create a column [Orienting_State] with the values from the list.
Unfortunately, when I went and check the results, they are mixed. Sometimes for 5,6,7,10,11 it will show 1, but sometimes it doesn't.
Could you please look at the code and tell me what is wrong?
Thank you.
Here is the code (dataset is too big to add here):

##Orienting Script
import pandas as pd
import numpy as np

df = pd.DataFrame(ALPHA_ANALYTICS_1).sort_values(by=['EPOCH'])

conditions = [5 , 6 , 7 , 10 , 11]
temp_list = []
orienting_lists = []

for idx, row in df.iterrows():
    if row['Rig Sub State'] in conditions:
        temp_list.append(1)
    elif row['Rig Sub State'] == 2:
        temp_list.append(0)
        orienting_lists.append(temp_list)
        temp_list = []
    else: 
        temp_list.append(0)
        orienting_lists.append([0] * len(temp_list))
        temp_list = []
        
orienting = [item for sublist in orienting_lists for item in sublist]
Orienting_State = pd.Series(orienting)
Larz60+ write Nov-01-2024, 08:29 PM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button. Tags have been added for you this time. Please use BBCode tags on future posts.
Reply
#2
(Nov-01-2024, 08:13 PM)Cris9855 Wrote: dataset is too big to add here

I wouldn't want your real dataset. What would be good is to include a small, test datasest. Probably with 2 rows (one that does what you expect and one that doesn't do what you expect). Include the data, the output you're getting and what you expect the output to be instead.
ndc85430 likes this post
Reply
#3
(Nov-01-2024, 10:05 PM)bowlofred Wrote:
(Nov-01-2024, 08:13 PM)Cris9855 Wrote: dataset is too big to add here

I wouldn't want your real dataset. What would be good is to include a small, test datasest. Probably with 2 rows (one that does what you expect and one that doesn't do what you expect). Include the data, the output you're getting and what you expect the output to be instead.

I added two screenshots with the results. Sometimes when Rig Sub State is [4,5,6, 10,11], the resulting column 'Orienting State' has 0s sometimes 1s. They should be 1s if the Rig Sub State ==2 after [4,5,6,10,11], else should be 0.
For example if I have Rig Sub State==[4,5,6,10,11] followed by Rig Sub State=2, then the Orienting State should be 1, else should be 0.
Hope this explains the logic we want to use to calculate the Orienting State column.

Attached Files

Thumbnail(s)
       
Reply
#4
Example to share fake-Date as DataFrame:

ALPHA_ANALYTICS_1 = pd.DataFrame(
  [
    (1,5),
    (2,6),
    (3,7),
    (4,8),
    (5,9),
    (6,10),
    (7,11),
    (8,12),
    (9,13),
  ], columns=("EPOCH", "Rig Sub State"))
This has only two columns.
Cris9855 likes this post
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Problem with List Comprehension in Python laurawoods 3 1,022 Aug-12-2024, 06:26 AM
Last Post: Pedroski55
  List Comprehension Issue johnywhy 5 1,803 Jan-14-2024, 07:58 AM
Last Post: Pedroski55
Question mypy unable to analyse types of tuple elements in a list comprehension tomciodev 1 1,538 Oct-17-2023, 09:46 AM
Last Post: tomciodev
  Using list comprehension with 'yield' in function tester_V 5 3,353 Apr-02-2023, 06:31 PM
Last Post: tester_V
  list comprehension 3lnyn0 4 2,328 Jul-12-2022, 09:49 AM
Last Post: DeaD_EyE
  List comprehension used differently coder_sw99 3 2,647 Oct-03-2021, 04:12 PM
Last Post: coder_sw99
  How to invoke a function with return statement in list comprehension? maiya 4 3,971 Jul-17-2021, 04:30 PM
Last Post: maiya
  List comprehension and Lambda cametan 2 3,050 Jun-08-2021, 08:29 AM
Last Post: cametan
  What is the difference between a generator and a list comprehension? Pedroski55 2 3,106 Jan-02-2021, 04:24 AM
Last Post: Pedroski55
  For Loop with List Comprehension muzikman 25 10,127 Dec-18-2020, 10:45 PM
Last Post: muzikman

Forum Jump:

User Panel Messages

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