I have this data in a csv table
| TIME | X | Y |
|---|---|---|
| 2020-07-03T00:00:00Z | 0.08 | 0.30 |
| 2021-07-03T00:00:00Z | 0.20 | 0.12 |
And i want to create a scatter plot between variable X and Y, and color the dots based on the year of that data as seen in time. I know i could add an extra column with the year in it, but is there a more elegant way of doing this without adding columns?

