philusnarh / PROJECT

1 stars 0 forks source link

ESSENTIAL Python Styles LINKS #2

Open philusnarh opened 7 years ago

philusnarh commented 7 years ago

https://tinypng.com/

philusnarh commented 7 years ago

# Ipython Notebook important imports::

import numpy as np import matplotlib.pyplot as plt from zernike_decomposition import * %matplotlib inline %load_ext autoreload %autoreload 2

philusnarh commented 7 years ago

#BOLDEN ALL TEXT/SYMBOL

simpl%% plt.xlabel('foo',fontweight='bold')

Optionally set font to Computer Modern to avoid common missing font errors

import matplotlib
matplotlib.rc('font', family='serif', serif='cm10')

matplotlib.rc('text', usetex=True)
matplotlib.rcParams['text.latex.preamble'] = [r'\boldmath']
philusnarh commented 7 years ago

marker_reference::

image

1. image

2. image

  1. dash types

https://matplotlib.org/examples/lines_bars_and_markers/linestyles.html

philusnarh commented 7 years ago

Curve Fit examples::

https://stackoverflow.com/questions/3938042/fitting-exponential-decay-with-no-initial-guessing

philusnarh commented 7 years ago

Pandas Montecarlo link:

https://mg.mail.yahoo.com/neo/launch?.rand=1teq76qs68fc5#3591393876

philusnarh commented 7 years ago

source:: https://ned.ipac.caltech.edu/level5/March01/Andernach/Ander2.html

image

philusnarh commented 7 years ago

# The Singular Value Decomposition (SVD)

http://www.hs.uni-hamburg.de/DE/Ins/Per/Czesla/PyA/PyA/pyaslDoc/aslDoc/svd.html

philusnarh commented 7 years ago

Polarisation link http://book4you.org/s/?q=Field+Guide+to+Polarization&yearFrom=&yearTo=&language=&extension=&t=0

philusnarh commented 7 years ago

http://www.aoc.nrao.edu/~sbhatnag/Thesis/HTLATEX/SanB/thesisch10.html

image

philusnarh commented 7 years ago

The summary of the research is as follows: incorporate simulated SKA1-MID primary beams into the existing analysis framework to estimate the impact of primary beam errors on the science deliverables of intensity mapping experiments.

philusnarh commented 7 years ago

https://www.overleaf.com/11290882ydxnpffqvxvx#/42611124/

philusnarh commented 7 years ago

LINE 2D

Line2D.set_linestyle image

philusnarh commented 7 years ago

Colors https://matplotlib.org/examples/color/named_colors.html image

philusnarh commented 6 years ago

image

philusnarh commented 6 years ago

TICKS::

for tick in ax.xaxis.get_major_ticks():
                tick.label.set_fontsize(14) 
                # specify integer or one of preset strings, e.g.
                #tick.label.set_fontsize('x-small') 
                tick.label.set_rotation('vertical')

Changing fonts in matplotlib

http://jonathansoma.com/lede/data-studio/matplotlib/changing-fonts-in-matplotlib/

philusnarh commented 6 years ago

Run multiple scripts concurrently

https://stackoverflow.com/questions/28549641/run-multiple-python-scripts-concurrently

philusnarh commented 6 years ago

matplotlib

https://matplotlib.org/api/_as_gen/matplotlib.pyplot.plot.html https://matplotlib.org/

https://jakevdp.github.io/PythonDataScienceHandbook/04.01-simple-line-plots.html