unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#67643] [PATCH 0/2] Add python-bambi.
@ 2023-12-05 15:28 Vinicius Monego
  2023-12-05 15:30 ` [bug#67643] [PATCH 1/2] gnu: Add python-formulae Vinicius Monego
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Vinicius Monego @ 2023-12-05 15:28 UTC (permalink / raw)
  To: 67643; +Cc: Vinicius Monego

Bambi is a high-level Bayesian model-building interface for PyMC.

Vinicius Monego (2):
  gnu: Add python-formulae.
  gnu: Add python-bambi.

 gnu/packages/statistics.scm | 107 +++++++++++++++++++++++++++++++++---
 1 file changed, 100 insertions(+), 7 deletions(-)


base-commit: c15a1cd88f80a90437f4b0159f22dfc84b9e6851
-- 
2.39.2





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#67643] [PATCH 1/2] gnu: Add python-formulae.
  2023-12-05 15:28 [bug#67643] [PATCH 0/2] Add python-bambi Vinicius Monego
@ 2023-12-05 15:30 ` Vinicius Monego
  2023-12-05 15:30 ` [bug#67643] [PATCH 2/2] gnu: Add python-bambi Vinicius Monego
  2024-02-02 20:30 ` [bug#67643] [PATCH 0/2] " Sharlatan Hellseher
  2 siblings, 0 replies; 4+ messages in thread
From: Vinicius Monego @ 2023-12-05 15:30 UTC (permalink / raw)
  To: 67643; +Cc: Vinicius Monego

* gnu/packages/statistics.scm (python-formulae): New variable.

Change-Id: I65f5c71fd30679b11fe370372d6992df54d86f19
---
 gnu/packages/statistics.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 95cc948d9f..30c6a9483e 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2236,6 +2236,36 @@ (define-public python-pymc
 inference (VI) algorithms.")
     (license license:asl2.0)))
 
+(define-public python-formulae
+  (package
+    (name "python-formulae")
+    (version "0.5.1")
+    (source (origin
+              (method git-fetch)     ; PyPI is missing files required by tests
+              (uri (git-reference
+                    (url "https://github.com/bambinos/formulae")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0s22ggsss1zrz3bdw1zm3kwbm07bdlp0v1af8xhw8ymcg9sqcsly"))))
+    (build-system pyproject-build-system)
+    (arguments
+     ;; AssertionError: approx() is not supported in a boolean context.
+     (list #:test-flags #~(list "-k" "not test_basic and not test_degree")))
+    (propagated-inputs (list python-numpy python-pandas python-scipy))
+    (native-inputs (list python-black
+                         python-ipython
+                         python-pylint
+                         python-pytest
+                         python-pytest-cov))
+    (home-page "https://bambinos.github.io/formulae/")
+    (synopsis "Formulas for mixed-effects models in Python")
+    (description
+     "@code{formulae} is a Python library that implements Wilkinson’s formulas
+for mixed-effects models.")
+    (license license:expat)))
+
 (define-public python-chaospy
   (package
     (name "python-chaospy")
-- 
2.39.2





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#67643] [PATCH 2/2] gnu: Add python-bambi.
  2023-12-05 15:28 [bug#67643] [PATCH 0/2] Add python-bambi Vinicius Monego
  2023-12-05 15:30 ` [bug#67643] [PATCH 1/2] gnu: Add python-formulae Vinicius Monego
@ 2023-12-05 15:30 ` Vinicius Monego
  2024-02-02 20:30 ` [bug#67643] [PATCH 0/2] " Sharlatan Hellseher
  2 siblings, 0 replies; 4+ messages in thread
From: Vinicius Monego @ 2023-12-05 15:30 UTC (permalink / raw)
  To: 67643; +Cc: Vinicius Monego

* gnu/packages/statistics.scm: Sort modules alphabetically.
(python-bambi): New variable.

Change-Id: I54931227310e3ad3b8d5c9272dcc641877b78bfb
---
 gnu/packages/statistics.scm | 77 +++++++++++++++++++++++++++++++++----
 1 file changed, 70 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 30c6a9483e..c9a9672a35 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -35,25 +35,26 @@
 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (gnu packages statistics)
-  #:use-module (guix gexp)
   #:use-module ((guix licenses) #:prefix license:)
-  #:use-module (guix packages)
   #:use-module (guix download)
-  #:use-module (guix hg-download)
+  #:use-module (guix gexp)
   #:use-module (guix git-download)
+  #:use-module (guix hg-download)
+  #:use-module (guix packages)
   #:use-module (guix utils)
   #:use-module (guix build-system ant)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system emacs)
   #:use-module (guix build-system gnu)
-  #:use-module (guix build-system r)
   #:use-module (guix build-system pyproject)
   #:use-module (guix build-system python)
-  #:use-module (guix build-system trivial)
+  #:use-module (guix build-system r)
   #:use-module (guix build-system ruby)
+  #:use-module (guix build-system trivial)
   #:use-module (gnu packages)
   #:use-module (gnu packages algebra)
   #:use-module (gnu packages autotools)
+  #:use-module (gnu packages base)
   #:use-module (gnu packages bash)
   #:use-module (gnu packages bison)
   #:use-module (gnu packages boost)
@@ -66,9 +67,10 @@ (define-module (gnu packages statistics)
   #:use-module (gnu packages flex)
   #:use-module (gnu packages fontutils)
   #:use-module (gnu packages gcc)
-  #:use-module (gnu packages gtk)
   #:use-module (gnu packages gettext)
   #:use-module (gnu packages glib)
+  #:use-module (gnu packages graphviz)
+  #:use-module (gnu packages gtk)
   #:use-module (gnu packages haskell-xyz)
   #:use-module (gnu packages icu4c)
   #:use-module (gnu packages image)
@@ -100,7 +102,6 @@ (define-module (gnu packages statistics)
   #:use-module (gnu packages texinfo)
   #:use-module (gnu packages time)
   #:use-module (gnu packages tls)
-  #:use-module (gnu packages base)
   #:use-module (gnu packages uglifyjs)
   #:use-module (gnu packages version-control)
   #:use-module (gnu packages web)
@@ -2266,6 +2267,68 @@ (define-public python-formulae
 for mixed-effects models.")
     (license license:expat)))
 
+(define-public python-bambi
+  (package
+    (name "python-bambi")
+    (version "0.13.0")
+    (source
+     (origin
+       (method git-fetch) ;PyPI is missing files required by tests
+       (uri (git-reference
+             (url "https://github.com/bambinos/bambi")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1hkkw65nbxg15rzp9rc8zxxwsg454hfa5mq853752hp6bp4r7szp"))))
+    (build-system pyproject-build-system)
+    (arguments
+     ;; The tests below use the network, and there's no configuration to
+     ;; skip the network tests.
+     (list
+      #:test-flags
+      #~(list "--ignore"
+              "tests/test_aliases.py"
+              "--ignore"
+              "tests/test_plots.py"
+              "-k"
+              (string-append
+               "not "
+               (string-join
+                (list
+                 "test_logistic_regression_categoric_alternative_samplers"
+                 "test_regression_alternative_samplers"
+                 "test_predict_new_groups"
+                 "test_predict_new_groups_fail"
+                 "test_censored_response"
+                 "test_data_is_copied"
+                 "test_extra_namespace"
+                 "test_predict_offset"
+                 "test_custom_prior"
+                 "test_normal_with_splines"
+                 "test_gamma_with_splines")
+                " and not ")))
+      #:phases #~(modify-phases %standard-phases
+                   (add-before 'check 'pre-check
+                     (lambda _
+                       ;; Some tests require write permission.
+                       (setenv "HOME" "/tmp"))))))
+    (propagated-inputs (list python-arviz python-formulae python-graphviz
+                             python-pandas python-pymc))
+    (native-inputs (list python-black
+                         python-ipython
+                         python-pylint
+                         python-pytest
+                         python-pytest-cov
+                         python-seaborn))
+    (home-page "https://bambinos.github.io/bambi/")
+    (synopsis "Bayesian Model Building Interface in Python")
+    (description
+     "Bambi is a high-level Bayesian model-building interface written in Python.
+It's built on top of the PyMC probabilistic programming framework, and is
+designed to make it extremely easy to fit mixed-effects models common in
+social sciences settings using a Bayesian approach.")
+    (license license:expat)))
+
 (define-public python-chaospy
   (package
     (name "python-chaospy")
-- 
2.39.2





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#67643] [PATCH 0/2] Add python-bambi.
  2023-12-05 15:28 [bug#67643] [PATCH 0/2] Add python-bambi Vinicius Monego
  2023-12-05 15:30 ` [bug#67643] [PATCH 1/2] gnu: Add python-formulae Vinicius Monego
  2023-12-05 15:30 ` [bug#67643] [PATCH 2/2] gnu: Add python-bambi Vinicius Monego
@ 2024-02-02 20:30 ` Sharlatan Hellseher
  2 siblings, 0 replies; 4+ messages in thread
From: Sharlatan Hellseher @ 2024-02-02 20:30 UTC (permalink / raw)
  To: 67643

[-- Attachment #1: Type: text/plain, Size: 408 bytes --]

Hi,

Thank you for the patches!

From a quick glance they look good,  I am about to check
upstream license(s) and any hidden bundled code/libraries.

One neat pick. You combined adding new package with module
house keeping changes (sorting use-module alphabetically), to
make a review smoother may you split it into 3 please, with house
keeping part as separate patch?

Looking forward for v2!

Thanks,
Oleg

[-- Attachment #2: Type: text/html, Size: 767 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-02-02 20:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-05 15:28 [bug#67643] [PATCH 0/2] Add python-bambi Vinicius Monego
2023-12-05 15:30 ` [bug#67643] [PATCH 1/2] gnu: Add python-formulae Vinicius Monego
2023-12-05 15:30 ` [bug#67643] [PATCH 2/2] gnu: Add python-bambi Vinicius Monego
2024-02-02 20:30 ` [bug#67643] [PATCH 0/2] " Sharlatan Hellseher

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).