Pycharm setting console line widths to wrap at 10 characters

I'm having a weird issue that I've never run into before. I recently did a full removal of PyCharm and re-installed it on my computer. Since I re-installed, it seems like pycharm is cutting off certain instances, GeoDataFrames for me, at 10 columns. I've run the python interpreter thru my terminal and everything is displayed fine but when I try to print anything to the screen in PyCharm, I can only see the row index and three dots. I cannot find anywhere in the settings that would affect this. Is PyCharm setting these widths on its own?

import geopandas as gpd

shape_file = '/Users/mikesmith/Downloads/NY_Call_Areas_4_4_2018/NY_Call_Areas_4_4_2018.shp'
leasing_areas = gpd.read_file(shape_file)
leasing_areas = leasing_areas.to_crs(crs={'init': 'epsg:4326'})
leasing_areas
...
0 ...
1 ...
2 ...
3 ...
4 ...
5 ...
6 ...
7 ...
8 ...
9 ...
[10 rows x 10 columns]

 

This is really annoying.

0

Please sign in to leave a comment.