papers_r = FileAttachment("../data/all_papers.json").json()
n_columns = Object.entries(papers_r["doi"]).length
index_array = Array.from({length: n_columns}, (_, i) => i)
papers = index_array.map(
i => Object.fromEntries(
Object.entries(papers_r).map(([column, values]) => [column, values[i]])
)
)
my_papers = papers.filter(function(p) {
return p.authors.map(a => a.full_name).includes("Tobias Bruns")
})Tobias Bruns
bachelor student
alumnus
Former bachelor student in Tristan Bereau’s group at the Institute for Theoretical Physics, Heidelberg University.