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