You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
A clear and concise description of what the bug is.
After import gemgis, pandas only retains two decimal places. To Reproduce
Steps to reproduce the behavior:
pandans = 2.0.1
gemgis = 1.1.8
Describe the bug
A clear and concise description of what the bug is.
After import gemgis, pandas only retains two decimal places.
To Reproduce
Steps to reproduce the behavior:
pandans = 2.0.1
gemgis = 1.1.8
code:
`import pandas as pd
aaa = [[111.8065315459521, 36.86729095761402]]
print("Using Pandas:")
print(pd.DataFrame(data=aaa))
import gemgis
print("\nUsing gemgis:")
print(pd.DataFrame(data=aaa))
`
result:
Using Pandas:
0 1
0 111.806532 36.867291
Using gemgis:
0 1
0 111.81 36.87
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Smartphone (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: