Skip to content

Commit

Permalink
Changed read.csv to read.table.
Browse files Browse the repository at this point in the history
  • Loading branch information
MMenchero committed Dec 7, 2023
1 parent 1463d58 commit 815e9aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vignettes/cross-validation.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ library(nixtlar)
## 1. Load data

```{r}
df <- read.csv('https://raw.githubusercontent.com/Nixtla/transfer-learning-time-series/main/datasets/electricity-short.csv')
df <- read.table('https://raw.githubusercontent.com/Nixtla/transfer-learning-time-series/main/datasets/electricity-short.csv', sep = ",", header = TRUE)
head(df)
```

Expand Down
2 changes: 1 addition & 1 deletion vignettes/nixtlar.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ You don't need to validate your token every time you set it up, only when you wa
Once your token has been set up, you're ready to use TimeGPT. Here we'll show you how this is done using a dataset that contains prices of different electricity markets.

```{r}
df <- read.csv('https://raw.githubusercontent.com/Nixtla/transfer-learning-time-series/main/datasets/electricity-short.csv')
df <- read.table('https://raw.githubusercontent.com/Nixtla/transfer-learning-time-series/main/datasets/electricity-short.csv', sep = ",", header = TRUE)
head(df)
```

Expand Down

0 comments on commit 815e9aa

Please sign in to comment.