import pandas as pd | |
df = pd.DataFrame({ | |
'Class': ['A', 'A', 'A', 'V', 'V', 'A', 'A', 'A'], | |
'X': [4, 3, 5, 2, 1, 7, 7, 5], | |
'Y': [0, 4, 3, 6, 7, 10, 11, 9], | |
'Z': [1, 2, 3, 1, 2, 3, 1, 2] | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment