I have two questions regarding ListLinePlot:
I plot three data on the same frame, I use
ListLinePlot, but the lines connecting the points connect them from the right instead of connecting the center of the pointsI want to plot thick points with thin lines I use the following code but for some reason "pointsize" doesn't work no matter what the size I write the points look the same
Note that the following is not the data I plot but I added arbitrary data so you can run the ListLinePlot:
num=Range[5];
n1={1,2,3,4,5};
n2={1.5,2.9,3.7,4.6,2.3};
n3={3.4,9.3,8,4,5}
d1=Table[{num[[i]],n1[[i]]},{i,1,Length[num]}];
d2=Table[{num[[i]],n2[[i]]},{i,1,Length[num]}];
d3=Table[{num[[i]],n3[[i]]},{i,1,Length[num]}];
ListLinePlot[{d1,d2,d3},PlotMarkers->Automatic,Frame->True,
PlotStyle->Thickness[0.001],PlotStyle->{PointSize[0.06]}]



d1,d2,d3– Nasser Jun 04 '18 at 12:51