其他Colab笔记本中的Google Colab源函数

时间:2019-10-08 14:46:40

标签: jupyter-notebook google-colaboratory

我在Google Colab my_functions.ipynb上有一个ipynb,其中包含一个简单的功能。

def get_mean(dat, col_nm):
  return dat[col_nm].mean()

我想从Google Colab上的其他Python笔记本other_notebook.ipynb中获取此函数,以便可以使用它,但是我在任何地方都找不到解决方案。

对此表示感谢。

谢谢

Gareth

1 个答案:

答案 0 :(得分:0)

我将具有一些有用功能的文件保存为.py文件。

然后我以“ functions.py”的形式存储在Google云端硬盘中。

然后我通过以下调用加载函数:

%run '/content/drive/My Drive/Colab Notebooks/functions.py'