Posts by Bruno Silva • 1 point
2 posts
-
0
votes1
answer54
viewsA: Customer Propensity Analysis - Scheduling Service - Variavel_target
To get a better idea, just conducting an exploratory analysis. I have in mind some questions, such as: The profile of the client who made the scheduling is related to products individually or…
-
0
votes3
answers227
viewsA: Lambda python function
At first it is correct, apart from the typo in Else. The simplest way to check is to do assert. from functools import reduce lista = [1,2,3,4,5,6] maior = reduce((lambda x,y: x if (x > y) else…