COMPUTER SCIENCE AND ENGINEERING
MACHINE LEARNING
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
train[’Has ____ Cabin’] = train["Cabin"].apply(lambda x:0 if type(x) == float else 1)What is the lambda function here:
|
It is thereby mistake
|
|
A lambda function is a small anonymous function.A lambda function can take any number of arguments, but can only have one expression.
|
|
Lambda function is a function that is called from somewhere else and return values
|
|
Lambda Function is a function which gives Lambda symbols
|
Explanation:
There is 1 question to complete.