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