yano_pres/prep/05selector/q

18 lines
341 B
Plaintext
Raw Normal View History

2022-05-23 18:49:15 +02:00
<code>
import yano
from yano.symbols import *
condition= (number_of_features>5) &
(number_of_features<100) &
(number_of_samples>100) &
(number_of_samples<10000) &
(number_of_samples>2*number_of_features) &
~index
print(len(condition), "Datasets found")
</code>
->33 Datasets found