카테고리 없음
[numpy] 열 늘려서 보기 jupyter notebook
Hemos
2020. 10. 7. 18:31
set_printoptions 이용.
np.set_printoptions(edgeitems=n)
>> [,,,,,,, .... ,,,,,,]
n 만큼. ,,,,
# threshold = np.inf
# sys.maxsize
---------
notebook cell 너비 늘리기
from IPython.core.display import display, HTML
display(HTML("<style>.container { width: n% !important; } </style>"))
-----------