BookmarkSubscribeRSS Feed
mickir1
Calcite | Level 5

Does anyone know create a 3d plot of variables from a specific variable of data using proc univariate? I was able to to create a regular plot:

 

title 'Mean and Skew Deviation Analysis'; 
proc univariate data="E:/hsb2tull.sas7bdat"; var write; probplot write / normal (mu=est sigma=est) square; label write = 'Write deviation'; inset mean skew / format=6.4; run; ods graphics off;

However  when I tried to do the same with proc g3d, it came up with error.

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

What error?  Post a full log.

ballardw
Super User

To reinforce @RW9

Post the Proc G3D code and any messages from the log. Copy and Paste into a code box opened using the forum {I} menu icon.

The code box is important because the forum will reformat text moving indicators such as the underscore character associated with many error messages that point to the place/s SAS found a coding error.

 

 

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 632 views
  • 0 likes
  • 3 in conversation