https://github.com/tony9402/covid19-status-board
COVID19 Status Board
https://github.com/tony9402/covid19-status-board
Last synced: 17 days ago
JSON representation
COVID19 Status Board
- Host: GitHub
- URL: https://github.com/tony9402/covid19-status-board
- Owner: tony9402
- Archived: true
- Created: 2021-09-22T08:12:29.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-09-25T12:46:17.000Z (over 3 years ago)
- Last Synced: 2024-11-12T13:06:46.732Z (6 months ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 579 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# COVID19 Statud Board
## Data
- https://www.kaggle.com/kimjihoo/coronavirusdataset
## Elasticsearch (with Docker)
Document : https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html
Guild Book (Web) : https://esbook.kimjmin.net/## Kibana (with Docker)
Document : https://www.elastic.co/guide/en/kibana/current/docker.html
## Logstash (with Docker)
Document : https://www.elastic.co/guide/en/logstash/current/docker.html
## Command
```bash
docker pull docker.elastic.co/elasticsearch/elasticsearch:7.15.0
docker pull docker.elastic.co/logstash/logstash:7.15.0
docker pull docker.elastic.co/kibana/kibana:7.15.0docker run --name es01-test --net elastic -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:7.15.0
docker run --name kib01-test --net elastic -p 5601:5601 -e "ELASTICSEARCH_HOSTS=http://es01-test:9200" docker.elastic.co/kibana/kibana:7.15.0
```## Directory
```
├── Dockerfile
├── README.md
├── city_data.csv
├── corona_daliy_data.csv
├── corona_data.csv
├── data
│ ├── Case.csv
│ ├── PatientInfo.csv
│ ├── Policy.csv
│ ├── Region.csv
│ ├── SearchTrend.csv
│ ├── SeoulFloating.csv
│ ├── Time.csv
│ ├── TimeAge.csv
│ ├── TimeGender.csv
│ ├── TimeProvince.csv
│ └── Weather.csv
├── make_csv.ipynb
└── region_data.csv
```### Figure
##### city_data
##### corona_daliy_data
##### region
![]()