Metadata-Version: 2.1
Name: maesyorikun
Version: 0.1.5
Summary: This app can interactively preprocess and graph CSV data.
Home-page: https://github.com/Mkaimoto/pypl
Author: Makimoto-eita
Author-email: s2222034@stu.musashino-u.ac.jp
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Mkaimoto/pypl/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: matplotlib
Requires-Dist: seaborn

# ライブラリ名　name

maesyorikun

## 概要　overview
このライブラリはCSVデータを対象として、簡易的な前処理とデータの可視化を、ユーザとのインタラクティブな会話を通して行います。<br>
主にデータの型の変更、欠損値の補完を素早く行い、データ解析における最初の前処理の煩わしさを改善するために制作しました。<br>
This library targets CSV data and performs simple preprocessing and data temporaryization through interactive conversation with the user. <br>
It was created mainly to change the data type and fill in missing values ​​to improve the initial process of data analysis.

## 使用方法 how to use
maesyorikunをpipでインストールし前処理を行いたいCSVファイルを指定
<br>in_csv_pass =""
<br>アウトプットを指定
<br>out_csv_pass =""
<br>以下のようにライブラリを実行
<br>maesyorikun.maesyorikun(in_csv_pass,out_csv_pass)
<br>
Install maesyorikun with pip and specify the CSV file you want to preprocess
<br>in_csv_pass =""
<br>Specify output
<br>out_csv_pass =""
<br>Run the library as below
<br>maesyorikun.maesyorikun(in_csv_pass,out_csv_pass)


