1. Data Types
1.1. Numerical
1.1.1. Real
1.1.1.1. AKA **float** in Python
1.1.2. Integer
1.1.3. Complex
1.2. Logical
1.2.1. AKA **boolean** in Python
1.3. Categorical
1.3.1. Nominal
1.3.2. Ordinal
1.4. Date
1.5. Character or String
2. Simple Data Structures
2.1. Common between R and Python
2.1.1. Vector
2.1.1.1. Non-native
2.1.1.1.1. Python
2.1.2. List
2.2. Only Python
2.2.1. Tuple
2.2.2. Set
2.3. Operations
2.3.1. Create
2.3.1.1. Python
2.3.1.2. R
2.3.2. Access
2.3.2.1. List
2.3.2.1.1. Python
2.3.2.1.2. R
2.3.2.2. Vector
2.3.2.2.1. Python
2.3.2.2.2. R
2.3.2.3. Set
2.3.2.3.1. Python
2.3.2.4. Tuple
2.3.2.4.1. Python
2.3.3. Replace
2.3.3.1. by Position
2.3.3.1.1. List
2.3.3.1.2. Vector
2.3.3.1.3. Set
2.3.3.1.4. Tuple
2.3.3.2. by Value
2.3.3.2.1. List
2.3.3.2.2. Vector
2.3.3.2.3. Set
2.3.3.2.4. Tuple
2.3.4. Delete
2.3.4.1. by Position
2.3.4.1.1. Tuple
2.3.4.1.2. List
2.3.4.1.3. Set
2.3.4.1.4. Vector
2.3.4.2. by Value
2.3.4.2.1. List
2.3.4.2.2. Vector
2.3.4.2.3. Set
2.3.4.2.4. Tuple
2.3.5. Insert
2.3.5.1. List
2.3.5.1.1. Python
2.3.5.1.2. R
2.3.5.2. Vector
2.3.5.2.1. Python
2.3.5.2.2. R
2.3.5.3. Set
2.3.5.3.1. Python
2.3.5.4. Tuple
2.3.5.4.1. Not possible in Python
2.3.6. Concatenate
2.3.6.1. List
2.3.6.1.1. Python
2.3.6.1.2. R
2.3.6.2. Vector
2.3.6.2.1. Python
2.3.6.2.2. R
2.3.6.3. Set
2.3.6.3.1. Python
2.3.6.4. Tuple
2.3.6.4.1. Python
3. not simple Structures
3.1. Only Python
3.1.1. Dictionary
3.1.1.1. Create
3.1.1.2. Access
3.1.1.3. Replace
3.1.1.4. Delete
3.1.1.5. Insert
3.2. Common between R and Python
3.2.1. Data Frame
3.2.1.1. Native
3.2.1.1.1. R
3.2.1.2. Non-native
3.2.1.2.1. Python
3.2.1.3. Basic Operations
3.2.1.3.1. Create
3.2.1.3.2. Access
3.2.1.3.3. Replace
3.2.1.3.4. Delete
3.2.1.3.5. Insert
3.2.1.4. Complex operations
3.2.1.4.1. Concatenating
3.2.1.4.2. Merging
3.2.1.4.3. Aggregating
3.2.1.4.4. Reshaping
3.2.2. Spatial Data Frame
3.2.2.1. Python
3.2.2.1.1. Need to install **GeoPandas**
3.2.2.2. R
3.2.2.2.1. Need to install **sf**
3.2.3. Graphs
3.2.3.1. Python
3.2.3.1.1. Need to install **Networkx**
3.2.3.2. R
3.2.3.2.1. Need to install **igraph**