Skip to content

Links for explaining topics, textbooks, datasets, etc.

Notifications You must be signed in to change notification settings

eitrheim/Useful-Notes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 

Repository files navigation

Useful-Notes

Command Line Promps

Update all Python packages with pip

  • pip list --outdated --format=freeze | grep -v '^-e' | cut -d = -f 1 | xargs -n1 pip install -U
    or
  • pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U

Install package without installing the dependencies

  • pip install -U --no-deps mypackage

ssh USER@hadoop.rcc.uchicago.edu login to RCC, then enter password
ls list all directories
mkdir newdir makes new directory named newdir
rm -rf newdir deletes directory named newdir
clear clears screen
cd newdir goes into newdir
cd goes to home
pwd to see which file you're in
rm file to remove 'file'
ssh user@host connect to host as user
ctrl+c halt current command
crtl+z stop current command
ctrl+d log out of current session
ctrl+w erases one word in current line
ctrl+u erases whole line
!! repeat last command
exit log out of current session
wget <url> download file directly
mv orignalFile name newFileName to change file name
tar zxvf instacart.tar.gz unzip file
hadoop fs -put /home/$USER/data/instacart /user/$USER/instacart to put it to hadoop

Classes

Tips, Tutorials, How-tos, Visualizations

Topics Explained or Visualized

  • neural network architectures cheatsheet

Textbooks

Datasets

Spatial Datasets/Sources

Plotting in R

Learning

Social Science/Planning

  • OpenStreetMap can use API or osmdata R package to get data CMAP Data Hub: Chicago Metropolitan Agency for Planning (36 datasets, including community areas)
  • NYU Spatial Data Repository lots of data and links to other institutions
  • ICPSR data portal data archive for the social sciences

Land Use/Ecological

Health/Demographics

Historical

Others

About

Links for explaining topics, textbooks, datasets, etc.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published