\documentclass[12pt]{article}
\usepackage{amsmath,amssymb}
\usepackage{graphicx}
\usepackage{physics}
\usepackage[export]{adjustbox}
\usepackage{mathtools}
\usepackage{TikZ}
\usepackage{PGF}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[x post scale=2, hide axis,width=2cm,height=2cm, mark=none ,black]
\addplot+[domain=-3/2:3/2]({cos(deg(x))}, {x});
\end{axis}
\end{tikzpicture}
\end{document}
regardless of my using the mark=none command I still get plot points when I compile
\addplothas a+before the[? I removed it and the plot points were gone leaving a black line. – Jordan Abbott Nov 18 '17 at 19:58\usepackage{tikz}and\usepackage{pgf}. Except that none of them are actually needed here, becausepgfplotsloadstikz, andtikzloadspgf, so they're loaded anyway. – Torbjørn T. Nov 18 '17 at 20:12