Lamda ramda(匿名関数)
lambda
式:
Lambdaパラメータ1,パラメータ2,...:パラメータ式
LambdaパラメータLambdaぱらめーた:式しき
(lambda x,y : x+y)(10,20)
>>>30
defを使用する場合
def add(a,b):
return a+b
add(10, 20)
>>>30
map()関数と組み合わせて使用
map(함수, 리스트)
map(lambda x: x ** 2, range(5))
>>>[0, 1, 4, 9, 16]
df['확진일자'].astype(str).map(lamda x : x[-5])
.map(lamdax:式)の場合.前のデータはx因子ですソース:
https://wikidocs.net/64
https://wikidocs.net/24#lambda
Reference
この問題について(Lamda ramda(匿名関数)), 我々は、より多くの情報をここで見つけました https://velog.io/@ena_hong/lamda람다익명함수テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol