I'm trying to draw a graph in TikZ with different-looking loops.
In the graph below, I would like to make one loop smaller and the other larger. I would also like to be able to control the shape or roundness of the loops.
The parameter "looseness" doesn't seem to do anything. Perhaps it is possible to use control points? I've been trying to draw a loop manually, without actually using "loop", but cannot get it to work when the starting and ending points are identical.
After reading this question I'm able to change size for both loops at once. The answer mentions that this is possible to do for individual loops with ".style", but not exactly how. (There's also a reference to a section in the TikZ documentation for more detail. I have looked here at 74.4, but didn't find any answers.)
Here's my code and the current output:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[every loop/.style={min distance=30mm}]
\draw[thick] (0,0) to [out=-30,in=-150, loop] (0,0) -- (0,1);
\draw[thick] (0,1) to [out=30, in=150, loop] (0,1);
\end{tikzpicture}
\end{document}



