In the code belowfrom sklearn.model_selection import train_t…
In the code belowfrom sklearn.model_selection import train_test_split X_train, X_test, Y_train, Y_test = train_test_split(x_no_outliers, y_no_outliers, test_size=0.2, random_state=0, shuffle=True)What does the command test_size=0.2 do?