Wolfram mathematica 如何通过ListPlot绘制的数据点获取直线?

Wolfram mathematica 如何通过ListPlot绘制的数据点获取直线?,wolfram-mathematica,Wolfram Mathematica,我有一组数据,我把它们串在一起 xx = {16, 128, 256, 1024, 2048, 4096, 16384, 32768} yy = {282991, 6182, 5521, 9072, 4874, 1043, 1168, 1225} Thread[{xx, yy}] 然后我说。。。ListPlot[线程[{xx,yy}]]。。。这给了我一组点,但我需要用一条线把它们连接起来。如果我使用ListLinePlot,那么我可以得到线,但没有点。我两者都需要。谢谢你的帮助。Show[Li

我有一组数据,我把它们串在一起

xx = {16, 128, 256, 1024, 2048, 4096, 16384, 32768}
yy = {282991, 6182, 5521, 9072, 4874, 1043, 1168, 1225}
Thread[{xx, yy}]

然后我说。。。ListPlot[线程[{xx,yy}]]。。。这给了我一组点,但我需要用一条线把它们连接起来。如果我使用ListLinePlot,那么我可以得到线,但没有点。我两者都需要。谢谢你的帮助。

Show[ListPlot[Thread[{xx,yy}]],ListPlot[Thread[{xx,yy}],Joined->True]]试试
Joined->True,Mesh->All
Show[ListPlot[Thread[{xx,yy}]],ListPlot[Thread[{xx,yy}],Joined->True]]试试
Joined->True,Mesh->All
ListLinePlot[Thread[{xx, yy}], PlotMarkers -> Automatic]