122 lines
4.2 KiB
TeX
122 lines
4.2 KiB
TeX
%This template (2020-03-06) is a modified version by Magnus Andersson and Jesper Erixon of the Stylish Article LaTeX Template Version 2.1 (1/10/15)
|
|
% Original author:
|
|
% Mathias Legrand (legrand.mathias@gmail.com)
|
|
%
|
|
% License:
|
|
% CC BY-NC-SA 3.0
|
|
|
|
%----------------------------
|
|
\documentclass[fleqn,10pt]{SelfArx} % Document font size and equations flushed left
|
|
\usepackage[english]{babel} % Specify a different language here - English by default
|
|
\usepackage{lipsum} % Required to insert dummy text. To be removed otherwise
|
|
\usepackage{float} % Allow you to set the figure at a specific position, use mainly H
|
|
% Additional packages
|
|
\usepackage{subcaption} % Allow you to create subfigures with individual captions
|
|
%----------------------------
|
|
% COLUMNS
|
|
%----------------------------
|
|
\setlength{\columnsep}{0.55cm} % Distance between the two columns of text
|
|
\setlength{\fboxrule}{0.75pt} % Width of the border around the abstract
|
|
%----------------------------
|
|
% COLORS
|
|
%----------------------------
|
|
\definecolor{color1}{RGB}{0,0,90} % Color of the article title and sections
|
|
\definecolor{color2}{RGB}{0,20,20} % Color of the boxes behind the abstract and headings
|
|
%----------------------------
|
|
% HYPERLINKS
|
|
%----------------------------
|
|
\usepackage{hyperref} % Required for hyperlinks
|
|
\hypersetup{hidelinks,colorlinks,breaklinks=true,urlcolor=color2,citecolor=color1,linkcolor=color1,bookmarksopen=false,pdftitle={Title},pdfauthor={Author}}
|
|
\urlstyle{same} % Sets url font
|
|
\usepackage{cleveref} % Added: Use cleveref to be able to reference subfigures e.g. Fig 1(a) etc.
|
|
\captionsetup[subfigure]{subrefformat=simple,labelformat=simple} % Added: Setup subfigure label
|
|
\renewcommand\thesubfigure{(\alph{subfigure})}
|
|
%----------------------------
|
|
% ARTICLE INFORMATION
|
|
%----------------------------
|
|
\JournalInfo{Department of Physics, Umeå University}
|
|
\Archive{\today}
|
|
|
|
\PaperTitle{Write the title of your report here} % Article title
|
|
|
|
\Authors{John Smith\textsuperscript{1}*, Jennie Smith\textsuperscript{1}} % Authors
|
|
\affiliation{\textsuperscript{1}\textit{Department of Physics, Umeå University, Umeå, Sweden}} % Author affiliation
|
|
\affiliation{*\textbf{Corresponding author}: john@smith.com} % Corresponding author
|
|
\affiliation{*\textbf{Supervisor}: joe@doe.com}
|
|
\Keywords{Optics --- Interference --- Diffraction} % Keywords - if you don't want any simply remove all the text between the curly brackets
|
|
\newcommand{\keywordname}{Keywords} % Defines the keywords heading name
|
|
%----------------------------
|
|
% ABSTRACT
|
|
%----------------------------
|
|
\Abstract{}
|
|
|
|
%----------------------------
|
|
\begin{document}
|
|
|
|
\flushbottom % Makes all text pages the same height
|
|
|
|
\maketitle % Print the title and abstract box
|
|
|
|
\tableofcontents % Print the contents section
|
|
|
|
\thispagestyle{empty} % Removes page numbering from the first page
|
|
|
|
%----------------------------
|
|
% ARTICLE CONTENTS
|
|
%----------------------------
|
|
|
|
%----------------------------
|
|
\section{Introduction}
|
|
|
|
\section{Data analysis}
|
|
|
|
\subsection{Dataset}
|
|
%https://www.kaggle.com/datasets/mosapabdelghany/adult-income-prediction-dataset
|
|
The dataset we decided to study is a labeled income prediction dataset. This dataset includes 14 features with
|
|
\subsection{Data cleaning and feature engineering}
|
|
§
|
|
\subsection{Handling missing values}
|
|
|
|
\section{Model selection}
|
|
|
|
\section{Model Training and Hyperparameter Tuning}
|
|
|
|
\section{Model Evaluations}
|
|
\section{}
|
|
|
|
|
|
%----------------------------
|
|
% REFERENCE LIST
|
|
%----------------------------
|
|
\bibliographystyle{model1-num-names}
|
|
\begin{thebibliography}{4}
|
|
\bibitem{Steinhaus:Mathematical}
|
|
Steinhaus, H.,
|
|
Mathematical Snapshots,
|
|
3rd Edition. New York: Dover, pp. 93-94,
|
|
(1999)
|
|
|
|
\bibitem{Greivenkamp:FieldGuide}
|
|
Greivenkamp,
|
|
J. E., Field Guide to Geometrical Optics,
|
|
SPIE Press,
|
|
Bellingham, WA,
|
|
(2004)
|
|
|
|
\bibitem{Pedrotti:Introduction}
|
|
Pedrotti, F.L. and Pedrotti, L.S.,
|
|
Introduction to Optics,
|
|
3rd Edition,
|
|
Addison-Wesley,
|
|
(2006)
|
|
|
|
\bibitem{Davis:ChemWiki}
|
|
UC Davis ChemWiki,
|
|
Propagation of Error,
|
|
Available at: \url{https://chem.libretexts.org/Textbook_Maps/Analytical_Chemistry/Supplemental_Modules_(Analytical_Chemistry)/Quantifying_Nature/Significant_Digits/Propagation_of_Error},
|
|
(Accessed: 10th March 2016).
|
|
\end{thebibliography}
|
|
|
|
|
|
|
|
\end{document} |