Metadata-Version: 2.1
Name: health-metaverse
Version: 0.0.3a0
Summary: Health Metaverse: Concept, Framework and Applications
Home-page: https://health-metaverse.github.io/
Author: Donghua Chen
Author-email: douglaschan@126.com
License: UNKNOWN
Project-URL: Leave a feedback, https://github.com/Health-Metaverse/health-metaverse.github.io/issues
Keywords: metaverse,health metaverse,medical metaverse,virtual worlds,healthcare,medical informatics
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6, <4
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: nltk
Requires-Dist: stop-words
Requires-Dist: gensim
Requires-Dist: pandas
Provides-Extra: dev
Requires-Dist: check-manifest ; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage ; extra == 'test'

# Health Metaverse

A virtual 3D world framework for medical and health informatics applications

## Installation
```pip
pip install health-metaverse
```

## Examples

Example 1: Build a word cloud for Health Metaverse
```python
from healthmetaverse.healthwordcloud import HealthWordCloud
if __name__=="__main__":
    hwc = HealthWordCloud(data_path="metaverse-news.txt")
    hwc.show(save_figure="health_metaverse_wordcloud-small.jpg",figure_dpi=300)
```

Example 2: Build a topic model for Health Metaverse
```python
from healthmetaverse.healthtopicmodel import *
import pickle
list_abstract=pickle.load(open("datasets/virtual reality and health.pickle","rb"))
start_to_build_topic_model(list_abstract=list_abstract,MAX_TOPICS=10,
                           MIN_PERC=0.8,export_html=True,
                           need_format=True,save_model=True)
```

The Official Health Metaverse Website is [here](https://health-metaverse.github.io/)

## License
The `health-metaverse` project is provided by [Donghua Chen](https://github.com/dhchenx). 



