Best way to display ranges where end range is inclusive

I have a table with one column displaying a range of values where the end range value is inclusive, but the start range value is exclusive.

I'm having a hard time figuring out how to succinctly and effectively convey that in the table.

This is what I've settled on so far:

| Average Usage | Average Score |
| ------------- | ------------- |
| 0 - 1 days    | 23.1          | 
| > 1 - 2 days  | 120           |
| > 2 - 3 days  | 312           | 
| > 3 days      | 521           |

Can anyone think of a better way to get this across?