Skip to content

Commit 945b589

Browse files
20240414 - data management
1 parent fdff878 commit 945b589

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

dataManagement.qmd

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: "Data Management"
3+
execute:
4+
echo: true
5+
error: true
6+
code-fold: true
7+
jupyter: python3
8+
format:
9+
html:
10+
code-fold: false
11+
code-tools:
12+
source: true
13+
toggle: true
14+
---
15+
16+
# Import Data {#importData}
17+
18+
Importing data takes syntax of the following form for `.csv` files:
19+
20+
```{python}
21+
#| eval = FALSE
22+
23+
import pandas as pd
24+
25+
data = pd.read_csv("filepath/filename.csv")
26+
```

0 commit comments

Comments
 (0)