Python Forum
Error in if-then-else python code
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Error in if-then-else python code
#4
Here is the original if-then-else statement

df2["machine_status"] = df2["machine_status"].map(
    lambda x: 0
    if x == "NORMAL"
    else 1
    if x == "BROKEN"
    else 2
    if x == "BROKEN"
    else np.NaN
I am changing strings such a NORMAL, BROKEN or RECOVERING to numbers. The numbers are O if NORMAL and 1 if BROKEN or RECOVERING.

At first, I thought that the unexpected Error (the interpreter said my machine-status columns had NANs and then it failed. i thought it was confusing a 0 as a number for 0 as a symbol. I did have a lot of NAN's. I did not know what o do about this. That was not the case.

I fact the if-then-else statement was clearly wrong.

So, I corrected the if-then-else statement to this:

df2["machine_status"] = df2["machine_status"].map(
    lambda x: 0
    if x == "NORMAL"
    else 1
)
And then my program worked as I wanted.

Respectfully,

LZ
Reply


Messages In This Thread
Error in if-then-else python code - by Led_Zeppelin - Jul-27-2022, 04:33 PM
RE: Error in if-then-else python code - by Led_Zeppelin - Jul-27-2022, 06:59 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Code error from Fundamentals of Python Programming van Richard L. Halterman Heidi 12 1,886 Jul-25-2023, 10:32 PM
Last Post: Skaperen
  Syntax error while executing the Python code in Linux DivAsh 8 1,887 Jul-19-2023, 06:27 PM
Last Post: Lahearle
  Compiles Python code with no error but giving out no output - what's wrong with it? pythonflea 6 1,722 Mar-27-2023, 07:38 AM
Last Post: buran
  Facing error while executing below Python code ramu4651 1 5,863 Jan-26-2021, 06:40 PM
Last Post: ibreeden
  Skeleton file export error Python Code pepapoha 4 3,621 Nov-17-2020, 02:06 AM
Last Post: pepapoha
  Compiling Python 3.8.5 source code results in build error Deepan 0 2,242 Sep-14-2020, 04:11 AM
Last Post: Deepan
  Syntax error in python code sample ErnestTBass 5 3,221 Aug-14-2020, 07:14 PM
Last Post: deanhystad
  Error in Python Code ErnestTBass 4 2,852 Jun-04-2020, 05:28 PM
Last Post: buran
  Python Code error Riteshfrancis 2 2,499 May-21-2020, 06:37 AM
Last Post: Riteshfrancis
  Simple python code error cls0724 5 3,422 Mar-12-2020, 07:45 PM
Last Post: stullis

Forum Jump:

User Panel Messages

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