Metadata-Version: 2.4
Name: hossam
Version: 0.2.1
Summary: Hossam Data Helper
Home-page: https://github.com/leekh4232/hossam-data
Author: Lee Kwang-Ho
Author-email: leekh4232@gmail.com
License: MIT
Keywords: data,analysis,helper,hossam,tensorflow,이광호
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.13.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: tqdm
Requires-Dist: tabulate
Requires-Dist: pandas
Requires-Dist: matplotlib
Requires-Dist: seaborn
Requires-Dist: requests
Requires-Dist: openpyxl
Requires-Dist: xlrd
Requires-Dist: statsmodels
Requires-Dist: scipy
Requires-Dist: pingouin
Requires-Dist: statannotations
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# hossam

Hossam Data Loader

이 라이브러리는 아이티윌에서 진행중인 머신러닝 데이터 분석 수업에서 사용되는 샘플 데이터를 로드하는 기능을 제공하는 라이브러리 입니다.

이광호 강사의 수업에서 활용되기는 것을 목적으로 합니다.

This library provides functionality for loading sample datasets used in the Machine Learning Data Analysis course conducted at ITWILL.
It is intended to be utilized in the lectures of instructor Kwangho Lee.

추가적으로 데이터 분석에서 사용할 수 있는 몇 가지 유틸리티 기능을 계획중입니다.

## Usage:

### 샘플 데이터 가져오기 (load sample data)

```python
from hossam import load_data
df = load_data('AD_SALES')
```

### 데이터 목록 보기 (view data list)

```python
from hossam import load_info

# search keyword paramter (default=None --> All List)
df = load_info(search="keyword")
```


License: MIT
