edit LaTEX
parent
6ff940dbfe
commit
b2ef658402
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 45 KiB |
|
@ -71,12 +71,12 @@ def convert_to_week_and_year(date_range_str):
|
|||
|
||||
# Datei Pfade
|
||||
hr_data_path = '/home/gra/PycharmProjects/cds_introduction_data_science_assignment/data/raw/hr_gramic.csv'
|
||||
sleep_data_path = '/home/gra/PycharmProjects/cds_introduction_data_science_assignment/data/sandbox/sleep_gramic.csv'
|
||||
sleep_data_path = '/home/gra/PycharmProjects/cds_introduction_data_science_assignment/data/raw/sleep_gramic.csv'
|
||||
hr_clean_path = '/home/gra/PycharmProjects/cds_introduction_data_science_assignment/data/sandbox/hr_data_clean.csv'
|
||||
sleep_clean_path = '/home/gra/PycharmProjects/cds_introduction_data_science_assignment/data/sandbox/sleep_data_clean.csv'
|
||||
combined_data_path = '/home/gra/PycharmProjects/cds_introduction_data_science_assignment/data/sandbox/combined_data.csv'
|
||||
graphic_corr_path = '/home/gra/PycharmProjects/cds_introduction_data_science_assignment/data/final/gramic_sleep_hr_correlation.png'
|
||||
graphic_weekly_path = '/home/gra/PycharmProjects/cds_introduction_data_science_assignment/data/final/weekly_hr_sleep.png'
|
||||
graphic_corr_path = '/home/gra/PycharmProjects/cds_introduction_data_science_assignment/media/gra/gramic_sleep_hr_correlation.png'
|
||||
graphic_weekly_path = '/home/gra/PycharmProjects/cds_introduction_data_science_assignment/media/gra/gramic_weekly_hr_sleep.png'
|
||||
|
||||
# Schritt 1: Lade die HR-Daten und entferne 'bpm'
|
||||
hr_data = pd.read_csv(hr_data_path, sep=';')
|
||||
|
|
|
@ -0,0 +1,305 @@
|
|||
import json
|
||||
import pybtex
|
||||
import requests
|
||||
import os
|
||||
from pybtex.database import BibliographyData, Entry, Person
|
||||
from dateutil.parser import parse
|
||||
import math
|
||||
import yaml
|
||||
|
||||
# Load the Configurations
|
||||
def load_configuration(zotero_conf_filename):
|
||||
zotero_bibtex_config = dict()
|
||||
zotero_conf_dir = os.path.join(os.path.dirname(os.getcwd()), 'code_configuration')
|
||||
|
||||
yaml_path = os.path.join(zotero_conf_dir, zotero_conf_filename)
|
||||
|
||||
with open(yaml_path, "r") as file:
|
||||
zotero_bibtex_config = yaml.load(file, Loader=yaml.FullLoader)
|
||||
|
||||
return zotero_bibtex_config
|
||||
def downlaod_zotero_datas(URL, API_KEY):
|
||||
zotero_result = list
|
||||
response = requests.get(URL, headers={'Zotero-API-Key': API_KEY})
|
||||
response = response.json()
|
||||
zotero_raw = json.dumps(response, ensure_ascii=False) # json.loads(response)
|
||||
zotero_result = json.loads(zotero_raw)
|
||||
return zotero_result
|
||||
|
||||
# Get the bibtex Datas from Zotero
|
||||
def get_data(zotero_bibtex_config):
|
||||
library_list = zotero_bibtex_config.get('libraries')
|
||||
|
||||
# result_limit = int(zotero_bibtex_config.get('result_limit'))
|
||||
# access_type = zotero_bibtex_config.get('access_type')
|
||||
# zotero_access_id = zotero_bibtex_config.get('zotero_access_id')
|
||||
# collection_id = zotero_bibtex_config.get('collection_id')
|
||||
# API_KEY = zotero_bibtex_config.get('api_key')
|
||||
# zotero_data = list()
|
||||
# URL = 'https://api.zotero.org/' + str(access_type) + '/' + str(zotero_access_id) + '/collections/' + str(
|
||||
# collection_id) + '/items?limit=1?format=json?sort=dateAdded?direction=asc'
|
||||
#
|
||||
# response = requests.get(URL, headers={'Zotero-API-Key': API_KEY})
|
||||
#
|
||||
# header_dict = response.headers
|
||||
# total_elemets = int(header_dict.get('Total-Results'), 0)
|
||||
#
|
||||
# if total_elemets < result_limit:
|
||||
# URL_ALL_ITEMS = 'https://api.zotero.org/' + str(access_type) + '/' + str(
|
||||
# zotero_access_id) + '/collections/' + str(collection_id) + '/items?limit=' + str(
|
||||
# result_limit) + '?format=json?sort=dateAdded?direction=asc'
|
||||
# zotero_result = downlaod_zotero_datas(URL_ALL_ITEMS, API_KEY)
|
||||
#
|
||||
# zotero_data.extend(zotero_result)
|
||||
# else:
|
||||
# runs = int(math.ceil(total_elemets / result_limit))
|
||||
# index = 0
|
||||
# start_index = 0
|
||||
# while index < runs:
|
||||
# URL_Separated = 'https://api.zotero.org/' + str(access_type) + '/' + str(
|
||||
# zotero_access_id) + '/collections/' + str(collection_id) + '/items?limit=' + str(
|
||||
# result_limit) + '?format=json?sort=dateAdded?direction=asc' + '&start=' + str(start_index)
|
||||
# zotero_result = downlaod_zotero_datas(URL_Separated, API_KEY)
|
||||
#
|
||||
# zotero_data.extend(zotero_result)
|
||||
#
|
||||
# start_index += result_limit
|
||||
# index += 1
|
||||
|
||||
zotero_data = list()
|
||||
for library in library_list:
|
||||
result_limit = int(zotero_bibtex_config.get(library).get('result_limit'))
|
||||
access_type = zotero_bibtex_config.get(library).get('access_type')
|
||||
zotero_access_id = zotero_bibtex_config.get(library).get('zotero_access_id')
|
||||
collection_id = zotero_bibtex_config.get(library).get('collection_id')
|
||||
API_KEY = zotero_bibtex_config.get(library).get('api_key')
|
||||
|
||||
URL = 'https://api.zotero.org/' + str(access_type) + '/' + str(zotero_access_id) + '/collections/' + str(
|
||||
collection_id) + '/items?limit=1?format=json?sort=dateAdded?direction=asc'
|
||||
|
||||
response = requests.get(URL, headers={'Zotero-API-Key': API_KEY})
|
||||
|
||||
status_code = response.status_code
|
||||
if status_code != 403:
|
||||
header_dict = response.headers
|
||||
total_elemets = int(header_dict.get('Total-Results'), 0)
|
||||
|
||||
if total_elemets < result_limit:
|
||||
URL_ALL_ITEMS = 'https://api.zotero.org/' + str(access_type) + '/' + str(
|
||||
zotero_access_id) + '/collections/' + str(collection_id) + '/items?limit=' + str(
|
||||
result_limit) + '?format=json?sort=dateAdded?direction=asc'
|
||||
zotero_result = downlaod_zotero_datas(URL_ALL_ITEMS, API_KEY)
|
||||
|
||||
zotero_data.extend(zotero_result)
|
||||
else:
|
||||
runs = int(math.ceil(total_elemets / result_limit))
|
||||
index = 0
|
||||
start_index = 0
|
||||
while index < runs:
|
||||
URL_Separated = 'https://api.zotero.org/' + str(access_type) + '/' + str(
|
||||
zotero_access_id) + '/collections/' + str(collection_id) + '/items?limit=' + str(
|
||||
result_limit) + '?format=json?sort=dateAdded?direction=asc' + '&start=' + str(start_index)
|
||||
zotero_result = downlaod_zotero_datas(URL_Separated, API_KEY)
|
||||
|
||||
zotero_data.extend(zotero_result)
|
||||
|
||||
start_index += result_limit
|
||||
index += 1
|
||||
|
||||
return zotero_data
|
||||
|
||||
# Convert String to Datetime
|
||||
def convert_to_datetime(input_str, parserinfo=None):
|
||||
return parse(input_str, parserinfo=parserinfo)
|
||||
|
||||
# Get Dates from Datetime
|
||||
def get_dates(date, bibtex_item_type, bibtex_month_attributes):
|
||||
dated_date = convert_to_datetime(date)
|
||||
return_value = dict()
|
||||
if bibtex_item_type in bibtex_month_attributes:
|
||||
year = dated_date.year
|
||||
month = dated_date.month
|
||||
return_value = {'year': year, 'month':month}
|
||||
else:
|
||||
year = dated_date.year
|
||||
return_value = {'year': year}
|
||||
|
||||
return return_value
|
||||
|
||||
# Split Creators into biblatex Creators
|
||||
def split_creators(creators):
|
||||
if creators != []:
|
||||
|
||||
creatorlist = ''
|
||||
for index, creator in enumerate(creators):
|
||||
type = creator.get('creatorType')
|
||||
firstname = creator.get('firstName')
|
||||
lastname = creator.get('lastName')
|
||||
name = creator.get('name')
|
||||
if type == 'author':
|
||||
|
||||
if name and not (firstname or lastname):
|
||||
creatorlist = creatorlist + name
|
||||
if index != len(creators) - 1:
|
||||
creatorlist = creatorlist + ' and '
|
||||
else:
|
||||
creatorlist = creatorlist + lastname + ',' + firstname
|
||||
if index != len(creators) - 1:
|
||||
creatorlist = creatorlist + ' and '
|
||||
else:
|
||||
creatorlist = 'unknown author'
|
||||
|
||||
bib_entry = 'author=' + '\"' + creatorlist + '\"'
|
||||
|
||||
return bib_entry
|
||||
|
||||
# Write the *.bib File
|
||||
def write_bibliography(zotero_data, zotero_bibtex_config):
|
||||
keystore_file = zotero_bibtex_config.get('common').get('keystore_file')
|
||||
keystore_path = zotero_bibtex_config.get('common').get('keystore_filepath')
|
||||
tex_dir = os.path.join(os.path.dirname(os.getcwd()), keystore_path)
|
||||
|
||||
yaml_path = os.path.join(tex_dir, keystore_file)
|
||||
|
||||
with open(yaml_path, "r") as file:
|
||||
zotero_bibtex_keys = yaml.load(file, Loader=yaml.FullLoader)
|
||||
|
||||
zotero_bibtex_keys_specials = {
|
||||
'thesis': {'phdthesis': ['dissertation', 'phd', 'doctorial', 'doctor', 'doktor', 'doktorarbeit'],
|
||||
'masterthesis': ['ma', 'master', 'masters']}
|
||||
}
|
||||
zotero_bibtex_attributes_special = {
|
||||
'date': 'get_dates',
|
||||
'creators': 'split_creators'
|
||||
}
|
||||
bibtex_month_attributes = ['booklet', 'mastersthesis', 'phdthesis', 'techreport']
|
||||
# Bibliography
|
||||
# tex_dir = os.path.join(os.path.dirname(os.getcwd()), 'source')
|
||||
bibtex_path = zotero_bibtex_config.get('common').get('bibtex_filepath')
|
||||
# tex_dir = os.path.join(os.path.dirname(os.getcwd()), bibtex_path)
|
||||
tex_dir = os.path.join(os.path.dirname(), bibtex_path)
|
||||
# tex_dir = os.path.join(os.getcwd(), 'src', 'content')
|
||||
# file_name = 'Datenbank_Projektauftrag_Michael_Graber.bib'
|
||||
file_name = zotero_bibtex_config.get('common').get('bibtex_filename')
|
||||
|
||||
file_path = os.path.join(tex_dir, file_name)
|
||||
|
||||
# bib_datas = BibliographyData()
|
||||
listKeys = list()
|
||||
bib_data = ''
|
||||
for zotero_items in zotero_data:
|
||||
biblio_item = zotero_items.get('data')
|
||||
itemkeys = biblio_item.keys()
|
||||
listKeys.extend(biblio_item.keys())
|
||||
zotero_item_key = biblio_item.get('key')
|
||||
zotero_item_title = biblio_item.get('title')
|
||||
zotero_item_nameofact = biblio_item.get('nameOfAct')
|
||||
zotero_item_nameofcase = biblio_item.get('caseName')
|
||||
zotero_item_subject = biblio_item.get('subject')
|
||||
zotero_item_type = biblio_item.get('itemType')
|
||||
|
||||
# some item types have no titles
|
||||
# set the special names instead of the title
|
||||
if zotero_item_title:
|
||||
bibtex_item_titel = zotero_item_title
|
||||
else:
|
||||
if zotero_item_type == 'statute':
|
||||
biblio_item['title'] = zotero_item_nameofact
|
||||
bibtex_item_titel = zotero_item_nameofact
|
||||
elif zotero_item_type == 'case':
|
||||
biblio_item['title'] = zotero_item_nameofcase
|
||||
bibtex_item_titel = zotero_item_nameofcase
|
||||
elif zotero_item_type == 'email':
|
||||
biblio_item['title'] = zotero_item_subject
|
||||
bibtex_item_titel = zotero_item_subject
|
||||
|
||||
if zotero_item_type == 'thesis':
|
||||
master_list = zotero_bibtex_keys_specials.get(zotero_item_type).get('masterthesis')
|
||||
phd_list = zotero_bibtex_keys_specials.get(zotero_item_type).get('phdthesis')
|
||||
|
||||
# First Master thesis
|
||||
if any(item in bibtex_item_titel for item in master_list):
|
||||
bibtex_item_key = 'masterthesis'
|
||||
# Second PHD Thesis
|
||||
elif any(item in bibtex_item_titel for item in phd_list):
|
||||
bibtex_item_key = 'phdthesis'
|
||||
else:
|
||||
bibtex_item_key = 'masterthesis'
|
||||
else:
|
||||
if zotero_bibtex_keys.get(zotero_item_type).get('key'):
|
||||
bibtex_item_key = zotero_bibtex_keys.get(zotero_item_type).get('key')
|
||||
else:
|
||||
bibtex_item_key = 'misc'
|
||||
|
||||
# get all Keys for the zotero item type
|
||||
entryset = '\n'
|
||||
entry = ''
|
||||
|
||||
zotero_item_attributes = zotero_bibtex_keys.get(zotero_item_type).get('attributes').keys()
|
||||
item_attributes = sorted(zotero_item_attributes, reverse=True)
|
||||
|
||||
for index, item_attribute in enumerate(item_attributes):
|
||||
bibtex_item_attribute = zotero_bibtex_keys.get(zotero_item_type).get('attributes').get(item_attribute)
|
||||
zotero_item_value = biblio_item.get(item_attribute)
|
||||
zotero_item_value_extra = ''
|
||||
bibtex_item_attribute_extra = ''
|
||||
|
||||
# Special Cases
|
||||
if bibtex_item_attribute == 'SPECIALCHECK' and zotero_item_value not in ['', None]:
|
||||
bibtex_special_attribute = zotero_bibtex_attributes_special.get(item_attribute)
|
||||
|
||||
match bibtex_special_attribute:
|
||||
case 'get_dates':
|
||||
zotero_item_value = get_dates(zotero_item_value, bibtex_item_key, bibtex_month_attributes)
|
||||
if zotero_item_value.get('month'):
|
||||
zotero_item_value_extra = zotero_item_value.get('month')
|
||||
bibtex_item_attribute_extra = 'month'
|
||||
|
||||
zotero_item_value = zotero_item_value.get('year')
|
||||
bibtex_item_attribute = 'year'
|
||||
case 'split_creators':
|
||||
authors = split_creators(zotero_item_value)
|
||||
entryset = entryset + authors
|
||||
elif bibtex_item_attribute == 'howpublished':
|
||||
if zotero_item_value not in ['', None, []]:
|
||||
zotero_item_value = '\\url{' + zotero_item_value + '}'
|
||||
|
||||
if bibtex_item_attribute not in ['', 'None', 'author', 'SPECIALCHECK'] and zotero_item_value not in ['', None, []]:
|
||||
if zotero_item_value_extra:
|
||||
|
||||
if type(zotero_item_value_extra) == "string":
|
||||
entryset = entryset + str(bibtex_item_attribute_extra) + '=\"' + str(zotero_item_value_extra) + '\"'
|
||||
else:
|
||||
entryset = entryset + str(bibtex_item_attribute_extra) + '=' + str(zotero_item_value_extra)
|
||||
|
||||
if index != len(item_attributes) - 1:
|
||||
entryset = entryset + ',\n'
|
||||
else:
|
||||
entryset = entryset + '\n'
|
||||
|
||||
if type(zotero_item_value) == str and not zotero_item_value.isnumeric():
|
||||
entryset = entryset + str(bibtex_item_attribute) + '=\"' + str(zotero_item_value) + '\"'
|
||||
else:
|
||||
entryset = entryset + str(bibtex_item_attribute) + '=' + str(zotero_item_value)
|
||||
|
||||
if index != len(item_attributes) - 1:
|
||||
entryset = entryset + ',\n'
|
||||
else:
|
||||
entryset = entryset + '\n'
|
||||
|
||||
# create the Entry
|
||||
entry = '@' + bibtex_item_key + '{' + zotero_item_key + ',\n'
|
||||
entry = entry + entryset + '}'
|
||||
bib_data = bib_data + '\n' + entry
|
||||
|
||||
# parse String to pybtex.database Object
|
||||
# bib_datas = pybtex.database.parse_string(bib_data, bib_format="bibtex", encoding='ISO-8859-1')
|
||||
bib_datas = pybtex.database.parse_string(bib_data, bib_format="bibtex", encoding='Iutf-8')
|
||||
# Save pybtex.database to file
|
||||
# BibliographyData.to_file(bib_datas, file_path, bib_format="bibtex", encoding='ISO-8859-1')
|
||||
BibliographyData.to_file(bib_datas, file_path, bib_format="bibtex", encoding='utf-8')
|
||||
|
||||
|
||||
zotero_bibtex_config = load_configuration('zotero_bibtex_configuration.yaml')
|
||||
zotero_data = get_data(zotero_bibtex_config)
|
||||
write_bibliography(zotero_data, zotero_bibtex_config)
|
|
@ -0,0 +1,331 @@
|
|||
---
|
||||
artwork:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
audioRecording:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
bill:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
blogPost:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
book:
|
||||
key: book
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
publisher: publisher
|
||||
place: address
|
||||
bookSection:
|
||||
key: inbook
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
pages: pages
|
||||
publisher: publisher
|
||||
place: address
|
||||
bookTitle: booktitle
|
||||
case:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
conferencePaper:
|
||||
key: inproceedings
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
series: series
|
||||
proceedingsTitle: booktitle
|
||||
publisher: publisher
|
||||
pages: pages
|
||||
place: address
|
||||
dictionaryEntry:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
document:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
email:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
encyclopediaArticle:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
film:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
forumPost:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
hearing:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
instantMessage:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
interview:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
journalArticle:
|
||||
key: article
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
volume: volume
|
||||
pages: pages
|
||||
seriesNumber: number
|
||||
seriesTitle: journal
|
||||
url: url
|
||||
letter:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
magazineArticle:
|
||||
key: article
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
volume: volume
|
||||
pages: pages
|
||||
seriesNumber: number
|
||||
seriesTitle: journal
|
||||
url: url
|
||||
manuscript:
|
||||
key: unpublished
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
map:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
newspaperArticle:
|
||||
key: article
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
volume: volume
|
||||
pages: pages
|
||||
seriesNumber: number
|
||||
seriesTitle: journal
|
||||
url: url
|
||||
patent:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
podcast:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
presentation:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
radioBroadcast:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
report:
|
||||
techreport: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
software:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
computerProgram:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
statute:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
tvBroadcast:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
videoRecording:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
webpage:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
attachment:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
note:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
standard:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
preprint:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
dataset:
|
||||
key: misc
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
url: howpublished
|
||||
extra: note
|
||||
thesis:
|
||||
key: thesis
|
||||
attributes:
|
||||
title: title
|
||||
date: SPECIALCHECK
|
||||
creators: SPECIALCHECK
|
||||
place: address
|
||||
university: school
|
|
@ -0,0 +1,26 @@
|
|||
libraries:
|
||||
- private
|
||||
# - public
|
||||
private:
|
||||
public: FALSE
|
||||
result_limit: 100
|
||||
access_type: "groups"
|
||||
zotero_access_id: "5665342"
|
||||
collection_id: "EJKIYYMC"
|
||||
api_key: "6Xgb3XhGjQXwA8NuZgu3bw3s"
|
||||
# keystore_file: "zotero_biblatex_keystore.yaml"
|
||||
# keystore_filepath: "code_configuration"
|
||||
# bibtex_filepath: "source"
|
||||
# bibtex_filename: "cds_computer_science_project.bib"
|
||||
public:
|
||||
public: TRUE
|
||||
result_limit: 100
|
||||
access_type: "groups"
|
||||
zotero_access_id: "5126029"
|
||||
collection_id: "V5VYIYTF"
|
||||
api_key: "6Xgb3XhGjQXwA8NuZgu3bw3s"
|
||||
common:
|
||||
keystore_file: "zotero_biblatex_keystore.yaml"
|
||||
keystore_filepath: "code_configuration"
|
||||
bibtex_filepath: "term-paper"
|
||||
bibtex_filename: "cds_computer_science_project.bib"
|
|
@ -23,26 +23,29 @@
|
|||
%-------------------------
|
||||
\input{title}
|
||||
|
||||
\begin{multicols}{2}
|
||||
%\begin{multicols}{2}
|
||||
\section{Einleitung}
|
||||
\citeauthor{Student2022} führt aus Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua \cite{Student2022}.
|
||||
|
||||
\section{Forschungsfragen und Methodik}
|
||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
|
||||
|
||||
\input{research_question}
|
||||
\input{data_fredy}
|
||||
\input{data_oli}
|
||||
\input{data_gra}
|
||||
\section{Resultate}
|
||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
|
||||
|
||||
\begin{table}[ht]
|
||||
\centering
|
||||
\begin{tabular}{l l}
|
||||
Lorem & ipsum \\\hline
|
||||
dolor sit amet & 66 \\
|
||||
consetetur sadipscing elitr & 99 \\
|
||||
\end{tabular}
|
||||
\caption{Lorem ipsum}
|
||||
\label{tab:lorem}
|
||||
\end{table}
|
||||
\input{results_fredy}
|
||||
\input{results_oli}
|
||||
\input{results_gra}
|
||||
%\begin{table}[ht]
|
||||
%\centering
|
||||
%\begin{tabular}{l l}
|
||||
%Lorem & ipsum \\\hline
|
||||
%dolor sit amet & 66 \\
|
||||
%consetetur sadipscing elitr & 99 \\
|
||||
%\end{tabular}
|
||||
%\caption{Lorem ipsum}
|
||||
%\label{tab:lorem}
|
||||
%\end{table}
|
||||
|
||||
%\begin{figure}
|
||||
% \includegraphics[width=\linewidth]{ipsum.jpg}
|
||||
|
@ -52,8 +55,10 @@ consetetur sadipscing elitr & 99 \\
|
|||
%Lorem ipsum dolor sit amet figure \ref{fig:ipsum}.
|
||||
|
||||
\section{Diskussion}
|
||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
|
||||
\end{multicols}
|
||||
\input{discussion_fredy}
|
||||
\input{discussion_oli}
|
||||
\input{discussion_gra}
|
||||
%\end{multicols}
|
||||
|
||||
%-------------------------
|
||||
% literature
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
%! Author = gra
|
||||
%! Date = 24.10.24
|
||||
|
||||
% Preamble
|
|
@ -0,0 +1,10 @@
|
|||
%! Author = gra
|
||||
%! Date = 24.10.24
|
||||
|
||||
% Preamble
|
||||
\subsection{Datenbeschaffung Michael Graber}
|
||||
\subsubsection{Herausforderungen}
|
||||
Für HR-Daten stellt Garmin keinen csv-Export zur Verfügung.\\
|
||||
Entsprechend musste die Daten manuell aus dem Web GUI von Garmin Connect kopiert werden.\\\\
|
||||
Die Daten der beiden Datensätze sind verschieden
|
||||
\subsubsection{Lösungen}
|
|
@ -0,0 +1,4 @@
|
|||
%! Author = gra
|
||||
%! Date = 24.10.24
|
||||
|
||||
% Preamble
|
|
@ -0,0 +1,4 @@
|
|||
%! Author = gra
|
||||
%! Date = 24.10.24
|
||||
|
||||
% Preamble
|
|
@ -0,0 +1,5 @@
|
|||
%! Author = gra
|
||||
%! Date = 24.10.24
|
||||
|
||||
% Preamble
|
||||
\subsection{Michael Graber}
|
|
@ -0,0 +1,4 @@
|
|||
%! Author = gra
|
||||
%! Date = 24.10.24
|
||||
|
||||
% Preamble
|
|
@ -17,6 +17,36 @@
|
|||
|
||||
\usepackage{multicol}
|
||||
|
||||
% Graphics
|
||||
\usepackage{graphicx}
|
||||
\usepackage{float}
|
||||
\usepackage{tabularray}
|
||||
% Table Line Styles
|
||||
\usepackage{arydshln}
|
||||
|
||||
% Tables
|
||||
%\usepackage{amsmath}
|
||||
%\usepackage{amsfonts}
|
||||
%\usepackage{amssymb}
|
||||
\usepackage{longtable}
|
||||
\usepackage[table,xcdraw]{xcolor}
|
||||
|
||||
% From Michael Graber Diplomarbeit
|
||||
\usepackage{paracol}
|
||||
\usepackage{booktabs}
|
||||
\usepackage{multirow}
|
||||
\usepackage{graphics}
|
||||
\usepackage{lscape}
|
||||
%\usepackage[toc, xindy]{glossaries}
|
||||
\usepackage{textcomp}
|
||||
\usepackage{rotating}
|
||||
\usepackage{pdflscape}
|
||||
|
||||
%\usepackage{enumitem,hyperref}
|
||||
%\usepackage[explicit]{titlesec}
|
||||
%\usepackage{calc,pifont,eurosym,amsmath,wasysym,amssymb,amsfonts}
|
||||
\usepackage{calc,pifont,eurosym,amsmath,wasysym,amsfonts}
|
||||
|
||||
\setkomafont{disposition}{\bfseries}
|
||||
|
||||
%-------------------------
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
%! Author = gra
|
||||
%! Date = 24.10.24
|
||||
|
||||
% Preamble
|
|
@ -0,0 +1,4 @@
|
|||
%! Author = gra
|
||||
%! Date = 24.10.24
|
||||
|
||||
% Preamble
|
|
@ -0,0 +1,19 @@
|
|||
%! Author = gra
|
||||
%! Date = 24.10.24
|
||||
|
||||
% Preamble
|
||||
\subsection{Michael Graber}
|
||||
|
||||
\begin{figure}[H]
|
||||
\centering
|
||||
\includegraphics[width=1\linewidth]{/home/gra/PycharmProjects/cds_introduction_data_science_assignment/media/gra/gramic_weekly_hr_sleep}
|
||||
\caption{Michael Graber - Durchschnittliche Schlafdauer und Herzfrequenzen}
|
||||
\label{fig:gra-avg-sleep-duration-hr}
|
||||
\end{figure}
|
||||
|
||||
\begin{figure}[H]
|
||||
\centering
|
||||
\includegraphics[width=1\linewidth]{/home/gra/PycharmProjects/cds_introduction_data_science_assignment/media/gra/gramic_sleep_hr_correlation}
|
||||
\caption{Korrelation Schlafdauer und Herzfrequenz}
|
||||
\label{fig:gra-corr-sleep-duration-hr}
|
||||
\end{figure}
|
|
@ -0,0 +1,4 @@
|
|||
%! Author = gra
|
||||
%! Date = 24.10.24
|
||||
|
||||
% Preamble
|
|
@ -1,14 +1,18 @@
|
|||
% !TEX root = documentation.tex
|
||||
|
||||
|
||||
\titlehead{BSc Computational and Data Science\\CDSnnn Modulname\\Dozent: Prof. Hans Muster\hfill}
|
||||
\title{Titel}
|
||||
\subtitle{Untertitel}
|
||||
\author[1,*]{Hans Muster}
|
||||
\author[1]{Hans Muster}
|
||||
\titlehead{BSc Computational and Data Science\\Einführung inComputational und Data Science\\Dozent: Prof. Corsin Capol\hfill}
|
||||
\title{Schlafqualität und Herzfreuenz}
|
||||
\subtitle{Beeinflusst die Schlafqualität die Herzfrequenz?}
|
||||
\author[1,*]{Oliver Schütz}
|
||||
\author[1]{Hans Muster}
|
||||
\author[1]{Fachhochschule Graubünden}
|
||||
\author[2,*]{Michael Graber}
|
||||
\author[2]{Kantonsspital Graubünden}
|
||||
\author[2]{Fachhochschule Graubünden}
|
||||
\affil[1]{Fachhochschule Graubünden}
|
||||
\affil[*]{E-Mail Adressen: hans.muster@stud.fhgr.ch, hans.muster@stud.fhgr.ch, hans.muster@stud.fhgr.ch}
|
||||
\affil[*]{E-Mail Adressen: graber-michael@hotmail.com, michael.graber@ksgr.ch, michael.graber@stud.fhgr.ch}
|
||||
\date{\today}
|
||||
\maketitle
|
||||
|
||||
|
|
Loading…
Reference in New Issue