Which is meant by +/-9.2e18 years in timespan?
I was able to convert the 9.2e18 AD to a date, but I am confused about the exact date. Which date is 9.2e18 AD and and 9.2e18 BC?
Time span (absolute) - [9.2e18 BC, 9.2e18 AD] i.e +/- 9.2e18 years
NumPy documentation, section Datetime Units under Datetimes and Timedeltas
Code | Meaning | Time span (relative) | Time span (absolute) |
---|---|---|---|
Y | year | +/- 9.2e18 years | [9.2e18 BC, 9.2e18 AD] |
M | month | +/- 7.6e17 years | [7.6e17 BC, 7.6e17 AD] |
W | week | +/- 1.7e17 years | [1.7e17 BC, 1.7e17 AD] |
D | day | +/- 2.5e16 years | [2.5e16 BC, 2.5e16 AD] |
- I have converted the 9.2e18 (epoch - I believe it represented in epochs) to a date. It gave me very big date which I did not expect. Are my assumptions accurate?
- How many years was covered according to the date 1970-01-01 from 9.2e18 BC?
- What are some examples using this timespan to judge my assumptions to get the date of 9.2e18 BC and 9.2e18 AD with units by NumPy?
Topic time epochs numpy mathematics time-series
Category Data Science