![]() |
Error in if-then-else python code - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: Error in if-then-else python code (/thread-37835.html) |
Error in if-then-else python code - Led_Zeppelin - Jul-27-2022 When I run the program with the following final code, I get the error shown. I have changed machine_ status to numeric values using the following subroutine.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.NaNNow machine status is either normal, recovering or broken. But I combine Recovering with Broken. ... I think I know the answer to this so please be patient and I will check if my idea works. RE: Error in if-then-else python code - Led_Zeppelin - Jul-27-2022 I have the answer to this question. Thus, there is no need to answer. Respectfully, LZ RE: Error in if-then-else python code - deanhystad - Jul-27-2022 If you have the answer you should post the answer. How was BROKEN(1) different from BROKEN(2)? This works for me, but I never get 2 as a status code for obvious reasons. import pandas as pd import numpy as np df = pd.DataFrame({"status": ["NORMAL", "BROKEN", "BROKEN", "UNKNOWN"]}) df["code"] = df["status"].map( lambda x: 0 if x == "NORMAL" else 1 if x == "BROKEN" else np.nan ) print(df) You ask a lot of lazy questions. It would be appreciated if you stepped up your effort and provided runnable examples instead of "Here's some code and the error trace". I find the effort of writing a nice short program that demonstrates the problem is often enough for me to find the answer myself. It makes me a better programmer. It would do the same for you.
RE: Error in if-then-else python code - Led_Zeppelin - Jul-27-2022 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.NaNI 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 RE: Error in if-then-else python code - deanhystad - Jul-27-2022 So the error is that fit(x, y) tosses an error if you have NaN's in x or y, and your lambda to convert machine status to numbers was inserting NaN's. RE: Error in if-then-else python code - Led_Zeppelin - Jul-27-2022 Yes, ii was. My initial guess was way off the mark. Way off. R, LZ RE: Error in if-then-else python code - deanhystad - Jul-27-2022 I think you would get a lot of benefit from putting more effort into your posts. When I post I try to write a small example that other people can run but still demonstrates my problem. Often writing the example exposes the solution, and if nothing else demonstrating to others that I've really put some work into solving this problem and making it easy for them to help me will get me good answers quicker. Not to mention that writing small code examples for a specific purpose makes me a better programmer and a better debugger. |