Sometimes, you might have to select multiple options in the platform. For example, you need to select all the columns that will be used as inputs to train a model. You can do it manually, by clicking on each of them, but the wildcard character *
can be used to filter the list and enable quick multiple selections.
You can notice that there is an auto-complete function available when you start to type.
It is also possible to select multiple options by using the star symbol *
.
For example:
*
followed by hittingEnter
will select all options. This is useful if you need to select all options, or nearly all options (in this case, you can select them all, and then manually remove the few that you don't need).in*
followed by hittingEnter
will select all options starting byin
. For example, that might select optionsinput_chord
,input_length
andinput_angle
.*mean
followed by hittingEnter
will select all columns ending bymean
. For example, that might select optionspressure_mean
andspeed_mean
will be selected.*coef*
followed by hittingEnter
will select all columns containingcoef
. For example, that might select optionsdrag_coefficient
,lift_coefficient
, ...
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article