pre_solution2/docdiff.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Fri, 22 Jan 2021 10:37:55 +0000
changeset 388 0f7ed23161f9
parent 384 627a944c744b
permissions -rw-r--r--
update
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
283
3102d61edf45 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
     1
// Preliminary Part about Code Similarity
3102d61edf45 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
     2
//========================================
202
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
283
3102d61edf45 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
     5
object CW7a { 
202
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     7
//(1) Complete the clean function below. It should find
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     8
//    all words in a string using the regular expression
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     9
//    \w+  and the library function 
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    10
//
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11
//         some_regex.findAllIn(some_string)
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    12
//
203
e0420c7b8a19 updated
Christian Urban <urbanc@in.tum.de>
parents: 202
diff changeset
    13
//    The words should be Returned as a list of strings.
202
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    14
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    15
def clean(s: String) : List[String] = 
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    16
  ("""\w+""".r).findAllIn(s).toList
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    17
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    18
203
e0420c7b8a19 updated
Christian Urban <urbanc@in.tum.de>
parents: 202
diff changeset
    19
//(2) The function occurrences calculates the number of times  
e0420c7b8a19 updated
Christian Urban <urbanc@in.tum.de>
parents: 202
diff changeset
    20
//    strings occur in a list of strings. These occurrences should 
202
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    21
//    be calculated as a Map from strings to integers.
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    22
203
e0420c7b8a19 updated
Christian Urban <urbanc@in.tum.de>
parents: 202
diff changeset
    23
def occurrences(xs: List[String]): Map[String, Int] =
202
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    24
  (for (x <- xs.distinct) yield (x, xs.count(_ == x))).toMap
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    25
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    26
//(3) This functions calculates the dot-product of two documents
203
e0420c7b8a19 updated
Christian Urban <urbanc@in.tum.de>
parents: 202
diff changeset
    27
//    (list of strings). For this it calculates the occurrence
e0420c7b8a19 updated
Christian Urban <urbanc@in.tum.de>
parents: 202
diff changeset
    28
//    maps from (2) and then multiplies the corresponding occurrences. 
202
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    29
//    If a string does not occur in a document, the product is zero.
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    30
//    The function finally sums up all products. 
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    31
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    32
def prod(lst1: List[String], lst2: List[String]) : Int = {
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    33
    val words = (lst1 ::: lst2).distinct
203
e0420c7b8a19 updated
Christian Urban <urbanc@in.tum.de>
parents: 202
diff changeset
    34
    val occs1 = occurrences(lst1)
e0420c7b8a19 updated
Christian Urban <urbanc@in.tum.de>
parents: 202
diff changeset
    35
    val occs2 = occurrences(lst2)
202
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    36
    words.map{ w => occs1.getOrElse(w, 0) * occs2.getOrElse(w, 0) }.sum
384
627a944c744b updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 346
diff changeset
    37
}          
202
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    38
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    39
//(4) Complete the functions overlap and similarity. The overlap of
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    40
//    two documents is calculated by the formula given in the assignment
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    41
//    description. The similarity of two strings is given by the overlap
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    42
//    of the cleaned (see (1)) strings.  
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    43
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    44
def overlap(lst1: List[String], lst2: List[String]) : Double = {
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    45
    val m1 = prod(lst1, lst1)
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    46
    val m2 = prod(lst2, lst2) 
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    47
    prod(lst1, lst2).toDouble / (List(m1, m2).max)
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    48
}
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    49
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    50
def similarity(s1: String, s2: String) : Double =
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    51
  overlap(clean(s1), clean(s2))
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    52
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    53
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    54
/*
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    55
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    56
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    57
val list1 = List("a", "b", "b", "c", "d") 
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    58
val list2 = List("d", "b", "d", "b", "d")
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    59
203
e0420c7b8a19 updated
Christian Urban <urbanc@in.tum.de>
parents: 202
diff changeset
    60
occurrences(List("a", "b", "b", "c", "d"))   // Map(a -> 1, b -> 2, c -> 1, d -> 1)
e0420c7b8a19 updated
Christian Urban <urbanc@in.tum.de>
parents: 202
diff changeset
    61
occurrences(List("d", "b", "d", "b", "d"))   // Map(d -> 3, b -> 2)
202
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    62
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    63
prod(list1,list2) // 7 
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    64
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    65
overlap(list1, list2)   // 0.5384615384615384
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    66
overlap(list2, list1)   // 0.5384615384615384
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    67
overlap(list1, list1)   // 1.0
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    68
overlap(list2, list2)   // 1.0
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    69
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    70
// Plagiarism examples from 
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    71
// https://desales.libguides.com/avoidingplagiarism/examples
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    72
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    73
val orig1 = """There is a strong market demand for eco-tourism in
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    74
Australia. Its rich and diverse natural heritage ensures Australia's
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    75
capacity to attract international ecotourists and gives Australia a
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    76
comparative advantage in the highly competitive tourism industry."""
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    77
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    78
val plag1 = """There is a high market demand for eco-tourism in
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    79
Australia. Australia has a comparative advantage in the highly
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    80
competitive tourism industry due to its rich and varied natural
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    81
heritage which ensures Australia's capacity to attract international
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    82
ecotourists."""
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    83
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    84
similarity(orig1, plag1)
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    85
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    86
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    87
// Plagiarism examples from 
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    88
// https://www.utc.edu/library/help/tutorials/plagiarism/examples-of-plagiarism.php
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    89
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    90
val orig2 = """No oil spill is entirely benign. Depending on timing and
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    91
location, even a relatively minor spill can cause significant harm to
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    92
individual organisms and entire populations. Oil spills can cause
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    93
impacts over a range of time scales, from days to years, or even
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    94
decades for certain spills. Impacts are typically divided into acute
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    95
(short-term) and chronic (long-term) effects. Both types are part of a
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    96
complicated and often controversial equation that is addressed after
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    97
an oil spill: ecosystem recovery."""
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    98
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    99
val plag2 = """There is no such thing as a "good" oil spill. If the
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   100
time and place are just right, even a small oil spill can cause damage
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   101
to sensitive ecosystems. Further, spills can cause harm days, months,
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   102
years, or even decades after they occur. Because of this, spills are
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   103
usually broken into short-term (acute) and long-term (chronic)
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   104
effects. Both of these types of harm must be addressed in ecosystem
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   105
recovery: a controversial tactic that is often implemented immediately
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   106
following an oil spill."""
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   107
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   108
overlap(clean(orig2), clean(plag2))
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   109
similarity(orig2, plag2)
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   110
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   111
// The punchline: everything above 0.6 looks suspicious and 
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   112
// should be looked at by staff.
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   113
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   114
*/
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   115
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   116
3b40cc2a938a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   117
}