science/py-sklearn-pandas: Add py-sklearn-pandas 2.2.0

This module provides a bridge between Scikit-Learn's machine learning methods
and pandas-style Data Frames. In particular, it provides a way to map DataFrame
columns to transformations, which are later recombined into features.

WWW: https://github.com/scikit-learn-contrib/sklearn-pandas
This commit is contained in:
Po-Chuan Hsieh
2022-01-29 07:09:24 +08:00
parent 7ae57c3925
commit c6f3b6e936
4 changed files with 35 additions and 0 deletions

View File

@@ -331,6 +331,7 @@
SUBDIR += py-scoria
SUBDIR += py-segregation
SUBDIR += py-segyio
SUBDIR += py-sklearn-pandas
SUBDIR += py-skrebate
SUBDIR += py-spaghetti
SUBDIR += py-spglib

View File

@@ -0,0 +1,26 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
PORTNAME= sklearn-pandas
PORTVERSION= 2.2.0
CATEGORIES= science python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Pandas integration with sklearn
LICENSE= BSD2CLAUSE ZLIB
LICENSE_COMB= multi
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.18.1,1:math/py-numpy@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pandas>=1.1.4,1:math/py-pandas@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}scikit-learn>=0.23.0:science/py-scikit-learn@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}scipy>=1.5.1:science/py-scipy@${PY_FLAVOR}
USES= python:3.7+
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
.include <bsd.port.mk>

View File

@@ -0,0 +1,3 @@
TIMESTAMP = 1643382488
SHA256 (sklearn-pandas-2.2.0.tar.gz) = bf908ea0e384e132da04355c7db67bd4f8efe145f0c9cd9f14726ce899d27542
SIZE (sklearn-pandas-2.2.0.tar.gz) = 17358

View File

@@ -0,0 +1,5 @@
This module provides a bridge between Scikit-Learn's machine learning methods
and pandas-style Data Frames. In particular, it provides a way to map DataFrame
columns to transformations, which are later recombined into features.
WWW: https://github.com/scikit-learn-contrib/sklearn-pandas