Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #3452
| X-Received | by 10.157.16.39 with SMTP id h36mr3705239ote.95.1478989990146; Sat, 12 Nov 2016 14:33:10 -0800 (PST) |
|---|---|
| X-Received | by 10.157.8.134 with SMTP id 6mr823002otf.17.1478989990119; Sat, 12 Nov 2016 14:33:10 -0800 (PST) |
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.glorb.com!q124no168621itd.0!news-out.google.com!c26ni818itd.0!nntp.google.com!q124no1114950itd.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail |
| Newsgroups | comp.graphics.apps.gnuplot |
| Date | Sat, 12 Nov 2016 14:33:09 -0800 (PST) |
| Complaints-To | groups-abuse@google.com |
| Injection-Info | glegroupsg2000goo.googlegroups.com; posting-host=41.92.102.153; posting-account=jqJ3-QoAAABuVMiNBqyAYkGFJILIo0V4 |
| NNTP-Posting-Host | 41.92.102.153 |
| User-Agent | G2/1.0 |
| MIME-Version | 1.0 |
| Message-ID | <1849e171-220f-4138-b8d5-416b419f464f@googlegroups.com> (permalink) |
| Subject | Plotting with gnuplot |
| From | mohammed mouhcine <mohammed.mouhcine1@gmail.com> |
| Injection-Date | Sat, 12 Nov 2016 22:33:10 +0000 |
| Content-Type | text/plain; charset=UTF-8 |
| Xref | csiph.com comp.graphics.apps.gnuplot:3452 |
Show key headers only | View raw
I want to reproduce the same plots with gnuplot.
Here is the data file, which corresponds to the blue color.
Please, it is someone can help me::
https://sourceforge.net/p/gnuplot/discussion/5925/thread/52e8673d/04ce/attachment/16.png
my data file:
https://sourceforge.net/p/gnuplot/discussion/5925/thread/52e8673d/04ce/attachment/logtb_vs_m12_2_NU1.hist
my script :
# Set terminal and output
set terminal postscript enhanced color
set output 'plot.pdf'
# Set various features of the plot
set pm3d
set dgrid3d
unset surface # don't need surfaces
set view map
set contour
set key outside
set cntrparam cubicspline # smooth out the lines
set cntrparam levels 50 # sets the num of contour lines
set pm3d interpolate 20,20 # interpolate the color
# Set a nice color palette
set palette model RGB defined ( 0"black", 1"blue", 2"cyan",3"green",4"yellow",\
5"red",8"purple" )
# Axes
set xlabel "tan({/Symbol \b })"
set ylabel "m_{12}^{2}(10^6 GeV)"
set format x '%.1f'
set format y '%.1f'
set format z '%.2f'
set size square
# Now plot
plot 'logtb_vs_m12_2_NU1.hist' using (exp($1)):($2/1000000):(log($3)) with points lc palette pt 5 ps 3 t ""
Back to comp.graphics.apps.gnuplot | Previous | Next — Next in thread | Find similar
Plotting with gnuplot mohammed mouhcine <mohammed.mouhcine1@gmail.com> - 2016-11-12 14:33 -0800
Re: Plotting with gnuplot Karl Ratzsch <mail.kfr@gmx.net> - 2016-11-13 13:04 +0100
Re: Plotting with gnuplot mohammed mouhcine <mohammed.mouhcine1@gmail.com> - 2016-11-13 06:08 -0800
Re: Plotting with gnuplot Gavin Buxton <gavinbuxton@gmail.com> - 2016-11-13 06:48 -0800
Re: Plotting with gnuplot mohammed mouhcine <mohammed.mouhcine1@gmail.com> - 2016-11-13 08:05 -0800
Re: Plotting with gnuplot Karl Ratzsch <mail.kfr@gmx.net> - 2016-11-14 02:58 +0100
Re: Plotting with gnuplot mohammed mouhcine <mohammed.mouhcine1@gmail.com> - 2016-11-14 02:59 -0800
Re: Plotting with gnuplot Karl Ratzsch <mail.kfr@gmx.net> - 2016-11-14 14:39 +0100
csiph-web