{-| Module : Gargantext.Text.Metrics.CharByChar Description : All parsers of Gargantext in one file. Copyright : (c) CNRS, 2017 - present License : AGPL + CECILL v3 Maintainer : team@gargantext.org Stability : experimental Portability : POSIX Mainly reexport functions in @Data.Text.Metrics@ -} {-# LANGUAGE NoImplicitPrelude #-} module Gargantext.Text.Metrics.CharByChar (levenshtein , levenshteinNorm , damerauLevenshtein , damerauLevenshteinNorm , overlap , jaccard , hamming ) where import Data.Text (Text) import GHC.Real (Ratio) import qualified Data.Text.Metrics as DTM import Gargantext.Prelude --noApax :: Ord a => Map a Occ -> Map a Occ --noApax m = M.filter (>1) m {- * Example de titre -} -- | This module provide metrics to compare Text -- starting as an API rexporting main functions of the great lib -- text-metrics of Mark Karpov -- | Levenshtein Distance -- In information theory, Linguistics and computer science, -- the Levenshtein distance is a string metric for measuring -- the difference between two sequences. -- See: https://en.wikipedia.org/wiki/Levenshtein_distance -- levenshtein :: Text -> Text -> Int levenshtein = DTM.levenshtein -- | Return normalized Levenshtein distance between two 'Text' values. -- Result is a non-negative rational number (represented as @'Ratio' -- 'Data.Numeric.Natural'@), where 0 signifies no similarity between the -- strings, while 1 means exact match. -- levenshteinNorm :: Text -> Text -> Ratio Int levenshteinNorm = DTM.levenshteinNorm -- | Return Damerau-Levenshtein distance between two 'Text' values. The -- function works like 'levenshtein', but the collection of allowed -- operations also includes transposition of two /adjacent/ characters. -- See also: -- -- damerauLevenshtein :: Text -> Text -> Int damerauLevenshtein = DTM.damerauLevenshtein -- damerau-Levenshtein distance normalized -- damerauLevenshteinNorm :: Text -> Text -> Ratio Int damerauLevenshteinNorm = DTM.damerauLevenshteinNorm -- Treating inputs like sets -- | Return overlap coefficient for two 'Text' values. Returned value -- is in the range from 0 (no similarity) to 1 (exact match). Return 1 -- if both 'Text' values are empty. -- -- See also: . overlap :: Text -> Text -> Ratio Int overlap = DTM.overlap -- | Jaccard distance -- measures dissimilarity between sample sets jaccard :: Text -> Text -> Ratio Int jaccard = DTM.jaccard -- | Hamming Distance -- In information theory, the Hamming distance between two strings of -- equal length is the number of positions at which the corresponding -- symbols are different. In other words, it measures the minimum number of -- substitutions required to change one string into the other -- See: https://en.wikipedia.org/wiki/Hamming_distance hamming :: Text -> Text -> Maybe Int hamming = DTM.hamming