0
Can I use Lambda functions in real time Data Analysis
In Real time data analysis, can i use Lambda functions for pre-processing records.
1 ответ
+ 2
I don't see any reason why not.
But normally you would use lambda as a one-time disposable transformation. You can express the same with def (defining it as a separate function) which may be better coding practice if you repeatedly need to perform the transformation.