Plugin combination for plotting from csv file

What I’m trying to do

Hello.

I would like to plot data from a csv file. These files are created from Excel or R.

Things I have tried

I tried loading a csv file with CSV Table, then use Chart to plot it. Example code such as below. Tried to give it an id using “^”. The Chart block then says “Couldn’t render Chart: There is no table at that id and/or file”. It is possible to load a table using CSV Table, gives it an id, and then make a chart from that table?

\```csvtable
columns:
- time
- psl
source: CSV/test.csv
/```
^Table1

/```chart
id: Table1
type: line
labels: [time]
series:
  - title: psl
    data: []
tension: 0.2
width: 80%
labelColors: false
fill: false
beginAtZero: false
/```

I looked at this page, https://charts.phibr0.de/Dataview%20Integration, and it seems really complicated. I like the CSV Table, because its simple and the CSV files I’m working on ususally is already processed. Is there a way to intergrate CSV Table with Obsidian Charts?

Is there any other plugin or plugin combination that would allow me to make a simple plot from a csv fille?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.