DataSafari simplifies complex data science tasks into straightforward, powerful one-liners.
DataSafari simplifies complex data science tasks into straightforward, powerful one-liners.
The intuition behind DataSafari's function suite is inspired by the typical data workflow.
Plunge into new datasets with a suite of tools tailored for deep explorative analysis. Uncover patterns, pinpoint issues, and access detailed statistics, facilitating a thorough understanding of your data's landscape with DataSafari's Explorer suite.
Enter your variables of interest and watch as DataSafari's Predictor suite takes over—automatically evaluating your data to select the optimal hypothesis test. Enjoy a seamless experience from data assessment to insightful scientific interpretation—all through a single command.
Discover the ideal statistical model for your data automatically, guided by a synthesis of diverse metrics. DataSafari's Inferential Predictor suite is built for depth and adaptability, offering extensive customization options from metric prioritization to model selection.
Transform and refine your data with powerful tools that clean, encode, and engineer features for both numerical and categorical data. DataSafari's Transformer suite enhances data quality, ensuring your inputs are primed for high-level analysis and machine learning.
Streamline the creation and evaluation of machine learning models with tools that handle everything from preprocessing to tuning. Just specify your variables, and DataSafari's ML Predictor suite will deliver the best models, tuned and ready for deployment.
Effortlessly verify critical statistical assumptions like equal variance and normality. DataSafari's Evaluators provide detailed analyses and interpretations, enabling you to integrate these insights seamlessly into your data-driven decision-making processes.
The intuition behind DataSafari's function suite is inspired by the typical data workflow.
Plunge into new datasets with a suite of tools tailored for deep explorative analysis. Uncover patterns, pinpoint issues, and access detailed statistics, facilitating a thorough understanding of your data's landscape with DataSafari's Explorer suite.
Transform and refine your data with powerful tools that clean, encode, and engineer features for both numerical and categorical data. DataSafari's Transformer suite enhances data quality, ensuring your inputs are primed for high-level analysis and machine learning.
Enter your variables of interest and watch as DataSafari's Predictor suite takes over—automatically evaluating your data to select the optimal hypothesis test. Enjoy a seamless experience from data assessment to insightful scientific interpretation—all through a single command.
Streamline the creation and evaluation of machine learning models with tools that handle everything from preprocessing to tuning. Just specify your variables, and DataSafari's ML Predictor suite will deliver the best models, tuned and ready for deployment.
Discover the ideal statistical model for your data automatically, guided by a synthesis of diverse metrics. DataSafari's Inferential Predictor suite is built for depth and adaptability, offering extensive customization options from metric prioritization to model selection.
Effortlessly verify critical statistical assumptions like equal variance and normality. DataSafari's Evaluators provide detailed analyses and interpretations, enabling you to integrate these insights seamlessly into your data-driven decision-making processes.
DataSafari is available on PyPI and can be installed using pip or Poetry.
For extensive usage examples and instructions, visit DataSafari's documentation.
For extensive usage examples and instructions, visit DataSafari's documentation.
from datasafari.predictor import predict_hypothesis import pandas as pd import numpy as np # Create a sample DataFrame df_hypothesis = pd.DataFrame({ 'Group': np.random.choice(['Control', 'Treatment'], size=100), 'Score': np.random.normal(0, 1, 100) }) # Perform hypothesis testing results = predict_hypothesis(df_hypothesis, 'Group', 'Score')