Reminder of the format file containing the observation data
csv
,
.
UTF-8
Spreadsheet
All spreadsheets can read csv files according to the input characteristics of the file.
R
SNOTData <- read.table("Data_SNOT_22_10_2019_15:24:06.csv",header=TRUE,sep=",",encoding="UTF-8")
python
import pandas as pd
fichier=' ....'
obs=pd.read_csv(fichier,index_col=False)
obs_date=obs["Date"][:]
obs_var1=obs["lgt.pz_cbdv_amont_WTD"][:]
obs_var2=obs["lgt.pz_cbdv_aval_WTD"][:]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.