StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
586 B
24 lines
586 B
#!/usr/bin/env python
|
|
import sys
|
|
import pandas as pd
|
|
import pymongo
|
|
import json
|
|
import os
|
|
|
|
|
|
def import_content(filepath):
|
|
mng_client = pymongo.MongoClient('localhost', 27017)
|
|
mng_db = mng_client['mydb']
|
|
collection_name = 'HeartC'
|
|
db_cm = mng_db[collection_name]
|
|
cdir = os.path.dirname(__file__)
|
|
file_res = os.path.join(cdir, filepath)
|
|
|
|
data = pd.read_csv(file_res)
|
|
data_json = json.loads(data.to_json(orient='records'))
|
|
db_cm.remove()
|
|
db_cm.insert(data_json)
|
|
|
|
if __name__ == "__main__":
|
|
filepath = './data/heart.csv'
|
|
import_content(filepath) |