I have some data as below and need to get the weeknumber and year in the same row.
data.head()
+---------------+
| epoch |
+---------------+
| 1580495399964 |
| 1580495399334 |
| 1580495397591 |
| 1580495396967 |
| 1580495396331 |
+---------------+
How can I get a result like this:
data.head()
+---------------+-----------+
| epoch | week-year |
+---------------+-----------+
| 1580495399964 | 4-2020 |
| 1580495399334 | 4-2020 |
| 1580495397591 | 4-2020 |
| 1580495396967 | 4-2020 |
| 1580495396331 | 4-2020 |
+---------------+-----------+