Ume Channel
05/01/2025, 6:21 PMUme Channel
05/01/2025, 6:22 PMUme Channel
05/01/2025, 6:45 PMx(column = "country")
y(column = "totalLibries")
Anyways - I understand now why there's a column names - Just asking what if there's no column names
x(column = 1)
y(column = 2)
Andrei Kislitsyn
05/01/2025, 10:24 PMfirstRowIsHeader = false
in readExcel
.Andrei Kislitsyn
05/01/2025, 10:30 PMdf.plot {
line {
x(getColumn(0))
y(getColumn(1))
}
}
BUT it won't help you if you already read file incorrectly and your first row is used as a header.
So, just read your excel with firstRowIsHeader = false
as I said before. Then you will have column names like "A", "B", etc - you can use them for plotting:
df.plot {
line {
x(A)
y(B)
}
}
But better rename them first 😄.Ume Channel
05/02/2025, 8:24 PM