Questions tagged [eda]

event-driven architecture

Event-driven architecture (EDA) is a software architecture pattern promoting the production, detection, consumption of, and reaction to events.

108 questions
-2
votes
2 answers

Please guys what might the cause of this error am recieving

TypeError: Cannot perform 'ror_' with a dtyped [bool] array and scalar of type [NoneType] ###I receive this error whenever i run this code. print(df < (Q1 - 1.5 * IQR)) |(df > (Q3 + 1.5 * IQR)) Please what am I not doing right?
-2
votes
1 answer

How do I filter only those rows which contains any of the values from a given list of tags

DataFrame I have this dataframe which contains user id and tags related to the user. what is the best way to filter out only those rows which has tags containing any one among this list. data_science = ['python', 'r', 'matlab', 'sas', 'excel',…
Deb
  • 37
  • 4
-4
votes
0 answers

remove \n from each rows and a), b), c) , d) and the column type is pandas.core.series.Series

I have a column by name "options" and I have to clean it for future steps 0 a) qatar\\nb) brazil\\nc) germany\\nd) france 1 a) june - july\\nb) january - february\\nc) sept... 2 a) 32\\nb) 24\\nc) 48\\nd) 16 3 a) lusail iconic…
1 2 3 4 5 6 7
8