We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
@joott
The text was updated successfully, but these errors were encountered:
Additionally the intersects seems to be not correctly determined:
let actionSet = Set.ofArray [|"a";"b";"c"|] let comedySet = Set.ofArray [|"b";"c";"d";"z"|] let dramaSet = Set.ofArray [|"c";"d";"f"|] Chart.Venn ( [|"Action";"Comedy";"Drama"|], [|actionSet;comedySet;dramaSet|] )
The assignment to the intersects does not match:
Unique Intersect Action Comedy = "b" = 1 Unique Intersect Action Drama = 0 Unique Intersect Drama Comedy = "d" = 1
Intersect Action Comedy Drama = "c" = 1
Unique Action = "a" = 1 Unique Comedy = "z" = 1 Unique Drama = "f" = 1
Sorry, something went wrong.
caroott
No branches or pull requests
This does not work, because comedySet does not contain unique elements.
@joott
The text was updated successfully, but these errors were encountered: