- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi
I'm looking for code that can keep records who appeared once in my dataset FDFD, and one appearance for records that repeated more than one time.
my code will be for these variables A, B, C, P, PEAKYIELD, and TmDAYS.
Regards
A B C P peakYield tmdays
45.50222622 0.155650915 0.134354472 2.319707636 39.84559673
22.52354346 0.518806327 0.175347086 2.644223471 23.5361343 2.958739376
22.52354346 0.518806327 0.175347086 2.644223471 23.5361343 2.958739376
37.70843347 0.228103848 0.124659053 2.557124486 34.45329026 1.829821767
37.70843347 0.228103848 0.124659053 2.557124486 34.45329026 1.829821767
37.70843347 0.228103848 0.124659053 2.557124486 34.45329026 1.829821767
37.70843347 0.228103848 0.124659053 2.557124486 34.45329026 1.829821767
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
What do you want as output?
You're either looking at PROC SORT, which can remove duplicates or unique records as desired.
If you're looking to flag the records you need to use BY group processing, this post has an example with multiple by groups.
https://stats.idre.ucla.edu/sas/faq/how-can-i-create-an-enumeration-variable-by-groups/
Please include any code you've tried so far, so we can provide more direction or indicate what you need to change.
@Barkamih wrote:
Hi
I'm looking for that can keep records that appeared once, and appearance for records that repeated more than one time.
my code will be for these variables A, B, C, P, PEAKYIELD ANDTNDAYS.
Regards
A B C P peakYield tmdays 45.50222622 0.155650915 0.134354472 2.319707636 39.84559673 22.52354346 0.518806327 0.175347086 2.644223471 23.5361343 2.958739376 22.52354346 0.518806327 0.175347086 2.644223471 23.5361343 2.958739376 37.70843347 0.228103848 0.124659053 2.557124486 34.45329026 1.829821767 37.70843347 0.228103848 0.124659053 2.557124486 34.45329026 1.829821767 37.70843347 0.228103848 0.124659053 2.557124486 34.45329026 1.829821767 37.70843347 0.228103848 0.124659053 2.557124486 34.45329026 1.829821767
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
What do you want as output?
You're either looking at PROC SORT, which can remove duplicates or unique records as desired.
If you're looking to flag the records you need to use BY group processing, this post has an example with multiple by groups.
https://stats.idre.ucla.edu/sas/faq/how-can-i-create-an-enumeration-variable-by-groups/
Please include any code you've tried so far, so we can provide more direction or indicate what you need to change.
@Barkamih wrote:
Hi
I'm looking for that can keep records that appeared once, and appearance for records that repeated more than one time.
my code will be for these variables A, B, C, P, PEAKYIELD ANDTNDAYS.
Regards
A B C P peakYield tmdays 45.50222622 0.155650915 0.134354472 2.319707636 39.84559673 22.52354346 0.518806327 0.175347086 2.644223471 23.5361343 2.958739376 22.52354346 0.518806327 0.175347086 2.644223471 23.5361343 2.958739376 37.70843347 0.228103848 0.124659053 2.557124486 34.45329026 1.829821767 37.70843347 0.228103848 0.124659053 2.557124486 34.45329026 1.829821767 37.70843347 0.228103848 0.124659053 2.557124486 34.45329026 1.829821767 37.70843347 0.228103848 0.124659053 2.557124486 34.45329026 1.829821767
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I did this code but this one has deleted records that app
Data merged;
set merged;
by A B C P PEAKYIELD TMDAYS notsorted;
if not first.A then A=.;
if not first.B then B=.;
if not first.C then C=.;
if not first.P then P=.;
if not first.LOGTM then TMDAYS=.;
if not first.PEAKYIELD then PEAKYIELD=.;
run;
eared only one time
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
What do you want as output?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I got my code, I was having a simple mistake in my first code
regards