Skip to content
This repository has been archived by the owner on Aug 15, 2023. It is now read-only.
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
{
"cells": [
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"using DataFrames, CSV"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
"data = DataFrame(CSV.File(\"names.csv\"));"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Dear Anne-Dominique,\n",
"The following students successfully completed the NanoCourse on Reproducible Research:\n",
" - Peter Arndt\n",
"\n",
"\n",
"Best\n",
" Peter Arndt\n"
]
}
],
"source": [
"println(\"Dear Anne-Dominique,\\nThe following students successfully completed the NanoCourse on Reproducible Research:\")\n",
"\n",
"for r in eachrow(data)\n",
" println(\" - $(r.firstname) $(r.lastname)\")\n",
"end\n",
"\n",
"println(\"\\n\\nBest\\n Peter Arndt\")\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Julia 1.7.0",
"language": "julia",
"name": "julia-1.7"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.7.0"
},
"nteract": {
"version": "0.28.0"
}
},
"nbformat": 4,
"nbformat_minor": 4
}