# read into R
trait <- read.csv("{{ this_trait.display_name}}.csv", header = TRUE, comment.char = "#")
# read into python
import pandas as pd
trait = pd.read_csv("{{ this_trait.display_name}}.csv", header = 0, comment = "#")
Loading... |