未分類 Querying MIMIC-III in Postgres Here I assume that the MIMIC-III database is on your default search path. To change this in PostgreSQL, run the followi... 2020.09.04 未分類
未分類 Creating MIMIC-III in a local Postgres database In this article, I'm going to describe how to create MIMIC-III in a local Postgres database on Ubuntu. Download the ... 2020.09.04 未分類
未分類 Docker memo Assume Dockerfile and docker-compose.yml files are in the current directory. docker-compose up -d 2020.09.03 未分類
未分類 Flutter App: Task List What this code has done: Can create dismissible lists In the main.dart file import 'package:flutter/material.d... 2020.08.16 未分類
未分類 The easiest way to download files from the internet directly to Google Drive When you have to store a large file on Google Drive, you don't want to download the file to your local computer for upl... 2020.07.22 未分類
未分類 Find IPYNB files containing a certain words When you have a lot of Jupyter notebook files (.ipynb files) and you want to know which notebooks produce a file of you... 2020.06.30 未分類
未分類 Linux command line tips cd -: Go to the directory that you were previously in. You can use this when you want to toggle between two different d... 2020.06.16 未分類
未分類 How to calculate a p-value in Gene Ontology (GO) term enrichment analysis Gene Ontology (GO) term enrichment analysis is a technique for interpreting a set of affected genes generated from high... 2020.05.30 未分類
未分類 Run a Linux commands in Jupyter notebooks This can be useful when you work on Google Colab and you want to download a dataset from somewhere. %%bash wget unzi... 2020.05.23 未分類
未分類 How to use your custom modules in Jupyter notebooks If you want to load your custom modules in the parental directory, add the following lines of codes: import sys sys.... 2020.05.23 未分類