CopyPastor

Detecting plagiarism made easy.

Score: 0.8166558340445446; Reported for: String similarity Open both answers

Possible Plagiarism

Reposted on 2022-08-11
by David

Original Post

Original - Posted on 2022-08-08
by David



            
Present in both answers; Present only in the new answer; Present only in the old answer;

[![enter image description here][1]][1]

{ "$schema": "https://vega.github.io/schema/vega-lite/v5.json", "width": 800, "height": 200, "data": { "values": [ { "60": 100, "90": 150, "120": 200, "-120": 10, "-90": 15, "-60": 30, "type": "Mango" }, { "-120": 50, "-90": 30, "-60": 45, "60": 90, "90": 140, "120": 190, "type": "Apple" } ] }, "transform": [{"fold": ["-120", "-90", "-60", "60", "90", "120"]}], "layer": [ { "mark": "line", "encoding": { "x": { "field": "key", "type": "quantitative", "sort": null, "axis": {"tickCount": 10, "values": [-120,-90,-60,0,60,90,120], "labelExpr": "abs(datum.value)"} }, "y": {"field": "value", "type": "quantitative"}, "color": {"field": "type", "type": "nominal"} } }, { "mark": { "type": "rule", "color": "maroon", "size": 3, "strokeDash": [6, 4] }, "encoding": {"x": {"datum": 0, "bandPosition": 0}} } ] }
[1]: https://i.stack.imgur.com/ZYN0a.png
[![enter image description here][1]][1]

{ "$schema": "https://vega.github.io/schema/vega-lite/v5.json", "width": 800, "height": 200, "data": { "values": [ { "pre_120": 0, "pre_90": 0, "pre_60": 0, "post_60": 100, "post_90": 150, "post_120": 200, "type": "Mango" }, { "pre_120": 0, "pre_90": 0, "pre_60": 0, "post_60": 90, "post_90": 140, "post_120": 190, "type": "Apple" } ] }, "transform": [ {"fold": ["pre_120", "pre_90", "pre_60", "post_60", "post_90", "post_120"]} ], "layer": [ { "mark": "line", "encoding": { "x": { "field": "key", "sort": [ "pre_120", "pre_90", "pre_60", "0", "post_60", "post_90", "post_120" ], "scale": { "domain": [ "pre_120", "pre_90", "pre_60", "0", "post_60", "post_90", "post_120" ] } }, "y": {"field": "value", "type": "quantitative"}, "color": {"field": "type", "type": "nominal"} } }, { "mark": { "type": "rule", "color": "maroon", "size": 3, "strokeDash": [6, 4] }, "encoding": {"x": {"datum": "0"}} } ] }

[1]: https://i.stack.imgur.com/xKCyf.png

        
Present in both answers; Present only in the new answer; Present only in the old answer;