- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Contour Plot
Please, I humbly ask for help on how to make a contour plot of the type I have attached.
4 REPLIES 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Contour Plot
Hi,
It is difficult to provide a valid answer without knowing the type and format of your data table. Could you share either the actual data (if it is not confidential) or a mock table showing how your data is organized and formatted.
Best,
TS
Thierry R. Sornasse
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Contour Plot
Graph Builder(
Size( 400, 832 ),
Variables( X( :weight ), Y( :height ), Group X( :sex ), Group Y( :age ) ),
Elements( Contour( X, Y, Legend( 5 ) ) )
);
DragAndDrop height and weight first, then sex and age...may make it easier.
Craige
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Contour Plot
Hi,
Of note: I believe that the original post was about plotting X, Y, and Z values as contours, hence the Frequency field should be used as well
Best,
TS
Thierry R. Sornasse
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Contour Plot
Hi,
The best option is to use the Contour Plot platform under the Graph menu with your data organized as X, Y, and Z columns
Contour Plot(
X( :X, :Y ),
Y( :Z ),
Show Data Points( 0 ),
Fill Areas( 1 ),
Label Contours( 0 ),
Transform( "None" ),
Color Theme( "Jet" ),
Specify Contours( Min( -100 ), Max( 150 ), N( 6 ) ),
);
OUPUT:
Where Z = X + Y (as an example)
Best,
TS
Thierry R. Sornasse