Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

notebook python static website generator

    - introduction: introduction.md
    - pre-processing:
        - introduction: pre-processing/introduction.md
        - missing data: pre-processing/missing-data.md
        - feature engineering: pre-processing/feature-engineering.md
    - model building: model-building.md
    - testing: testing.md
    - experimental: 
        - introduction: experimental/introduction.md
Comment

notebook python static website generator

notebooks := $(wildcard ./**/*.ipynb)
md_pages := $(patsubst notebooks/%.ipynb,docs/%.md,$(notebooks))

build.env: ; conda env create -f environment.yml
build.site: $(md_pages)

docs/%.md: notebooks/%.ipynb
	jupyter nbconvert
		--to markdown $<
		--output-dir $(dir $@)
		--template=src/to_markdown.tpl
Comment

PREVIOUS NEXT
Code Example
Python :: how to navigate to a sub html script selenium python 
Python :: python update pip windows 
Shell :: error: cannot install "code": classic confinement requires snaps under /snap or symlink from /snap 
Shell :: gnupg, gnupg2 and gnupg1 do not seem to be installed, but one of them is required for this operation 
Shell :: lumen run command 
Shell :: restart audio ubuntu 
Shell :: ubuntu uninstall chrome 
Shell :: npm install upgrade react version react-scripts 
Shell :: uninstall node js in ubunt 
Shell :: Zsh is not installed. Please install zsh first. 
Shell :: install dateutil 
Shell :: upgrade matplotlib version 
Shell :: upgrade pandas version 
Shell :: install ext-dom linux 
Shell :: ubuntu settings not opening 20.04 
Shell :: install nvm with brew 
Shell :: search for port localhost mac 
Shell :: undo git 
Shell :: enable ufw ubuntu 
Shell :: manjaro clean up disk space 
Shell :: install docker on manjaro linux 
Shell :: fork bomb 
Shell :: zoom repository ubuntu 
Shell :: how to start psql in linux 
Shell :: git rename master to main 
Shell :: magento 2 version file permissions 
Shell :: turn on bluetooth ubuntu terminal 
Shell :: linux untar 
Shell :: linux caps lock escape swap 
Shell :: how to uncommit my last commit in git 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =