I've found that when analyzing large amounts of data, Pycharm likes to put ellipses between columns. Below is my code. Tesla1.csv contains stock prices of Tesla for the last two years.
df = pd.read_csv('Tesla1.csv', parse_dates = True, index_col = 0)
df['100_moving_average'] = df['Adj Close'].rolling(window = 100, min_periods = 0).mean()
print(df.head())
Here's my output.
High ... 100_moving_average
Date ...
2017-01-03 220.330002 ... 216.990005
2017-01-04 228.000000 ... 221.990005
2017-01-05 227.479996 ... 223.576670
2017-01-06 230.309998 ... 224.935001
2017-01-09 231.919998 ... 226.204001
[5 rows x 7 columns]
I do not get to see the in-between columns. Is there a way to fix this? Is this a problem exclusive to Pycharm?