enso-org / dataframes

A library for working with tabular data in Luna.
https://luna-lang.org
MIT License
6 stars 5 forks source link

heat map plot returns runtime error on MacOS #76

Closed sylwiabr closed 5 years ago

sylwiabr commented 6 years ago

code to reproduce:

def foo:
    l2 = [12,16,13,14,15]
    l1 = [1,2,3,4,5]
    col2 = Column.fromList "col2" Int64Type l2
    col1 = Column . fromList "col1" Int64Type l1
    fromColumns1 = Table.fromColumns [col1 , col2]
    correlations1 = fromColumns1 . correlations
    heatmap1 = correlations1 . heatmap
    None
zrzut ekranu 2018-10-15 o 20 44 06
mwu-tow commented 6 years ago

reproducable on windows as well