增强现实技术的相关介绍(什么是增强现实技术)
527
2022-05-29
选自 | toward data science
编译 | 机器之心
参与 | 魔王
你对 Jupyter notebook 了解多少?本文介绍了一些自定义功能,帮助你使用 Jupyter notebook 更高效地写代码。
# Listing folder contents
>>> !ls
mynotebook.ipynb stuff.txt# Getting the current directory
>>> !pwd
/home/george/github/project_1# Printing from Bash
>>> !echo "Pizza is delicious!"
Pizza is delicious!
# Getting the current directory.
# The variable "X" now contains ["/home/george/github/project_1"]
X = !pwd
pip install jupyterthemes
jt -l
chesterish
grade3
gruvboxd
gruvboxl
monokai
oceans16
onedork
solarizedd
solarizedl
pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install
# This is a super big title
## This is a big title
### This is a medium title
#### This is a small title
pip install qgrid
jupyter nbextension enable --py --sys-prefix widgetsnbextension
import qgrid
qgrid_widget = qgrid.show_grid(df, show_toolbar=True)
qgrid_widget
添加和删除行;
筛选行;
编辑单元格。
人工智能
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。