Skip to content

Commit e5ab413

Browse files
committed
feat: Vegalite backend for visualization.
1 parent c0db323 commit e5ab413

31 files changed

Lines changed: 1854 additions & 266 deletions

File tree

dataframe-arrow/dataframe-arrow.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ foreign-library dataframe-arrow
5959
base >= 4 && < 5,
6060
dataframe-core ^>= 1.0,
6161
dataframe-learn ^>= 1.0,
62-
dataframe:arrow-bridge,
63-
dataframe-fastcsv,
62+
dataframe:arrow-bridge >= 1 && < 3,
63+
dataframe-fastcsv ^>= 1.1,
6464
text >= 2.0 && < 3,
6565
aeson >= 0.11 && < 3,
6666
bytestring >= 0.11 && < 0.13,

dataframe-core/dataframe-core.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ license: MIT
1717
license-file: LICENSE
1818
author: Michael Chavinda
1919
maintainer: mschavinda@gmail.com
20-
copyright: (c) 2024-2025 Michael Chavinda
20+
copyright: (c) 2024-2026 Michael Chavinda
2121
category: Data
2222
tested-with: GHC ==9.4.8 || ==9.6.7 || ==9.8.4 || ==9.10.3 || ==9.12.2
2323

dataframe-csv-th/dataframe-csv-th.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license: MIT
1313
license-file: LICENSE
1414
author: Michael Chavinda
1515
maintainer: mschavinda@gmail.com
16-
copyright: (c) 2024-2025 Michael Chavinda
16+
copyright: (c) 2024-2026 Michael Chavinda
1717
category: Data
1818
tested-with: GHC ==9.4.8 || ==9.6.7 || ==9.8.4 || ==9.10.3 || ==9.12.2
1919

dataframe-csv/dataframe-csv.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license: MIT
1313
license-file: LICENSE
1414
author: Michael Chavinda
1515
maintainer: mschavinda@gmail.com
16-
copyright: (c) 2024-2025 Michael Chavinda
16+
copyright: (c) 2024-2026 Michael Chavinda
1717
category: Data
1818
tested-with: GHC ==9.4.8 || ==9.6.7 || ==9.8.4 || ==9.10.3 || ==9.12.2
1919

dataframe-fastcsv/dataframe-fastcsv.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ license-file: LICENSE
1414
author: Michael Chavinda
1515
maintainer: mschavinda@gmail.com
1616

17-
copyright: (c) 2024-2025 Michael Chavinda
17+
copyright: (c) 2024-2026 Michael Chavinda
1818
category: Data
1919
tested-with: GHC ==9.4.8 || ==9.6.7 || ==9.8.4 || ==9.10.3 || ==9.12.2
2020
extra-source-files: cbits/process_csv.h

dataframe-fusion/dataframe-fusion.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ library
7171
dataframe-core ^>= 1.0,
7272
dataframe-lazy ^>= 1.0,
7373
dataframe-operations ^>= 1.1,
74-
dataframe:arrow-bridge,
74+
dataframe:arrow-bridge >= 1 && < 3,
7575
text >= 2.0 && < 3
7676
hs-source-dirs: src
7777
include-dirs: cbits

dataframe-hasktorch/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2025 Michael Chavinda
1+
Copyright (c) 2026 Michael Chavinda
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

dataframe-json/dataframe-json.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license: MIT
1212
license-file: LICENSE
1313
author: Michael Chavinda
1414
maintainer: mschavinda@gmail.com
15-
copyright: (c) 2024-2025 Michael Chavinda
15+
copyright: (c) 2024-2026 Michael Chavinda
1616
category: Data
1717
tested-with: GHC ==9.4.8 || ==9.6.7 || ==9.8.4 || ==9.10.3 || ==9.12.2
1818

dataframe-lazy/dataframe-lazy.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ license: MIT
1414
license-file: LICENSE
1515
author: Michael Chavinda
1616
maintainer: mschavinda@gmail.com
17-
copyright: (c) 2024-2025 Michael Chavinda
17+
copyright: (c) 2024-2026 Michael Chavinda
1818
category: Data
1919
tested-with: GHC ==9.4.8 || ==9.6.7 || ==9.8.4 || ==9.10.3 || ==9.12.2
2020

dataframe-lazy/src/DataFrame/Typed/Lazy.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
{- |
1010
Module : DataFrame.Typed.Lazy
11-
Copyright : (c) 2025
11+
Copyright : (c) 2024 - 2026 Michael Chavinda
1212
License : MIT
1313
Stability : experimental
1414

0 commit comments

Comments
 (0)