|
Calling Sequence
|
|
DetectPlagiarism( essays )
DetectPlagiarism( similarityMatrix )
|
|
Parameters
|
|
essays
|
-
|
list or array of strings: the essays to be compared
|
similarityMatrix
|
-
|
numeric Matrix
|
threshold
|
-
|
(optional) float between 0 and 1
|
|
|
|
|
Description
|
|
•
|
The DetectPlagiarism command compares essays using the SimilarityScore command and returns list indicating the entries that scored above the specified threshold.
|
•
|
Instead of passing in the essays to be compared, a similarity matrix like one generated by the SimilarityScore command can be pregenerated and passed in.
|
•
|
The DetectPlagiarism command recommends essays that are so similar that they are likely to be copies of each other, or contain sub-text that is copied. This is a probabilistic measure and does not guarantee that the similar essays are indeed copies of each other or were copied from the same source.
|
•
|
If no two essays exceed the threshold in the similarity comparison, then an empty list, , will be returned. Otherwise, a list of lists will be returned. Each sublist will contain two integer indices and the similarity score. For example, [4,5,.695] indicates that essays 4 and 5 received a similarity score of .695, and are therefore likely to be copied from the same source, or copies of each other.
|
•
|
The default threshold is .35, and the default similarity metric is the BinaryJaccardCoefficient. Similarity scores flagged will range from .35 to 1, where numbers closer to 1 indicate more similarity. A score of 1 indicates identical copies.
|
•
|
This function is part of the EssayTools package, so it can be used in the short form DetectPlagiarism(..) only after executing the command with(EssayTools). However, it can always be accessed through the long form of the command by using EssayTools[DetectPlagiarism](..).
|
|
|
Examples
|
|
>
|
|
>
|
|
| (1) |
>
|
|
>
|
|
| (3) |
>
|
|
| (4) |
>
|
|
>
|
|
>
|
|
>
|
|
>
|
|
| (5) |
|
|
Compatibility
|
|
•
|
The EssayTools[DetectPlagiarism] command was introduced in Maple 17.
|
|
|
|