Guest User

Untitled

a guest
Jan 12th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. SeedRandom[36]
  2. data = RandomReal[{-0.5, 1}, 10]
  3.  
  4. BarLegend[{"SolarColors", MinMax[data]}]
  5.  
  6. MinMax[data]
  7. (* {-0.289979, 0.789597} *)
  8.  
  9. DensityPlot[y, {x, 0, 1}, {y, Min[data], Max[data]},
  10. PlotRangePadding -> None, ColorFunction -> "SolarColors",
  11. AspectRatio -> 15,
  12. ImageSize -> {Automatic, 250},
  13. FrameTicks -> {{None,
  14. Sort@Join[
  15. LinTicks[Min[data], Max[data], TickDirection -> Out,
  16. MajorTickLength -> 0.2,
  17. MinorTickLength ->
  18. 0.1], ({#, NumberForm[#, 2], {0, 0.2}, {}} &) /@
  19. MinMax[data]]}, {None, None}}
  20. ]
Add Comment
Please, Sign In to add comment