Quick Start Guide

Quick Start Guide#

This guide helps you get started with Skyborn quickly.

Installation#

Install Skyborn using pip:

pip install skyborn

Basic Usage#

Import and use Skyborn functions:

import skyborn as skb

# Example: Gaussian PDF calculation
pdf_values = skb.gaussian_pdf(mu=0, sigma=1, x=x_values)

# Example: Correlation analysis
correlation = skb.pearson_correlation(x_data, y_data)

Next Steps#

  • Explore the Tutorials for comprehensive examples

  • Check the Gallery for visualization examples