增强 Jupyter Notebook 的功能,这里有四个妙招

网友投稿 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

增强 Jupyter Notebook 的功能,这里有四个妙招

### 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小时内删除侵权内容。

上一篇:《精通ROS机器人编程(原书第2版) 》 —1.4 理解ROS的文件系统
下一篇:ModelArts让AI开发变简单的全攻略
相关文章