Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #3452
| Newsgroups | comp.graphics.apps.gnuplot |
|---|---|
| Date | 2016-11-12 14:33 -0800 |
| Message-ID | <1849e171-220f-4138-b8d5-416b419f464f@googlegroups.com> (permalink) |
| Subject | Plotting with gnuplot |
| From | mohammed mouhcine <mohammed.mouhcine1@gmail.com> |
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