Data Structures _simple

Iniziamo. È gratuito!
o registrati con il tuo indirizzo email
Data Structures _simple da Mind Map: Data Structures _simple

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. Character or String

1.4. Categorical

1.4.1. AKA **categorical** in Python

1.4.2. AKA **factor** in R

1.5. Date

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. Modify

2.3.3.1. Replace

2.3.3.1.1. by Position

2.3.3.1.2. by Value

2.3.3.2. Delete

2.3.3.2.1. by Position

2.3.3.2.2. by Value

2.3.3.3. Insert

2.3.3.3.1. List

2.3.3.3.2. Vector

2.3.3.3.3. Set

2.3.3.3.4. Tuple

2.3.4. Concatenate

2.3.4.1. List

2.3.4.1.1. Python

2.3.4.1.2. R

2.3.4.2. Vector

2.3.4.2.1. Python

2.3.4.2.2. R

2.3.4.3. Set

2.3.4.3.1. Python

2.3.4.4. Tuple

2.3.4.4.1. Python