You could use Ratios to get the 3:1-type analysis or normalize the eigenvectors to have one of its components to be 1:
evecs = Eigenvectors[N@{{-3, 2}, {-15, 9}}];
Ratios /@ evecs
Normalize[#, Min[Abs[Select[#, # != 0 &]]] &] & /@ evecs
Normalize[#, Norm[#, Infinity] &] & /@ evecs
#/First[#] & /@ evecs
(*
{{-0.230336, -0.973111}, {-0.49079, -0.871278}} <-- e-vectors
{{4.22474}, {1.77526}} <-- ratios of components
{{-1., -4.22474}, {-1., -1.77526}} <-- smallest component ±1
{{-0.236701, -1.}, {-0.563299, -1.}} <-- largest component ±1
{{1., 4.22474}, {1., 1.77526}} <-- first component 1 (beware ÷0)
*)
Happy holidays to you, too!