Get Started. It's Free
or sign up with your email address
2. The Template by Mind Map: 2. The Template

1. **I**. Open you GitHub

1.1. Go to "**Organizations**"

1.1.1. Create an **organization**

1.1.1.1. set it up

1.1.2. Create a **repository** in your organization

1.1.2.1. set it up

1.1.2.1.1. choose simple name

1.1.2.1.2. make sure it is public

1.1.2.1.3. always add a README

1.1.2.1.4. Do not deal with **gitignore**

1.1.2.1.5. Choose one license

1.2. Clone the repo to your computer (make sure you have GitHub **desktop**)

1.2.1. never inside another app's folder

1.2.2. never inside another repo

1.2.3. could be anywhere, choose a location easy to find

1.2.4. You will use this repo for R or Python (not both)

2. II. In Your **LOCAL** repo (in your personal computer)

2.1. Put some code in the repo

2.1.1. Use these data

2.1.1.1. download the data into the repo in your laptop

2.1.2. Use this code

2.1.2.1. R

2.1.2.1.1. install.packages("readxl") library(readxl) fileName="wapubschool.xlsx" dataExcel=read_excel(fileName) head(dataExcel)

2.1.2.2. Python

2.1.2.2.1. pip install openpyxl pandas import pandas as pd fileName="wapubschool.xlsx" dataExcel=pd.read_excel(fileName) dataExcel.head()

2.1.3. export the file as an html with this name **index.html**

2.2. commit

2.3. push

3. III. Publish your work

3.1. use pages!

3.1.1. final steps

3.1.1.1. wait for link to appear!