BookmarkSubscribeRSS Feed
danmet
Calcite | Level 5

Hej everybody.

I have a quick question on how to efficiently create a test data set.

I am working remotely with confidential data and I would like to create a fake data set with the same data structure so that I can do some programming on my local computer. As potentially many tables are affected, I would like to automatize this procedure as far as possible. Basically, I would like to do the following:

1. generate some code that creates a data set with the same variables/data types (a simple proc sql- describe table may do?)

2. save mean, std, and correlations (of number variables) and detect string data types of other variables.

3. create random data with the same of the statistical attributes of the original data.

4. the code should be flexible so that I can adjust it easily for different tables.

Any help is highly appreciated!!

Thanks

Daniel

2 REPLIES 2
ballardw
Super User

The first part is easy:

Data want;

     set have (obs=0);

run;

Creating fake data with mean and std is quite possible. Correlation I'm not so sure of, especially if you want to mantain correlation from  variable x to y1, y2, y3, etc. As when you create the dummy X you have a lot of constraints on the other variables that will be an interesting challenge.

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Could you not just annonymize the data you have, so anything identifiable would be replaced with some code + random number?

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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