BookmarkSubscribeRSS Feed
Kalai2008
Pyrite | Level 9

Hi,

I am trying to get the percentage using the levenshtein function, but the code is not working in SAS.

(x1-x2)/x1

 

(maX(length(stringa), length(stringb)) - levenshtein(stringa, stringb))) /

max(length(stringa),length(stringb)) as lev_perc

 

PS: I need to run the program in EAP hive using SAS, so i need to use the function that is compatible to hive too.

 

Thanks for checking

 

3 REPLIES 3
ChrisHemedinger
Community Manager

Maybe you want the COMPGED function, which is the Levenshtein distance in SAS.

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!
ballardw
Super User

It think that should be COMPLEV function if you want the specific Levenshtein distance.

Kalai2008
Pyrite | Level 9


Thanks, I have tried both functions and not working.

COMPGED(stringa, stringb) AS VALUE1,

COMPLEV(stringa, stringb) AS VALUE2,

 

ERROR: Prepare error: Error while compiling statement: FAILED: SemanticException [Error 10011]: Line 1:53 Invalid

function 'COMPGED'

 

ERROR: Prepare error: Error while compiling statement: FAILED: SemanticException [Error 10011]: Line 1:53 Invalid

function 'COMPLEV'

 

May be its not working in Hive EAP

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 3 replies
  • 1171 views
  • 1 like
  • 3 in conversation