Open
Description
let actionSet = Set.ofArray [|"a";"b";"c"|]
let comedySet = Set.ofArray [|"b";"c";"d"|]
let dramaSet = Set.ofArray [|"c";"d";"f"|]
Chart.Venns (
[|"Action";"Comedy";"Drama"|],
[|actionSet;comedySet;dramaSet|]
)
|> Chart.show
This does not work, because comedySet does not contain unique elements.