how to set index start from 1 in pandas code example
Example: index start from 1 pandas
>>> result.index += 1
>>> result.index
Int64Index([1, 2, 3], dtype=int64)
>>> result.index += 1
>>> result.index
Int64Index([1, 2, 3], dtype=int64)