Greasy Fork is available in English.

Desmos csv import

Just a little helper userscipt to convert csv into a format that desmos likes

作者
steelpancake
日安装量
0
总安装量
2
评分
0 0 0
版本
2024-11-12
创建于
2025-01-24
更新于
2025-01-24
大小
36.0 KB
许可证
MIT
适用于

HOW TO USE (in browser console with desmos open)

csv = `your csv as a string`
to_add = desmoscsv.csv.toDesmosTable(csv)
state = Calc.getState()
state.expressions.list.push(to_add)
Calc.setState(state)