معرفی شرکت ها


earthchem-0.0.5


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Data slurper for getting stuff from Earthchem services
ویژگی مقدار
سیستم عامل -
نام فایل earthchem-0.0.5
نام earthchem
نسخه کتابخانه 0.0.5
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Jess Robertson
ایمیل نویسنده jesse.robertson@csiro.au
آدرس صفحه اصلی https://github.com/jesserobertson/earthchem-pyclient.git
آدرس اینترنتی https://pypi.org/project/earthchem/
مجوز MIT
# Earthchem & PyData [![PyPI](https://img.shields.io/pypi/v/earthchem.svg)](https://pypi.python.org/pypi/earthchem/) [![GitHub license](https://img.shields.io/github/license/jesserobertson/earthchem-pyclient.svg)](https://github.com/jesserobertson/earthchem-pyclient/blob/master/LICENSE.txt) This project wraps the Earthchem web services to provide easy access to geochemical data from [IEDA](https://www.iedadata.org/) in ready-to-use format in your favourite PyData environment. Maintainer: Jess Robertson (jesse.robertson _at_ csiro.au) | **Service** | **master** | **develop** | | ----------- |:----------:|:-----------:| | Test status | [![Build Status](https://travis-ci.org/jesserobertson/earthchem-pyclient.svg?branch=master)](https://travis-ci.org/jesserobertson/earthchem-pyclient) | [![Build Status](https://travis-ci.org/jesserobertson/earthchem-pyclient.svg?branch=develop)](https://travis-ci.org/jesserobertson/earthchem-pyclient) | | Test coverage | [![Codecov branch](https://img.shields.io/codecov/c/github/jesserobertson/earthchem-pyclient/master.svg)](https://codecov.io/gh/jesserobertson/earthchem-pyclient/branch/master) | [![Codecov branch](https://img.shields.io/codecov/c/github/jesserobertson/earthchem-pyclient/develop.svg)](https://codecov.io/gh/jesserobertson/earthchem-pyclient/branch/develop) | ### So why would I want to use this? Say you wanted to know how many Archean-aged samples have been submitted to IEDA by your colleague named Dr S Barnes: ```python >>> import earthchem >>> q = earthchem.Query( author='barnes', geologicalage='archean' ) >>> q.count() ``` ``` 876 ``` Nice, let's take a look at the compositions of these ```python >>> df = q.dataframe() >>> df.head() ``` ``` Downloading pages: 100%|██████████| 18/18 [00:29<00:00, 1.66s/it] ``` ![Table output](https://github.com/jesserobertson/earthchem-pyclient/raw/develop/docs/resources/table_output.png) Hmm looks like Dr Barnes is a bit of a komatiite expert ```python >>> fig = df.mgo.hist() >>> fig.set_xlabel('MgO (wt %)') >>> fig.set_ylabel('Sample count') ``` ![Plot output](https://github.com/jesserobertson/earthchem-pyclient/raw/develop/docs/resources/mgo.png) Maybe we'd like to see this as a ternary plot instead... ```python >>> earthchem.plot.ternaryplot(df, components=['mgo', 'al2o3', 'cao']) ``` ![Plot output](https://github.com/jesserobertson/earthchem-pyclient/raw/develop/docs/resources/ternary.png) If spiderplots are more your thing we have you covered too (although we have to make up some data for this one...): ```python >>> reels = ec.geochem.REE(output='string') >>> df = pd.DataFrame({k: v for k,v in zip(reels, np.random.rand(len(reels), 2))}) >>> ec.plot.spiderplot(df) ``` ![Plot output](https://github.com/jesserobertson/earthchem-pyclient/raw/develop/docs/resources/reels.png) ### Great, I'm sold. How do I get it? Provided you have python installed, this library is just a `pip install earthchem` away. If you don't have Python we recommend taking a look at the marvellous [Anaconda distribution](https://www.anaconda.com/) - just pick your relevant platform download [from here](https://www.anaconda.com/download/).


نیازمندی

مقدار نام
- geopandas
- requests
- beautifulsoup4
- lxml
- tqdm
- python-ternary
- periodictable
- scikit-learn
- scipy
xtr versioneer;
xtr nbstripout;
xtr nbdime;


نحوه نصب


نصب پکیج whl earthchem-0.0.5:

    pip install earthchem-0.0.5.whl


نصب پکیج tar.gz earthchem-0.0.5:

    pip install earthchem-0.0.5.tar.gz