我正在尝试在jupyter笔记本中可视化长字典。像元高度太小,所以我想增加它。我正在寻找一个可以在同一单元格中写入的简单命令。
答案 0 :(得分:1)
是的,有一种简单的方法可以做到这一点。
程序基本上是这样的:
~/python-3.9.5.amd64/Lib/site-packages/notebook/static/custom/
custom.css
.container {
width: 100% !important;
}
div.notebook-container {
width: 100% !important;
height: fit-content;
}
div.menubar-container {
width: 100% !important;
height: fit-content;
}
div.maintoolbar-container {
width: 100% !important;
height: fit-content;
}
div.cell.selected {
border-left-width: 1px !important;
}
div.output_scroll {
resize: vertical !important;
}
.output_wrapper .output {
overflow-y: visible;
height: fit-content;
}
.output_scroll {
box-shadow:none !important;
webkit-box-shadow:none !important;
}