Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

JunCEEE/eStyle

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

eStyle

This module is to create a default plot style environment for scientific publications.

VERSION: 0.0.1

Installation

git clone https://github.com/ejcjason/eStyle.git
cd eStyle
python ./install.sh install

Usage

from eStyle import *

When it is imported, it imports numpy as np, matplotlib.pyplot as plt automatically and changes the plot style immediately.

The setting is :

plt.rc('font', family="Arial")
params = {
    'axes.labelsize': 14,
    'font.size': 12,
    'xtick.direction': 'in',
    'ytick.direction': 'in',
    'text.usetex': False,
    'mathtext.fontset': 'custom',
    'mathtext.rm': 'Arial',
    'mathtext.it': 'Arial:italic',
    'mathtext.bf': 'Arial:bold',
    'lines.linewidth': 1.5
}

and you can modify it as you like.

Legend size and label size

To set default size of legends and labels, add these lines to params in eStyle.py before installing this module.

'legend.fontsize': 12,
'xtick.labelsize': 12,
'ytick.labelsize': 12,

Number of minor ticks

setXminor(ax,nt)

setYminor(ax,nt)

setNminor(ax,nbx=5,nby=5)

nt: number of ticks, default = 5

Number of major ticks

setXmajor(ax,nb)

setYmajor(ax,nb)

setNmajor(ax,nbx=5,nby=5)

nb: number of tick bins, default = 5

About

Set plot style for scientific publications

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.