I have data that have 3 points to display in a 3D coordinate system. I want a line between each point and the coordinate origin (0 0 0). How can I draw these lines not connecting the points with each other but only with the origin?
I'm not very into gnuplot yet: I'm using the following code to display my data:
splot "C:/a/Drehmatrizenxyz.txt" with lines
But this only connects the points, which is exactly what I do not want.
Thank you.

Data file contains six values for each line. From origin is (0 0 0 x y z)
Example - plot vectors <-1,2,-4>, <-2,0,1> & <2,9,2>
file.dat:
0 0 0 -1 2 -4
0 0 0 -2 0 1
0 0 0 2 9 2
gnuplot> splot 'file.dat' with vectors
vectors