I have a plot for data from one file, and in another file there is the average value. Is it possible to print out a textbox of the content of that second file to my plot as a string?
-
Can you post the content and structure of the file with the average value?vaettchen– vaettchen2015-11-10 00:25:55 +00:00Commented Nov 10, 2015 at 0:25
-
The whole file contains two lines: Average value: 303.287Suzanka– Suzanka2015-11-10 08:21:19 +00:00Commented Nov 10, 2015 at 8:21
Add a comment
|
1 Answer
set label 1 at graph 0.1, graph 0.9 system("cat secondfile")
Here the x position of the textbox would be 0.1 graph width and the y position would be 0.9 graph height, so the textbox will be in the upper left corner inside the graph.
1 Comment
Suzanka
Thank you! Unfortunately I have low reputation, so can't mark your answer as helpful.