Skip to main content

Questions tagged [gnuplot]

Gnuplot is a portable command-line driven graphing utility for Linux, OS/2, MS Windows, OSX, VMS, and many other platforms.

Filter by
Sorted by
Tagged with
0 votes
1 answer
42 views

GNU plotfont is a simple utility that will produce a character map for any font available to the GNU plotting utilities graph, plot, pic2plot, and tek2plot, and the GNU libplot graphics library on ...
e___e's user avatar
  • 55
0 votes
1 answer
158 views

I have a log file like this: Starting time loop Courant Number mean: 0 max: 0 deltaT = 0.0012 Time = 0.0012 DILUPBiCGStab: Solving for Ux, Initial residual = 1, Final residual = 4.8276e-08, No ...
mle0312's user avatar
  • 163
1 vote
1 answer
3k views

I have many data files in a directory. Each data file has various columns and I want vector plots using a few of them. Earlier I was generating .png files using a .gp script and combining them into a ...
damaihati's user avatar
  • 143
2 votes
2 answers
289 views

I have the following data that I am processing to get the 1st and 5th column, convert the D format to E format and delete rows that have gibberish numbers such as 9.410-316. DEG = 1.500 2....
csnl's user avatar
  • 35
1 vote
0 answers
152 views

My script takes the data from the third and 5th columns of the input datafile considering only the lines where the value from the 5th column > 0.05, producing a bar graph cat <<EOS | gnuplot &...
James Starlight's user avatar
1 vote
1 answer
2k views

I want to plot several files just executing a bash script which calls Gnuplot. My idea of a possible bash script is: #!/bin/bash gnuplot plot 'my_first_file.dat' u 1:2 replot 'my_second_file.dat' u 1:...
Siderius's user avatar
  • 123
1 vote
0 answers
1k views

I was using gnuplot in Ubuntu with wxt terminal, and when I type in plot sin(x), I get an error message: Unable to init server: Could not connect: Connection refused 23:00:40: Error: Unable to ...
Limona2000's user avatar
2 votes
0 answers
207 views

I am trying to plot some data using gnuplot My input is similar to $ go run . | tail 410ms-420ms 14260 420ms-430ms 13654 430ms-440ms 13344 440ms-450ms 13156 450ms-460ms 12829 460ms-470ms 12463 470ms-...
mh-cbon's user avatar
  • 143
1 vote
1 answer
309 views

I would like to run a list of Gnuplot commands in parallel. I'm getting an "Unrecognized option" error: $ ./parallel-plot-sine.sh | parallel -q gnuplot unrecognized option -e "set ...
EarthIsHome's user avatar
1 vote
1 answer
268 views

Here I have a data which I would to plot with line using Gnuplot. Using the code pl 'Sphere_ISOTEST_data.txt' w p I get below figure but, using pl 'Sphere_ISOTEST_data.txt' w l I get the following: ...
newstudent's user avatar
1 vote
0 answers
257 views

I had a previous version of XQuartz on my Mac High Sierra 10.13.6 and I was running gnuplot (not very recent version, 4...). Then I updated XQuartz and gnuplot does not start anymore. I receive the ...
Fred's user avatar
  • 21
1 vote
1 answer
255 views

I have created a gnu plot control file (.plt) with number of nodes 40 to 80 with gap of 10 and last value as 84. when I generate output I don't get value 84 shown in xtics. I want values from 40 to 80 ...
user3696623's user avatar
0 votes
1 answer
3k views

I want to plot a file using gnuplot from within a bash script. For this I used the following command: gnuplot --persist -e "plot file1.dat" It shows the plot in a window but I want to look ...
physu's user avatar
  • 201
0 votes
0 answers
483 views

I have a simple shell script to copy certain data file from one directory into the current working directory and I plot this file along with another file in the working directory using gnuplot. The ...
prananna's user avatar
0 votes
1 answer
417 views

I have plotted a file containing string and numbers as x labels with following code plot "fileaskinf.dat" u 2:xticlabels(1) t "teams" The file contents are A-Team 0.05 0.5 0....
user3696623's user avatar
1 vote
1 answer
2k views

I want to plot a set of data stored in different files: file.txt_100K file.txt_200K file.txt_300K I came up with the following bash script: 1 #!/bin/bash 2 3 filename=file.txt_ 4 5 ...
physu's user avatar
  • 201
0 votes
1 answer
181 views

I stumbled across this beautiful program ncdu and it definitely is a great program to view your diskspace. But however if i want to keep a track of my disk usage, it provides not options to export the ...
Mercurial's user avatar
  • 184
2 votes
1 answer
283 views

Does anyone know whether there is a way to run gnuplot with quadruple arithmetic precision? E.g. When you want to plot a line and you want to subtract a value like "2....
Jannis Erhard's user avatar
3 votes
1 answer
1k views

Is there an easy way to make gnuplot automatically show y1=0 and y2=0 at the same height in the image while the y1 and y2 axes have different scales? The only way I am aware is to make sure the ...
T. Zack Crawford's user avatar
0 votes
2 answers
5k views

code: #!/usr/bin/env bash # download death data wget -O Deaths.txt http://www.randomservices.org/random/data/Deaths.txt wget -O Pumps.txt http://www.randomservices.org/random/data/Pumps.txt # Delete ...
Yiling Liu's user avatar
-1 votes
2 answers
5k views

How to plot all files in directory in gnuplot? I mean the when I have 15 data files I will get 15 graphs. plot '???' with lines
Lukáš Altman's user avatar
0 votes
1 answer
2k views

I have the following GNUplot file: set title "Performance of Quicksort over random data sets" set yrange [0:80000] set style data histogram set style histogram cluster set style fill solid border -1 ...
Johan Sjolen's user avatar
3 votes
1 answer
974 views

E.g., on the bash command line I can type a δ character using the Compose key and an ad hoc ~/.XCompose file, but if I try to do the same in Gnuplot what I get is 13:48 boffi@debian:~ $ δ bash: δ: ...
gboffi's user avatar
  • 1,406
1 vote
2 answers
2k views

Can I use a here document to pass a gnuplot script to gnuplot and also have commandline line arguments passed to gnuplot? In my bash file, I would normally write: #!/bin/bash #set up code in here... ...
masher's user avatar
  • 155
0 votes
1 answer
407 views

I'm trying to plot the data of 100x11 array in plot using gnuplot. I created a .gnu file to generate plot but unable to get jitter plot. I'm using the below code set terminal pngcairo size 1280,800 ...
Venkat's user avatar
  • 1