I have one series of 8 TRUE and FALSE values:
boolean_massiv = pd.Series(np.concatenate([[False]*5,[True]*3]))
ALso I have another array of 8 different string values:
values_inside = pd.Series(['day', 'time', 'temperature', 'R.H.[%]', 'w.s.[m/s]', 'СС_down','СС_upper', 'precipitation'])
I want to get values with False indixies of First massiv:
'day', 'time', 'temperature', 'R.H.[%]', 'w.s.[m/s]'
How should I solve my problem?