2020年7月25日土曜日

JupyterLabにipysheetをインストールして、スプレッドシートを表示する

ipysheetで、ノートブックにスプレッドシートを表示する事ができます。

〇ipysheetの画面

インストール手順

以下のコマンドを実行します。
1. nodejsのインストール
sudo apt-get -y install curl

curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -

sudo apt-get install -y nodejs

2. jupyterの仮想環境フォルダに移動後、以下のコマンドを実行します。
pipenv shell

pipenv install ipysheet

jupyter labextension install @jupyter-widgets/jupyterlab-manager

jupyter labextension install ipysheet

sudo systemctl restart jupyter.service

3. 動作確認
以下の動作確認用コードをノートブック入力して実行します。
import ipysheet

sheet = ipysheet.sheet()
cell0 = ipysheet.cell(0, 0, 1230, numeric_format='###,##0', type='numeric')
cell1 = ipysheet.cell(1, 0, "こんにちは!", type='text')
cell2 = ipysheet.cell(0, 1, 0.1, numeric_format='0.000', type='numeric')
cell3 = ipysheet.cell(1, 1, 0.9523, numeric_format='0.00%', type='numeric')
cell4 = ipysheet.cell(2, 2, "2020/07/25", date_format='MM/DD/YYYY', type='date')

sheet

関連情報

・ipysheetのgithubリポジトリ
https://github.com/QuantStack/ipysheet

ipysheetのまとめ

Ubuntu 20.04にJupyter Labをインストールする(pipenv版)

Raspberry Pi(Raspbian Buster)にJupyter Labをインストールする

0 件のコメント:

コメントを投稿