1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

388

389

390

391

392

393

394

395

396

397

398

399

400

401

402

403

404

405

406

407

408

409

410

411

412

413

414

415

416

417

418

419

420

421

422

423

424

425

426

427

428

429

430

431

432

433

434

435

436

437

438

439

440

441

442

443

444

445

446

447

448

449

450

451

452

453

454

455

456

457

458

459

460

461

462

463

464

465

466

467

468

469

470

471

472

473

474

475

476

477

478

479

480

481

482

483

484

485

486

487

488

489

490

491

492

493

494

495

496

497

498

499

500

501

502

503

504

505

506

507

508

509

510

511

512

513

514

515

516

517

518

519

520

521

522

523

524

525

526

527

528

529

530

531

532

533

534

535

536

537

538

539

540

541

542

543

544

545

546

547

548

549

550

551

552

553

554

555

556

557

558

559

560

561

562

563

564

565

566

567

568

569

570

571

572

573

574

575

576

577

578

579

580

581

582

583

584

585

586

587

588

589

590

591

592

593

594

595

596

597

598

599

600

601

602

603

604

605

606

607

608

609

610

611

612

613

614

615

616

617

618

619

620

621

622

623

624

625

626

627

628

629

630

631

632

633

634

635

636

637

638

639

640

641

642

643

644

645

646

647

648

649

650

651

652

653

654

655

656

657

658

659

660

661

662

663

664

665

666

667

668

669

670

671

672

673

674

675

676

677

678

679

680

681

682

683

684

685

686

687

688

689

690

691

692

693

694

695

696

697

698

699

700

701

702

703

704

705

706

707

708

709

710

711

712

713

714

715

716

717

718

719

720

721

722

723

724

725

726

727

728

729

730

731

732

733

734

735

736

737

738

739

740

741

742

743

744

745

746

747

748

749

750

751

752

753

754

755

756

757

758

759

760

761

762

763

764

765

766

767

768

769

770

771

772

773

774

775

776

777

778

779

780

781

782

783

784

785

786

787

788

789

790

791

792

793

794

795

796

797

798

799

800

801

802

803

804

805

806

807

808

809

810

811

812

813

814

815

816

817

818

819

820

821

822

823

824

825

826

827

828

829

830

831

832

833

834

835

836

837

838

839

840

841

842

843

844

845

846

847

848

849

850

851

852

853

854

855

856

857

858

859

860

861

862

863

864

865

866

867

868

869

870

871

872

873

874

875

876

877

878

879

880

881

882

883

884

885

886

887

888

889

890

891

892

893

894

895

896

897

898

899

900

901

902

903

904

905

906

907

908

909

910

911

912

913

914

915

916

917

918

919

920

921

922

923

924

925

926

927

928

929

930

931

932

933

934

935

936

937

938

939

940

941

942

943

944

945

946

947

948

949

950

951

952

953

954

955

956

957

958

959

960

961

962

963

964

965

966

967

968

969

970

971

972

973

974

975

976

977

978

979

980

981

982

983

984

985

986

987

988

989

990

991

992

993

994

995

996

997

998

999

1000

1001

1002

1003

1004

1005

1006

1007

1008

1009

1010

1011

1012

1013

1014

1015

1016

1017

1018

1019

1020

1021

1022

1023

1024

1025

1026

1027

1028

1029

1030

1031

1032

1033

1034

1035

1036

1037

1038

1039

1040

1041

1042

1043

1044

1045

1046

1047

1048

1049

1050

1051

1052

1053

1054

1055

1056

1057

1058

1059

1060

1061

1062

1063

1064

1065

1066

1067

1068

1069

1070

1071

1072

1073

1074

1075

1076

1077

1078

1079

1080

1081

1082

1083

1084

1085

1086

1087

1088

1089

1090

1091

1092

1093

1094

1095

1096

1097

1098

1099

1100

1101

1102

1103

1104

1105

1106

1107

1108

1109

1110

1111

1112

1113

1114

1115

1116

1117

1118

1119

1120

1121

1122

1123

1124

1125

1126

1127

1128

1129

1130

1131

1132

1133

1134

1135

1136

1137

1138

1139

1140

1141

1142

1143

1144

1145

1146

1147

1148

1149

1150

1151

1152

1153

1154

1155

1156

1157

1158

1159

1160

1161

1162

1163

1164

1165

1166

1167

1168

1169

1170

1171

1172

1173

1174

1175

1176

1177

1178

1179

1180

1181

1182

1183

1184

1185

1186

1187

1188

1189

1190

1191

1192

1193

1194

1195

1196

1197

1198

1199

1200

1201

1202

1203

1204

1205

1206

1207

1208

1209

1210

1211

1212

1213

1214

1215

1216

1217

1218

1219

1220

1221

1222

1223

1224

1225

1226

1227

1228

1229

1230

1231

1232

1233

1234

1235

1236

1237

1238

1239

1240

1241

1242

1243

1244

1245

1246

1247

1248

1249

1250

1251

1252

1253

1254

1255

1256

1257

1258

1259

1260

1261

1262

1263

1264

1265

1266

1267

1268

1269

1270

1271

1272

1273

1274

1275

1276

1277

1278

1279

1280

1281

1282

1283

1284

1285

1286

1287

1288

1289

1290

1291

1292

1293

1294

1295

1296

1297

1298

1299

1300

1301

1302

1303

1304

1305

1306

1307

1308

1309

1310

1311

1312

1313

1314

1315

1316

1317

1318

1319

1320

1321

1322

1323

1324

1325

1326

1327

1328

1329

1330

1331

1332

1333

1334

1335

1336

1337

1338

1339

1340

1341

1342

1343

1344

1345

1346

1347

1348

1349

1350

1351

1352

1353

1354

1355

1356

1357

1358

1359

1360

1361

1362

1363

1364

1365

1366

1367

1368

1369

1370

1371

1372

1373

1374

1375

1376

1377

1378

1379

1380

1381

1382

1383

1384

1385

1386

1387

1388

1389

1390

1391

1392

1393

1394

1395

1396

1397

1398

1399

1400

1401

1402

1403

1404

1405

1406

1407

1408

1409

1410

1411

1412

1413

1414

1415

1416

1417

1418

1419

1420

1421

1422

1423

1424

1425

1426

1427

1428

1429

1430

1431

1432

1433

1434

1435

1436

1437

1438

1439

1440

1441

1442

1443

1444

1445

1446

1447

1448

1449

1450

1451

1452

1453

1454

1455

1456

1457

1458

1459

1460

1461

1462

1463

1464

1465

1466

1467

1468

1469

1470

1471

1472

1473

1474

1475

1476

1477

1478

1479

1480

1481

1482

1483

1484

1485

1486

1487

1488

1489

1490

1491

1492

1493

1494

1495

1496

1497

1498

1499

1500

1501

1502

1503

1504

1505

1506

1507

1508

1509

1510

1511

1512

1513

1514

1515

1516

1517

1518

1519

1520

1521

1522

1523

1524

1525

1526

1527

1528

1529

1530

1531

1532

1533

1534

1535

1536

1537

1538

1539

1540

1541

1542

1543

1544

1545

1546

1547

1548

1549

1550

1551

1552

1553

1554

1555

1556

1557

1558

1559

1560

1561

1562

1563

1564

1565

1566

1567

1568

1569

1570

1571

1572

1573

1574

1575

1576

1577

1578

1579

1580

1581

1582

1583

1584

1585

1586

1587

1588

1589

1590

1591

1592

1593

1594

1595

1596

1597

1598

1599

1600

1601

1602

1603

1604

1605

1606

1607

1608

1609

1610

1611

1612

1613

1614

1615

1616

1617

1618

1619

1620

1621

1622

1623

1624

1625

1626

1627

1628

1629

1630

1631

1632

1633

1634

1635

1636

1637

1638

1639

1640

1641

1642

1643

1644

1645

1646

1647

1648

1649

1650

1651

1652

1653

1654

1655

1656

1657

1658

1659

1660

1661

1662

1663

1664

1665

1666

1667

1668

1669

1670

1671

1672

1673

1674

1675

1676

1677

1678

1679

1680

1681

1682

1683

1684

1685

1686

1687

1688

1689

1690

1691

1692

1693

1694

1695

1696

1697

1698

1699

1700

1701

1702

1703

1704

1705

1706

1707

1708

1709

1710

1711

1712

1713

1714

1715

1716

1717

1718

1719

1720

1721

1722

1723

1724

1725

1726

1727

1728

1729

1730

1731

1732

1733

1734

1735

1736

1737

1738

1739

1740

1741

1742

1743

1744

1745

1746

1747

1748

1749

1750

1751

1752

1753

1754

1755

1756

1757

1758

1759

1760

1761

1762

1763

1764

1765

1766

1767

1768

1769

1770

1771

1772

1773

1774

1775

1776

1777

1778

1779

1780

1781

1782

1783

1784

1785

1786

1787

1788

1789

1790

1791

1792

1793

1794

1795

1796

1797

1798

1799

1800

1801

1802

1803

1804

1805

1806

1807

1808

1809

1810

1811

1812

1813

1814

1815

1816

1817

1818

1819

1820

1821

1822

1823

1824

1825

1826

1827

1828

1829

1830

1831

1832

1833

1834

1835

1836

1837

1838

1839

1840

1841

1842

1843

1844

1845

1846

1847

1848

1849

1850

1851

1852

1853

1854

1855

1856

1857

1858

1859

1860

1861

1862

1863

1864

1865

1866

1867

1868

1869

1870

1871

1872

1873

1874

1875

1876

1877

1878

1879

1880

1881

1882

1883

1884

1885

1886

1887

1888

1889

1890

1891

1892

1893

1894

1895

1896

1897

1898

1899

1900

1901

1902

1903

1904

1905

1906

1907

1908

1909

1910

1911

1912

1913

1914

1915

1916

1917

1918

1919

1920

1921

1922

1923

1924

1925

1926

1927

1928

1929

1930

1931

1932

1933

1934

1935

1936

1937

1938

1939

1940

1941

1942

1943

1944

1945

1946

1947

1948

1949

1950

1951

1952

1953

1954

1955

1956

1957

1958

1959

1960

1961

1962

1963

1964

1965

1966

1967

1968

1969

1970

1971

1972

1973

1974

1975

1976

1977

1978

1979

1980

1981

1982

1983

1984

1985

1986

1987

1988

1989

1990

1991

1992

1993

1994

1995

1996

1997

1998

1999

2000

2001

2002

2003

2004

2005

2006

2007

2008

2009

2010

2011

2012

2013

2014

2015

2016

2017

2018

2019

2020

2021

2022

2023

2024

2025

2026

2027

2028

2029

2030

2031

2032

2033

2034

2035

2036

2037

2038

2039

2040

2041

2042

2043

2044

2045

2046

2047

2048

2049

2050

2051

2052

2053

2054

2055

2056

2057

2058

2059

2060

2061

2062

2063

2064

2065

2066

2067

2068

2069

2070

2071

2072

2073

2074

2075

2076

2077

2078

2079

2080

2081

2082

2083

2084

2085

2086

2087

2088

2089

2090

2091

2092

2093

2094

2095

2096

2097

2098

2099

2100

2101

2102

2103

2104

2105

2106

2107

2108

2109

2110

2111

2112

2113

2114

2115

2116

2117

2118

2119

2120

2121

2122

2123

2124

2125

2126

2127

2128

2129

2130

2131

2132

2133

2134

2135

2136

2137

2138

2139

2140

2141

2142

2143

2144

2145

2146

2147

2148

2149

2150

2151

2152

2153

2154

2155

2156

2157

2158

2159

2160

2161

2162

2163

2164

2165

2166

2167

2168

2169

2170

2171

2172

2173

2174

2175

2176

2177

2178

2179

2180

2181

2182

2183

2184

2185

2186

2187

2188

2189

2190

2191

2192

2193

2194

2195

2196

2197

2198

2199

2200

2201

2202

2203

2204

2205

2206

2207

2208

2209

2210

2211

2212

2213

2214

2215

2216

2217

2218

2219

2220

2221

2222

2223

2224

2225

2226

2227

2228

2229

2230

2231

2232

2233

2234

2235

2236

2237

2238

2239

2240

2241

2242

2243

2244

2245

2246

2247

2248

2249

2250

2251

2252

2253

2254

2255

2256

2257

2258

2259

2260

2261

2262

2263

2264

2265

2266

2267

2268

2269

2270

2271

2272

2273

2274

2275

2276

2277

2278

2279

2280

2281

2282

2283

2284

2285

2286

2287

2288

2289

2290

2291

2292

2293

2294

2295

2296

2297

2298

2299

2300

2301

2302

2303

2304

2305

2306

2307

2308

2309

2310

2311

2312

2313

2314

2315

2316

2317

2318

2319

2320

2321

2322

2323

2324

2325

2326

2327

2328

2329

2330

2331

2332

2333

2334

2335

2336

2337

2338

2339

2340

2341

2342

2343

2344

2345

2346

2347

2348

2349

2350

2351

2352

2353

2354

2355

2356

2357

2358

2359

2360

2361

2362

2363

2364

2365

2366

2367

2368

2369

2370

2371

2372

2373

2374

2375

2376

2377

2378

2379

2380

2381

2382

2383

2384

2385

2386

2387

2388

2389

2390

2391

2392

2393

2394

2395

2396

2397

2398

2399

2400

2401

2402

2403

2404

2405

2406

2407

2408

2409

2410

2411

2412

2413

2414

2415

2416

2417

2418

2419

2420

2421

2422

2423

2424

2425

2426

2427

2428

2429

2430

2431

2432

2433

2434

2435

2436

2437

2438

2439

2440

2441

2442

2443

2444

2445

2446

2447

2448

2449

2450

2451

2452

2453

2454

2455

2456

2457

2458

2459

2460

2461

2462

2463

2464

2465

2466

2467

2468

2469

2470

2471

2472

2473

2474

2475

2476

2477

2478

2479

2480

2481

2482

2483

2484

2485

2486

2487

2488

2489

2490

2491

2492

2493

2494

2495

2496

2497

2498

2499

2500

2501

2502

2503

2504

2505

2506

2507

2508

2509

2510

2511

2512

2513

2514

2515

2516

2517

2518

2519

2520

2521

2522

2523

2524

2525

2526

2527

2528

2529

2530

2531

2532

2533

2534

2535

2536

2537

2538

2539

2540

2541

2542

2543

2544

2545

""" 

Classes for the ticks and x and y axis 

""" 

 

import datetime 

import logging 

import warnings 

 

import numpy as np 

 

from matplotlib import rcParams 

import matplotlib.artist as artist 

from matplotlib.artist import allow_rasterization 

import matplotlib.cbook as cbook 

from matplotlib.cbook import _string_to_bool 

import matplotlib.font_manager as font_manager 

import matplotlib.lines as mlines 

import matplotlib.patches as mpatches 

import matplotlib.scale as mscale 

import matplotlib.text as mtext 

import matplotlib.ticker as mticker 

import matplotlib.transforms as mtransforms 

import matplotlib.units as munits 

 

_log = logging.getLogger(__name__) 

 

GRIDLINE_INTERPOLATION_STEPS = 180 

 

# This list is being used for compatibility with Axes.grid, which 

# allows all Line2D kwargs. 

_line_AI = artist.ArtistInspector(mlines.Line2D) 

_line_param_names = _line_AI.get_setters() 

_line_param_aliases = [list(d)[0] for d in _line_AI.aliasd.values()] 

_gridline_param_names = ['grid_' + name 

for name in _line_param_names + _line_param_aliases] 

 

 

class Tick(artist.Artist): 

""" 

Abstract base class for the axis ticks, grid lines and labels 

 

1 refers to the bottom of the plot for xticks and the left for yticks 

2 refers to the top of the plot for xticks and the right for yticks 

 

Attributes 

---------- 

tick1line : Line2D 

 

tick2line : Line2D 

 

gridline : Line2D 

 

label1 : Text 

 

label2 : Text 

 

gridOn : bool 

Determines whether to draw the tickline. 

 

tick1On : bool 

Determines whether to draw the first tickline. 

 

tick2On : bool 

Determines whether to draw the second tickline. 

 

label1On : bool 

Determines whether to draw the first tick label. 

 

label2On : bool 

Determines whether to draw the second tick label. 

""" 

def __init__(self, axes, loc, label, 

size=None, # points 

width=None, 

color=None, 

tickdir=None, 

pad=None, 

labelsize=None, 

labelcolor=None, 

zorder=None, 

gridOn=None, # defaults to axes.grid depending on 

# axes.grid.which 

tick1On=True, 

tick2On=True, 

label1On=True, 

label2On=False, 

major=True, 

labelrotation=0, 

grid_color=None, 

grid_linestyle=None, 

grid_linewidth=None, 

grid_alpha=None, 

**kw # Other Line2D kwargs applied to gridlines. 

): 

""" 

bbox is the Bound2D bounding box in display coords of the Axes 

loc is the tick location in data coords 

size is the tick size in points 

""" 

artist.Artist.__init__(self) 

 

if gridOn is None: 

if major and (rcParams['axes.grid.which'] in ('both', 'major')): 

gridOn = rcParams['axes.grid'] 

elif (not major) and (rcParams['axes.grid.which'] 

in ('both', 'minor')): 

gridOn = rcParams['axes.grid'] 

else: 

gridOn = False 

 

self.set_figure(axes.figure) 

self.axes = axes 

 

name = self.__name__.lower() 

self._name = name 

 

self._loc = loc 

 

if size is None: 

if major: 

size = rcParams['%s.major.size' % name] 

else: 

size = rcParams['%s.minor.size' % name] 

self._size = size 

 

if width is None: 

if major: 

width = rcParams['%s.major.width' % name] 

else: 

width = rcParams['%s.minor.width' % name] 

self._width = width 

 

if color is None: 

color = rcParams['%s.color' % name] 

self._color = color 

 

if pad is None: 

if major: 

pad = rcParams['%s.major.pad' % name] 

else: 

pad = rcParams['%s.minor.pad' % name] 

self._base_pad = pad 

 

if labelcolor is None: 

labelcolor = rcParams['%s.color' % name] 

self._labelcolor = labelcolor 

 

if labelsize is None: 

labelsize = rcParams['%s.labelsize' % name] 

self._labelsize = labelsize 

 

self._set_labelrotation(labelrotation) 

 

if zorder is None: 

if major: 

zorder = mlines.Line2D.zorder + 0.01 

else: 

zorder = mlines.Line2D.zorder 

self._zorder = zorder 

 

self._grid_color = (rcParams['grid.color'] 

if grid_color is None else grid_color) 

self._grid_linestyle = (rcParams['grid.linestyle'] 

if grid_linestyle is None else grid_linestyle) 

self._grid_linewidth = (rcParams['grid.linewidth'] 

if grid_linewidth is None else grid_linewidth) 

self._grid_alpha = (rcParams['grid.alpha'] 

if grid_alpha is None else grid_alpha) 

 

self._grid_kw = {k[5:]: v for k, v in kw.items()} 

 

self.apply_tickdir(tickdir) 

 

self.tick1line = self._get_tick1line() 

self.tick2line = self._get_tick2line() 

self.gridline = self._get_gridline() 

 

self.label1 = self._get_text1() 

self.label = self.label1 # legacy name 

self.label2 = self._get_text2() 

 

self.gridOn = gridOn 

self.tick1On = tick1On 

self.tick2On = tick2On 

self.label1On = label1On 

self.label2On = label2On 

 

self.update_position(loc) 

 

def _set_labelrotation(self, labelrotation): 

if isinstance(labelrotation, str): 

mode = labelrotation 

angle = 0 

elif isinstance(labelrotation, (tuple, list)): 

mode, angle = labelrotation 

else: 

mode = 'default' 

angle = labelrotation 

if mode not in ('auto', 'default'): 

raise ValueError("Label rotation mode must be 'default' or " 

"'auto', not '{}'.".format(mode)) 

self._labelrotation = (mode, angle) 

 

def apply_tickdir(self, tickdir): 

""" 

Calculate self._pad and self._tickmarkers 

""" 

pass 

 

def get_tickdir(self): 

return self._tickdir 

 

def get_tick_padding(self): 

""" 

Get the length of the tick outside of the axes. 

""" 

padding = { 

'in': 0.0, 

'inout': 0.5, 

'out': 1.0 

} 

return self._size * padding[self._tickdir] 

 

def get_children(self): 

children = [self.tick1line, self.tick2line, 

self.gridline, self.label1, self.label2] 

return children 

 

def set_clip_path(self, clippath, transform=None): 

artist.Artist.set_clip_path(self, clippath, transform) 

self.gridline.set_clip_path(clippath, transform) 

self.stale = True 

 

set_clip_path.__doc__ = artist.Artist.set_clip_path.__doc__ 

 

def get_pad_pixels(self): 

return self.figure.dpi * self._base_pad / 72 

 

def contains(self, mouseevent): 

""" 

Test whether the mouse event occurred in the Tick marks. 

 

This function always returns false. It is more useful to test if the 

axis as a whole contains the mouse rather than the set of tick marks. 

""" 

if callable(self._contains): 

return self._contains(self, mouseevent) 

return False, {} 

 

def set_pad(self, val): 

""" 

Set the tick label pad in points 

 

Parameters 

---------- 

val : float 

""" 

self._apply_params(pad=val) 

self.stale = True 

 

def get_pad(self): 

'Get the value of the tick label pad in points' 

return self._base_pad 

 

def _get_text1(self): 

'Get the default Text 1 instance' 

pass 

 

def _get_text2(self): 

'Get the default Text 2 instance' 

pass 

 

def _get_tick1line(self): 

'Get the default line2D instance for tick1' 

pass 

 

def _get_tick2line(self): 

'Get the default line2D instance for tick2' 

pass 

 

def _get_gridline(self): 

'Get the default grid Line2d instance for this tick' 

pass 

 

def get_loc(self): 

'Return the tick location (data coords) as a scalar' 

return self._loc 

 

@allow_rasterization 

def draw(self, renderer): 

if not self.get_visible(): 

self.stale = False 

return 

 

renderer.open_group(self.__name__) 

if self.gridOn: 

self.gridline.draw(renderer) 

if self.tick1On: 

self.tick1line.draw(renderer) 

if self.tick2On: 

self.tick2line.draw(renderer) 

 

if self.label1On: 

self.label1.draw(renderer) 

if self.label2On: 

self.label2.draw(renderer) 

renderer.close_group(self.__name__) 

 

self.stale = False 

 

def set_label1(self, s): 

""" 

Set the label1 text. 

 

Parameters 

---------- 

s : str 

""" 

self.label1.set_text(s) 

self.stale = True 

 

set_label = set_label1 

 

def set_label2(self, s): 

""" 

Set the label2 text. 

 

Parameters 

---------- 

s : str 

""" 

self.label2.set_text(s) 

self.stale = True 

 

def _set_artist_props(self, a): 

a.set_figure(self.figure) 

 

def get_view_interval(self): 

'return the view Interval instance for the axis this tick is ticking' 

raise NotImplementedError('Derived must override') 

 

def _apply_params(self, **kw): 

for name in ['gridOn', 'tick1On', 'tick2On', 'label1On', 'label2On']: 

if name in kw: 

setattr(self, name, kw.pop(name)) 

if any(k in kw for k in ['size', 'width', 'pad', 'tickdir']): 

self._size = kw.pop('size', self._size) 

# Width could be handled outside this block, but it is 

# convenient to leave it here. 

self._width = kw.pop('width', self._width) 

self._base_pad = kw.pop('pad', self._base_pad) 

# apply_tickdir uses _size and _base_pad to make _pad, 

# and also makes _tickmarkers. 

self.apply_tickdir(kw.pop('tickdir', self._tickdir)) 

self.tick1line.set_marker(self._tickmarkers[0]) 

self.tick2line.set_marker(self._tickmarkers[1]) 

for line in (self.tick1line, self.tick2line): 

line.set_markersize(self._size) 

line.set_markeredgewidth(self._width) 

# _get_text1_transform uses _pad from apply_tickdir. 

trans = self._get_text1_transform()[0] 

self.label1.set_transform(trans) 

trans = self._get_text2_transform()[0] 

self.label2.set_transform(trans) 

tick_kw = {k: v for k, v in kw.items() if k in ['color', 'zorder']} 

self.tick1line.set(**tick_kw) 

self.tick2line.set(**tick_kw) 

for k, v in tick_kw.items(): 

setattr(self, '_' + k, v) 

 

if 'labelrotation' in kw: 

self._set_labelrotation(kw.pop('labelrotation')) 

self.label1.set(rotation=self._labelrotation[1]) 

self.label2.set(rotation=self._labelrotation[1]) 

 

label_kw = {k[5:]: v for k, v in kw.items() 

if k in ['labelsize', 'labelcolor']} 

self.label1.set(**label_kw) 

self.label2.set(**label_kw) 

for k, v in label_kw.items(): 

# for labelsize the text objects covert str ('small') 

# -> points. grab the integer from the `Text` object 

# instead of saving the string representation 

v = getattr(self.label1, 'get_' + k)() 

setattr(self, '_label' + k, v) 

 

grid_kw = {k[5:]: v for k, v in kw.items() 

if k in _gridline_param_names} 

self.gridline.set(**grid_kw) 

for k, v in grid_kw.items(): 

setattr(self, '_grid_' + k, v) 

 

def update_position(self, loc): 

'Set the location of tick in data coords with scalar *loc*' 

raise NotImplementedError('Derived must override') 

 

def _get_text1_transform(self): 

raise NotImplementedError('Derived must override') 

 

def _get_text2_transform(self): 

raise NotImplementedError('Derived must override') 

 

 

class XTick(Tick): 

""" 

Contains all the Artists needed to make an x tick - the tick line, 

the label text and the grid line 

""" 

__name__ = 'xtick' 

 

def _get_text1_transform(self): 

return self.axes.get_xaxis_text1_transform(self._pad) 

 

def _get_text2_transform(self): 

return self.axes.get_xaxis_text2_transform(self._pad) 

 

def apply_tickdir(self, tickdir): 

if tickdir is None: 

tickdir = rcParams['%s.direction' % self._name] 

self._tickdir = tickdir 

 

if self._tickdir == 'in': 

self._tickmarkers = (mlines.TICKUP, mlines.TICKDOWN) 

elif self._tickdir == 'inout': 

self._tickmarkers = ('|', '|') 

else: 

self._tickmarkers = (mlines.TICKDOWN, mlines.TICKUP) 

self._pad = self._base_pad + self.get_tick_padding() 

self.stale = True 

 

def _get_text1(self): 

'Get the default Text instance' 

# the y loc is 3 points below the min of y axis 

# get the affine as an a,b,c,d,tx,ty list 

# x in data coords, y in axes coords 

trans, vert, horiz = self._get_text1_transform() 

t = mtext.Text( 

x=0, y=0, 

fontproperties=font_manager.FontProperties(size=self._labelsize), 

color=self._labelcolor, 

verticalalignment=vert, 

horizontalalignment=horiz, 

) 

t.set_transform(trans) 

self._set_artist_props(t) 

return t 

 

def _get_text2(self): 

 

'Get the default Text 2 instance' 

# x in data coords, y in axes coords 

trans, vert, horiz = self._get_text2_transform() 

t = mtext.Text( 

x=0, y=1, 

fontproperties=font_manager.FontProperties(size=self._labelsize), 

color=self._labelcolor, 

verticalalignment=vert, 

horizontalalignment=horiz, 

) 

t.set_transform(trans) 

self._set_artist_props(t) 

return t 

 

def _get_tick1line(self): 

'Get the default line2D instance' 

# x in data coords, y in axes coords 

l = mlines.Line2D(xdata=(0,), ydata=(0,), color=self._color, 

linestyle='None', marker=self._tickmarkers[0], 

markersize=self._size, 

markeredgewidth=self._width, zorder=self._zorder) 

l.set_transform(self.axes.get_xaxis_transform(which='tick1')) 

self._set_artist_props(l) 

return l 

 

def _get_tick2line(self): 

'Get the default line2D instance' 

# x in data coords, y in axes coords 

l = mlines.Line2D(xdata=(0,), ydata=(1,), 

color=self._color, 

linestyle='None', 

marker=self._tickmarkers[1], 

markersize=self._size, 

markeredgewidth=self._width, 

zorder=self._zorder) 

 

l.set_transform(self.axes.get_xaxis_transform(which='tick2')) 

self._set_artist_props(l) 

return l 

 

def _get_gridline(self): 

'Get the default line2D instance' 

# x in data coords, y in axes coords 

l = mlines.Line2D(xdata=(0.0, 0.0), ydata=(0, 1.0), 

color=self._grid_color, 

linestyle=self._grid_linestyle, 

linewidth=self._grid_linewidth, 

alpha=self._grid_alpha, 

markersize=0, 

**self._grid_kw) 

l.set_transform(self.axes.get_xaxis_transform(which='grid')) 

l.get_path()._interpolation_steps = GRIDLINE_INTERPOLATION_STEPS 

self._set_artist_props(l) 

 

return l 

 

def update_position(self, loc): 

'Set the location of tick in data coords with scalar *loc*' 

if self.tick1On: 

self.tick1line.set_xdata((loc,)) 

if self.tick2On: 

self.tick2line.set_xdata((loc,)) 

if self.gridOn: 

self.gridline.set_xdata((loc,)) 

if self.label1On: 

self.label1.set_x(loc) 

if self.label2On: 

self.label2.set_x(loc) 

 

self._loc = loc 

self.stale = True 

 

def get_view_interval(self): 

'return the Interval instance for this axis view limits' 

return self.axes.viewLim.intervalx 

 

 

class YTick(Tick): 

""" 

Contains all the Artists needed to make a Y tick - the tick line, 

the label text and the grid line 

""" 

__name__ = 'ytick' 

 

def _get_text1_transform(self): 

return self.axes.get_yaxis_text1_transform(self._pad) 

 

def _get_text2_transform(self): 

return self.axes.get_yaxis_text2_transform(self._pad) 

 

def apply_tickdir(self, tickdir): 

if tickdir is None: 

tickdir = rcParams['%s.direction' % self._name] 

self._tickdir = tickdir 

 

if self._tickdir == 'in': 

self._tickmarkers = (mlines.TICKRIGHT, mlines.TICKLEFT) 

elif self._tickdir == 'inout': 

self._tickmarkers = ('_', '_') 

else: 

self._tickmarkers = (mlines.TICKLEFT, mlines.TICKRIGHT) 

self._pad = self._base_pad + self.get_tick_padding() 

self.stale = True 

 

# how far from the y axis line the right of the ticklabel are 

def _get_text1(self): 

'Get the default Text instance' 

# x in axes coords, y in data coords 

trans, vert, horiz = self._get_text1_transform() 

t = mtext.Text( 

x=0, y=0, 

fontproperties=font_manager.FontProperties(size=self._labelsize), 

color=self._labelcolor, 

verticalalignment=vert, 

horizontalalignment=horiz, 

) 

t.set_transform(trans) 

self._set_artist_props(t) 

return t 

 

def _get_text2(self): 

'Get the default Text instance' 

# x in axes coords, y in data coords 

trans, vert, horiz = self._get_text2_transform() 

t = mtext.Text( 

x=1, y=0, 

fontproperties=font_manager.FontProperties(size=self._labelsize), 

color=self._labelcolor, 

verticalalignment=vert, 

horizontalalignment=horiz, 

) 

t.set_transform(trans) 

self._set_artist_props(t) 

return t 

 

def _get_tick1line(self): 

'Get the default line2D instance' 

# x in axes coords, y in data coords 

 

l = mlines.Line2D((0,), (0,), 

color=self._color, 

marker=self._tickmarkers[0], 

linestyle='None', 

markersize=self._size, 

markeredgewidth=self._width, 

zorder=self._zorder) 

l.set_transform(self.axes.get_yaxis_transform(which='tick1')) 

self._set_artist_props(l) 

return l 

 

def _get_tick2line(self): 

'Get the default line2D instance' 

# x in axes coords, y in data coords 

l = mlines.Line2D((1,), (0,), 

color=self._color, 

marker=self._tickmarkers[1], 

linestyle='None', 

markersize=self._size, 

markeredgewidth=self._width, 

zorder=self._zorder) 

l.set_transform(self.axes.get_yaxis_transform(which='tick2')) 

self._set_artist_props(l) 

return l 

 

def _get_gridline(self): 

'Get the default line2D instance' 

# x in axes coords, y in data coords 

l = mlines.Line2D(xdata=(0, 1), ydata=(0, 0), 

color=self._grid_color, 

linestyle=self._grid_linestyle, 

linewidth=self._grid_linewidth, 

alpha=self._grid_alpha, 

markersize=0, 

**self._grid_kw) 

l.set_transform(self.axes.get_yaxis_transform(which='grid')) 

l.get_path()._interpolation_steps = GRIDLINE_INTERPOLATION_STEPS 

self._set_artist_props(l) 

return l 

 

def update_position(self, loc): 

'Set the location of tick in data coords with scalar *loc*' 

if self.tick1On: 

self.tick1line.set_ydata((loc,)) 

if self.tick2On: 

self.tick2line.set_ydata((loc,)) 

if self.gridOn: 

self.gridline.set_ydata((loc,)) 

if self.label1On: 

self.label1.set_y(loc) 

if self.label2On: 

self.label2.set_y(loc) 

 

self._loc = loc 

self.stale = True 

 

def get_view_interval(self): 

'return the Interval instance for this axis view limits' 

return self.axes.viewLim.intervaly 

 

 

class Ticker(object): 

locator = None 

formatter = None 

 

 

class _LazyTickList(object): 

""" 

A descriptor for lazy instantiation of tick lists. 

 

See comment above definition of the ``majorTicks`` and ``minorTicks`` 

attributes. 

""" 

 

def __init__(self, major): 

self._major = major 

 

def __get__(self, instance, cls): 

if instance is None: 

return self 

else: 

# instance._get_tick() can itself try to access the majorTicks 

# attribute (e.g. in certain projection classes which override 

# e.g. get_xaxis_text1_transform). In order to avoid infinite 

# recursion, first set the majorTicks on the instance to an empty 

# list, then create the tick and append it. 

if self._major: 

instance.majorTicks = [] 

tick = instance._get_tick(major=True) 

instance.majorTicks.append(tick) 

return instance.majorTicks 

else: 

instance.minorTicks = [] 

tick = instance._get_tick(major=False) 

instance.minorTicks.append(tick) 

return instance.minorTicks 

 

 

class Axis(artist.Artist): 

""" 

Public attributes 

 

* :attr:`axes.transData` - transform data coords to display coords 

* :attr:`axes.transAxes` - transform axis coords to display coords 

* :attr:`labelpad` - number of points between the axis and its label 

""" 

OFFSETTEXTPAD = 3 

 

def __str__(self): 

return self.__class__.__name__ \ 

+ "(%f,%f)" % tuple(self.axes.transAxes.transform_point((0, 0))) 

 

def __init__(self, axes, pickradius=15): 

""" 

Init the axis with the parent Axes instance 

""" 

artist.Artist.__init__(self) 

self.set_figure(axes.figure) 

 

self.isDefault_label = True 

 

self.axes = axes 

self.major = Ticker() 

self.minor = Ticker() 

self.callbacks = cbook.CallbackRegistry() 

 

self._autolabelpos = True 

self._smart_bounds = False 

 

self.label = self._get_label() 

self.labelpad = rcParams['axes.labelpad'] 

self.offsetText = self._get_offset_text() 

 

self.pickradius = pickradius 

 

# Initialize here for testing; later add API 

self._major_tick_kw = dict() 

self._minor_tick_kw = dict() 

 

self.cla() 

self._set_scale('linear') 

 

# During initialization, Axis objects often create ticks that are later 

# unused; this turns out to be a very slow step. Instead, use a custom 

# descriptor to make the tick lists lazy and instantiate them as needed. 

majorTicks = _LazyTickList(major=True) 

minorTicks = _LazyTickList(major=False) 

 

def set_label_coords(self, x, y, transform=None): 

""" 

Set the coordinates of the label. By default, the x 

coordinate of the y label is determined by the tick label 

bounding boxes, but this can lead to poor alignment of 

multiple ylabels if there are multiple axes. Ditto for the y 

coordinate of the x label. 

 

You can also specify the coordinate system of the label with 

the transform. If None, the default coordinate system will be 

the axes coordinate system (0,0) is (left,bottom), (0.5, 0.5) 

is middle, etc 

 

""" 

 

self._autolabelpos = False 

if transform is None: 

transform = self.axes.transAxes 

 

self.label.set_transform(transform) 

self.label.set_position((x, y)) 

self.stale = True 

 

def get_transform(self): 

return self._scale.get_transform() 

 

def get_scale(self): 

return self._scale.name 

 

def _set_scale(self, value, **kwargs): 

self._scale = mscale.scale_factory(value, self, **kwargs) 

self._scale.set_default_locators_and_formatters(self) 

 

self.isDefault_majloc = True 

self.isDefault_minloc = True 

self.isDefault_majfmt = True 

self.isDefault_minfmt = True 

 

def limit_range_for_scale(self, vmin, vmax): 

return self._scale.limit_range_for_scale(vmin, vmax, self.get_minpos()) 

 

@property 

@cbook.deprecated("2.2.0") 

def unit_data(self): 

return self.units 

 

@unit_data.setter 

@cbook.deprecated("2.2.0") 

def unit_data(self, unit_data): 

self.set_units(unit_data) 

 

def get_children(self): 

children = [self.label, self.offsetText] 

majorticks = self.get_major_ticks() 

minorticks = self.get_minor_ticks() 

 

children.extend(majorticks) 

children.extend(minorticks) 

return children 

 

def cla(self): 

'clear the current axis' 

 

self.label.set_text('') # self.set_label_text would change isDefault_ 

 

self._set_scale('linear') 

 

# Clear the callback registry for this axis, or it may "leak" 

self.callbacks = cbook.CallbackRegistry() 

 

# whether the grids are on 

self._gridOnMajor = (rcParams['axes.grid'] and 

rcParams['axes.grid.which'] in ('both', 'major')) 

self._gridOnMinor = (rcParams['axes.grid'] and 

rcParams['axes.grid.which'] in ('both', 'minor')) 

 

self.reset_ticks() 

 

self.converter = None 

self.units = None 

self.set_units(None) 

self.stale = True 

 

def reset_ticks(self): 

""" 

Re-initialize the major and minor Tick lists. 

 

Each list starts with a single fresh Tick. 

""" 

# Restore the lazy tick lists. 

try: 

del self.majorTicks 

except AttributeError: 

pass 

try: 

del self.minorTicks 

except AttributeError: 

pass 

try: 

self.set_clip_path(self.axes.patch) 

except AttributeError: 

pass 

 

def set_tick_params(self, which='major', reset=False, **kw): 

""" 

Set appearance parameters for ticks, ticklabels, and gridlines. 

 

For documentation of keyword arguments, see 

:meth:`matplotlib.axes.Axes.tick_params`. 

""" 

dicts = [] 

if which == 'major' or which == 'both': 

dicts.append(self._major_tick_kw) 

if which == 'minor' or which == 'both': 

dicts.append(self._minor_tick_kw) 

kwtrans = self._translate_tick_kw(kw, to_init_kw=True) 

for d in dicts: 

if reset: 

d.clear() 

d.update(kwtrans) 

 

if reset: 

self.reset_ticks() 

else: 

if which == 'major' or which == 'both': 

for tick in self.majorTicks: 

tick._apply_params(**self._major_tick_kw) 

if which == 'minor' or which == 'both': 

for tick in self.minorTicks: 

tick._apply_params(**self._minor_tick_kw) 

if 'labelcolor' in kwtrans: 

self.offsetText.set_color(kwtrans['labelcolor']) 

self.stale = True 

 

@staticmethod 

def _translate_tick_kw(kw, to_init_kw=True): 

# The following lists may be moved to a more 

# accessible location. 

kwkeys0 = ['size', 'width', 'color', 'tickdir', 'pad', 

'labelsize', 'labelcolor', 'zorder', 'gridOn', 

'tick1On', 'tick2On', 'label1On', 'label2On'] 

kwkeys1 = ['length', 'direction', 'left', 'bottom', 'right', 'top', 

'labelleft', 'labelbottom', 'labelright', 'labeltop', 

'labelrotation'] 

kwkeys2 = _gridline_param_names 

kwkeys = kwkeys0 + kwkeys1 + kwkeys2 

kwtrans = dict() 

if to_init_kw: 

if 'length' in kw: 

kwtrans['size'] = kw.pop('length') 

if 'direction' in kw: 

kwtrans['tickdir'] = kw.pop('direction') 

if 'rotation' in kw: 

kwtrans['labelrotation'] = kw.pop('rotation') 

if 'left' in kw: 

kwtrans['tick1On'] = _string_to_bool(kw.pop('left')) 

if 'bottom' in kw: 

kwtrans['tick1On'] = _string_to_bool(kw.pop('bottom')) 

if 'right' in kw: 

kwtrans['tick2On'] = _string_to_bool(kw.pop('right')) 

if 'top' in kw: 

kwtrans['tick2On'] = _string_to_bool(kw.pop('top')) 

 

if 'labelleft' in kw: 

kwtrans['label1On'] = _string_to_bool(kw.pop('labelleft')) 

if 'labelbottom' in kw: 

kwtrans['label1On'] = _string_to_bool(kw.pop('labelbottom')) 

if 'labelright' in kw: 

kwtrans['label2On'] = _string_to_bool(kw.pop('labelright')) 

if 'labeltop' in kw: 

kwtrans['label2On'] = _string_to_bool(kw.pop('labeltop')) 

if 'colors' in kw: 

c = kw.pop('colors') 

kwtrans['color'] = c 

kwtrans['labelcolor'] = c 

# Maybe move the checking up to the caller of this method. 

for key in kw: 

if key not in kwkeys: 

raise ValueError( 

"keyword %s is not recognized; valid keywords are %s" 

% (key, kwkeys)) 

kwtrans.update(kw) 

else: 

raise NotImplementedError("Inverse translation is deferred") 

return kwtrans 

 

def set_clip_path(self, clippath, transform=None): 

artist.Artist.set_clip_path(self, clippath, transform) 

for child in self.majorTicks + self.minorTicks: 

child.set_clip_path(clippath, transform) 

self.stale = True 

 

def get_view_interval(self): 

'return the Interval instance for this axis view limits' 

raise NotImplementedError('Derived must override') 

 

def set_view_interval(self, vmin, vmax, ignore=False): 

raise NotImplementedError('Derived must override') 

 

def get_data_interval(self): 

'return the Interval instance for this axis data limits' 

raise NotImplementedError('Derived must override') 

 

def set_data_interval(self): 

'''set the axis data limits''' 

raise NotImplementedError('Derived must override') 

 

def set_default_intervals(self): 

'''set the default limits for the axis data and view interval if they 

are not mutated''' 

 

# this is mainly in support of custom object plotting. For 

# example, if someone passes in a datetime object, we do not 

# know automagically how to set the default min/max of the 

# data and view limits. The unit conversion AxisInfo 

# interface provides a hook for custom types to register 

# default limits through the AxisInfo.default_limits 

# attribute, and the derived code below will check for that 

# and use it if is available (else just use 0..1) 

pass 

 

def _set_artist_props(self, a): 

if a is None: 

return 

a.set_figure(self.figure) 

 

def iter_ticks(self): 

""" 

Iterate through all of the major and minor ticks. 

""" 

majorLocs = self.major.locator() 

majorTicks = self.get_major_ticks(len(majorLocs)) 

self.major.formatter.set_locs(majorLocs) 

majorLabels = [self.major.formatter(val, i) 

for i, val in enumerate(majorLocs)] 

 

minorLocs = self.minor.locator() 

minorTicks = self.get_minor_ticks(len(minorLocs)) 

self.minor.formatter.set_locs(minorLocs) 

minorLabels = [self.minor.formatter(val, i) 

for i, val in enumerate(minorLocs)] 

 

major_minor = [ 

(majorTicks, majorLocs, majorLabels), 

(minorTicks, minorLocs, minorLabels)] 

 

for group in major_minor: 

yield from zip(*group) 

 

def get_ticklabel_extents(self, renderer): 

""" 

Get the extents of the tick labels on either side 

of the axes. 

""" 

 

ticks_to_draw = self._update_ticks(renderer) 

ticklabelBoxes, ticklabelBoxes2 = self._get_tick_bboxes(ticks_to_draw, 

renderer) 

 

if len(ticklabelBoxes): 

bbox = mtransforms.Bbox.union(ticklabelBoxes) 

else: 

bbox = mtransforms.Bbox.from_extents(0, 0, 0, 0) 

if len(ticklabelBoxes2): 

bbox2 = mtransforms.Bbox.union(ticklabelBoxes2) 

else: 

bbox2 = mtransforms.Bbox.from_extents(0, 0, 0, 0) 

return bbox, bbox2 

 

def set_smart_bounds(self, value): 

"""set the axis to have smart bounds""" 

self._smart_bounds = value 

self.stale = True 

 

def get_smart_bounds(self): 

"""get whether the axis has smart bounds""" 

return self._smart_bounds 

 

def _update_ticks(self, renderer): 

""" 

Update ticks (position and labels) using the current data 

interval of the axes. Returns a list of ticks that will be 

drawn. 

""" 

 

interval = self.get_view_interval() 

tick_tups = list(self.iter_ticks()) # iter_ticks calls the locator 

if self._smart_bounds and tick_tups: 

# handle inverted limits 

view_low, view_high = sorted(interval) 

data_low, data_high = sorted(self.get_data_interval()) 

locs = np.sort([ti[1] for ti in tick_tups]) 

if data_low <= view_low: 

# data extends beyond view, take view as limit 

ilow = view_low 

else: 

# data stops within view, take best tick 

good_locs = locs[locs <= data_low] 

if len(good_locs): 

# last tick prior or equal to first data point 

ilow = good_locs[-1] 

else: 

# No ticks (why not?), take first tick 

ilow = locs[0] 

if data_high >= view_high: 

# data extends beyond view, take view as limit 

ihigh = view_high 

else: 

# data stops within view, take best tick 

good_locs = locs[locs >= data_high] 

if len(good_locs): 

# first tick after or equal to last data point 

ihigh = good_locs[0] 

else: 

# No ticks (why not?), take last tick 

ihigh = locs[-1] 

tick_tups = [ti for ti in tick_tups if ilow <= ti[1] <= ihigh] 

 

# so that we don't lose ticks on the end, expand out the interval ever 

# so slightly. The "ever so slightly" is defined to be the width of a 

# half of a pixel. We don't want to draw a tick that even one pixel 

# outside of the defined axis interval. 

if interval[0] <= interval[1]: 

interval_expanded = interval 

else: 

interval_expanded = interval[1], interval[0] 

 

if hasattr(self, '_get_pixel_distance_along_axis'): 

# normally, one does not want to catch all exceptions that 

# could possibly happen, but it is not clear exactly what 

# exceptions might arise from a user's projection (their 

# rendition of the Axis object). So, we catch all, with 

# the idea that one would rather potentially lose a tick 

# from one side of the axis or another, rather than see a 

# stack trace. 

# We also catch users warnings here. These are the result of 

# invalid numpy calculations that may be the result of out of 

# bounds on axis with finite allowed intervals such as geo 

# projections i.e. Mollweide. 

with np.errstate(invalid='ignore'): 

try: 

ds1 = self._get_pixel_distance_along_axis( 

interval_expanded[0], -0.5) 

except: 

warnings.warn("Unable to find pixel distance along axis " 

"for interval padding of ticks; assuming no " 

"interval padding needed.") 

ds1 = 0.0 

if np.isnan(ds1): 

ds1 = 0.0 

try: 

ds2 = self._get_pixel_distance_along_axis( 

interval_expanded[1], +0.5) 

except: 

warnings.warn("Unable to find pixel distance along axis " 

"for interval padding of ticks; assuming no " 

"interval padding needed.") 

ds2 = 0.0 

if np.isnan(ds2): 

ds2 = 0.0 

interval_expanded = (interval_expanded[0] - ds1, 

interval_expanded[1] + ds2) 

 

ticks_to_draw = [] 

for tick, loc, label in tick_tups: 

if tick is None: 

continue 

# NB: always update labels and position to avoid issues like #9397 

tick.update_position(loc) 

tick.set_label1(label) 

tick.set_label2(label) 

if not mtransforms.interval_contains(interval_expanded, loc): 

continue 

ticks_to_draw.append(tick) 

 

return ticks_to_draw 

 

def _get_tick_bboxes(self, ticks, renderer): 

""" 

Given the list of ticks, return two lists of bboxes. One for 

tick lable1's and another for tick label2's. 

""" 

 

ticklabelBoxes = [] 

ticklabelBoxes2 = [] 

 

for tick in ticks: 

if tick.label1On and tick.label1.get_visible(): 

extent = tick.label1.get_window_extent(renderer) 

ticklabelBoxes.append(extent) 

if tick.label2On and tick.label2.get_visible(): 

extent = tick.label2.get_window_extent(renderer) 

ticklabelBoxes2.append(extent) 

return ticklabelBoxes, ticklabelBoxes2 

 

def get_tightbbox(self, renderer): 

""" 

Return a bounding box that encloses the axis. It only accounts 

tick labels, axis label, and offsetText. 

""" 

if not self.get_visible(): 

return 

 

ticks_to_draw = self._update_ticks(renderer) 

 

self._update_label_position(renderer) 

 

# go back to just this axis's tick labels 

ticklabelBoxes, ticklabelBoxes2 = self._get_tick_bboxes( 

ticks_to_draw, renderer) 

 

self._update_offset_text_position(ticklabelBoxes, ticklabelBoxes2) 

self.offsetText.set_text(self.major.formatter.get_offset()) 

 

bb = [] 

 

for a in [self.label, self.offsetText]: 

bbox = a.get_window_extent(renderer) 

if (np.isfinite(bbox.width) and np.isfinite(bbox.height) and 

a.get_visible()): 

bb.append(bbox) 

 

bb.extend(ticklabelBoxes) 

bb.extend(ticklabelBoxes2) 

 

bb = [b for b in bb if b.width != 0 or b.height != 0] 

if bb: 

_bbox = mtransforms.Bbox.union(bb) 

return _bbox 

else: 

return None 

 

def get_tick_padding(self): 

values = [] 

if len(self.majorTicks): 

values.append(self.majorTicks[0].get_tick_padding()) 

if len(self.minorTicks): 

values.append(self.minorTicks[0].get_tick_padding()) 

return max(values, default=0) 

 

@allow_rasterization 

def draw(self, renderer, *args, **kwargs): 

'Draw the axis lines, grid lines, tick lines and labels' 

 

if not self.get_visible(): 

return 

renderer.open_group(__name__) 

 

ticks_to_draw = self._update_ticks(renderer) 

ticklabelBoxes, ticklabelBoxes2 = self._get_tick_bboxes(ticks_to_draw, 

renderer) 

 

for tick in ticks_to_draw: 

tick.draw(renderer) 

 

# scale up the axis label box to also find the neighbors, not 

# just the tick labels that actually overlap note we need a 

# *copy* of the axis label box because we don't wan't to scale 

# the actual bbox 

 

self._update_label_position(renderer) 

 

self.label.draw(renderer) 

 

self._update_offset_text_position(ticklabelBoxes, ticklabelBoxes2) 

self.offsetText.set_text(self.major.formatter.get_offset()) 

self.offsetText.draw(renderer) 

 

if 0: # draw the bounding boxes around the text for debug 

for tick in self.majorTicks: 

label = tick.label1 

mpatches.bbox_artist(label, renderer) 

mpatches.bbox_artist(self.label, renderer) 

 

renderer.close_group(__name__) 

self.stale = False 

 

def _get_label(self): 

raise NotImplementedError('Derived must override') 

 

def _get_offset_text(self): 

raise NotImplementedError('Derived must override') 

 

def get_gridlines(self): 

'Return the grid lines as a list of Line2D instance' 

ticks = self.get_major_ticks() 

return cbook.silent_list('Line2D gridline', 

[tick.gridline for tick in ticks]) 

 

def get_label(self): 

'Return the axis label as a Text instance' 

return self.label 

 

def get_offset_text(self): 

'Return the axis offsetText as a Text instance' 

return self.offsetText 

 

def get_pickradius(self): 

'Return the depth of the axis used by the picker' 

return self.pickradius 

 

def get_majorticklabels(self): 

'Return a list of Text instances for the major ticklabels' 

ticks = self.get_major_ticks() 

labels1 = [tick.label1 for tick in ticks if tick.label1On] 

labels2 = [tick.label2 for tick in ticks if tick.label2On] 

return cbook.silent_list('Text major ticklabel', labels1 + labels2) 

 

def get_minorticklabels(self): 

'Return a list of Text instances for the minor ticklabels' 

ticks = self.get_minor_ticks() 

labels1 = [tick.label1 for tick in ticks if tick.label1On] 

labels2 = [tick.label2 for tick in ticks if tick.label2On] 

return cbook.silent_list('Text minor ticklabel', labels1 + labels2) 

 

def get_ticklabels(self, minor=False, which=None): 

""" 

Get the tick labels as a list of :class:`~matplotlib.text.Text` 

instances. 

 

Parameters 

---------- 

minor : bool 

If True return the minor ticklabels, 

else return the major ticklabels 

 

which : None, ('minor', 'major', 'both') 

Overrides `minor`. 

 

Selects which ticklabels to return 

 

Returns 

------- 

ret : list 

List of :class:`~matplotlib.text.Text` instances. 

""" 

 

if which is not None: 

if which == 'minor': 

return self.get_minorticklabels() 

elif which == 'major': 

return self.get_majorticklabels() 

elif which == 'both': 

return self.get_majorticklabels() + self.get_minorticklabels() 

else: 

raise ValueError("`which` must be one of ('minor', 'major', " 

"'both') not " + str(which)) 

if minor: 

return self.get_minorticklabels() 

return self.get_majorticklabels() 

 

def get_majorticklines(self): 

'Return the major tick lines as a list of Line2D instances' 

lines = [] 

ticks = self.get_major_ticks() 

for tick in ticks: 

lines.append(tick.tick1line) 

lines.append(tick.tick2line) 

return cbook.silent_list('Line2D ticklines', lines) 

 

def get_minorticklines(self): 

'Return the minor tick lines as a list of Line2D instances' 

lines = [] 

ticks = self.get_minor_ticks() 

for tick in ticks: 

lines.append(tick.tick1line) 

lines.append(tick.tick2line) 

return cbook.silent_list('Line2D ticklines', lines) 

 

def get_ticklines(self, minor=False): 

'Return the tick lines as a list of Line2D instances' 

if minor: 

return self.get_minorticklines() 

return self.get_majorticklines() 

 

def get_majorticklocs(self): 

"Get the major tick locations in data coordinates as a numpy array" 

return self.major.locator() 

 

def get_minorticklocs(self): 

"Get the minor tick locations in data coordinates as a numpy array" 

return self.minor.locator() 

 

def get_ticklocs(self, minor=False): 

"Get the tick locations in data coordinates as a numpy array" 

if minor: 

return self.minor.locator() 

return self.major.locator() 

 

def get_ticks_direction(self, minor=False): 

""" 

Get the tick directions as a numpy array 

 

Parameters 

---------- 

minor : boolean 

True to return the minor tick directions, 

False to return the major tick directions, 

Default is False 

 

Returns 

------- 

numpy array of tick directions 

""" 

if minor: 

return np.array( 

[tick._tickdir for tick in self.get_minor_ticks()]) 

else: 

return np.array( 

[tick._tickdir for tick in self.get_major_ticks()]) 

 

def _get_tick(self, major): 

'return the default tick instance' 

raise NotImplementedError('derived must override') 

 

def _copy_tick_props(self, src, dest): 

'Copy the props from src tick to dest tick' 

if src is None or dest is None: 

return 

dest.label1.update_from(src.label1) 

dest.label2.update_from(src.label2) 

 

dest.tick1line.update_from(src.tick1line) 

dest.tick2line.update_from(src.tick2line) 

dest.gridline.update_from(src.gridline) 

 

dest.tick1On = src.tick1On 

dest.tick2On = src.tick2On 

dest.label1On = src.label1On 

dest.label2On = src.label2On 

 

def get_label_text(self): 

'Get the text of the label' 

return self.label.get_text() 

 

def get_major_locator(self): 

'Get the locator of the major ticker' 

return self.major.locator 

 

def get_minor_locator(self): 

'Get the locator of the minor ticker' 

return self.minor.locator 

 

def get_major_formatter(self): 

'Get the formatter of the major ticker' 

return self.major.formatter 

 

def get_minor_formatter(self): 

'Get the formatter of the minor ticker' 

return self.minor.formatter 

 

def get_major_ticks(self, numticks=None): 

'get the tick instances; grow as necessary' 

if numticks is None: 

numticks = len(self.get_major_locator()()) 

 

while len(self.majorTicks) < numticks: 

# update the new tick label properties from the old 

tick = self._get_tick(major=True) 

self.majorTicks.append(tick) 

if self._gridOnMajor: 

tick.gridOn = True 

self._copy_tick_props(self.majorTicks[0], tick) 

 

return self.majorTicks[:numticks] 

 

def get_minor_ticks(self, numticks=None): 

'get the minor tick instances; grow as necessary' 

if numticks is None: 

numticks = len(self.get_minor_locator()()) 

 

while len(self.minorTicks) < numticks: 

# update the new tick label properties from the old 

tick = self._get_tick(major=False) 

self.minorTicks.append(tick) 

if self._gridOnMinor: 

tick.gridOn = True 

self._copy_tick_props(self.minorTicks[0], tick) 

 

return self.minorTicks[:numticks] 

 

def grid(self, b=None, which='major', **kwargs): 

""" 

Configure the grid lines. 

 

Parameters 

---------- 

b : bool or None 

Whether to show the grid lines. If any *kwargs* are supplied, 

it is assumed you want the grid on and *b* will be set to True. 

 

If *b* is *None* and there are no *kwargs*, this toggles the 

visibility of the lines. 

 

which : {'major', 'minor', 'both'} 

The grid lines to apply the changes on. 

 

**kwargs : `.Line2D` properties 

Define the line properties of the grid, e.g.:: 

 

grid(color='r', linestyle='-', linewidth=2) 

 

""" 

if len(kwargs): 

b = True 

which = which.lower() 

gridkw = {'grid_' + item[0]: item[1] for item in kwargs.items()} 

if which in ['minor', 'both']: 

if b is None: 

self._gridOnMinor = not self._gridOnMinor 

else: 

self._gridOnMinor = b 

self.set_tick_params(which='minor', gridOn=self._gridOnMinor, 

**gridkw) 

if which in ['major', 'both']: 

if b is None: 

self._gridOnMajor = not self._gridOnMajor 

else: 

self._gridOnMajor = b 

self.set_tick_params(which='major', gridOn=self._gridOnMajor, 

**gridkw) 

self.stale = True 

 

def update_units(self, data): 

""" 

introspect *data* for units converter and update the 

axis.converter instance if necessary. Return *True* 

if *data* is registered for unit conversion. 

""" 

 

converter = munits.registry.get_converter(data) 

if converter is None: 

return False 

 

neednew = self.converter != converter 

self.converter = converter 

default = self.converter.default_units(data, self) 

if default is not None and self.units is None: 

self.set_units(default) 

 

if neednew: 

self._update_axisinfo() 

self.stale = True 

return True 

 

def _update_axisinfo(self): 

""" 

check the axis converter for the stored units to see if the 

axis info needs to be updated 

""" 

if self.converter is None: 

return 

 

info = self.converter.axisinfo(self.units, self) 

 

if info is None: 

return 

if info.majloc is not None and \ 

self.major.locator != info.majloc and self.isDefault_majloc: 

self.set_major_locator(info.majloc) 

self.isDefault_majloc = True 

if info.minloc is not None and \ 

self.minor.locator != info.minloc and self.isDefault_minloc: 

self.set_minor_locator(info.minloc) 

self.isDefault_minloc = True 

if info.majfmt is not None and \ 

self.major.formatter != info.majfmt and self.isDefault_majfmt: 

self.set_major_formatter(info.majfmt) 

self.isDefault_majfmt = True 

if info.minfmt is not None and \ 

self.minor.formatter != info.minfmt and self.isDefault_minfmt: 

self.set_minor_formatter(info.minfmt) 

self.isDefault_minfmt = True 

if info.label is not None and self.isDefault_label: 

self.set_label_text(info.label) 

self.isDefault_label = True 

 

self.set_default_intervals() 

 

def have_units(self): 

return self.converter is not None or self.units is not None 

 

def convert_units(self, x): 

# If x is already a number, doesn't need converting 

if munits.ConversionInterface.is_numlike(x): 

return x 

 

if self.converter is None: 

self.converter = munits.registry.get_converter(x) 

 

if self.converter is None: 

return x 

 

ret = self.converter.convert(x, self.units, self) 

return ret 

 

def set_units(self, u): 

""" 

set the units for axis 

 

ACCEPTS: a units tag 

""" 

pchanged = False 

if u is None: 

self.units = None 

pchanged = True 

else: 

if u != self.units: 

self.units = u 

pchanged = True 

if pchanged: 

self._update_axisinfo() 

self.callbacks.process('units') 

self.callbacks.process('units finalize') 

self.stale = True 

 

def get_units(self): 

'return the units for axis' 

return self.units 

 

def set_label_text(self, label, fontdict=None, **kwargs): 

""" 

Set the text value of the axis label. 

 

ACCEPTS: A string value for the label 

""" 

self.isDefault_label = False 

self.label.set_text(label) 

if fontdict is not None: 

self.label.update(fontdict) 

self.label.update(kwargs) 

self.stale = True 

return self.label 

 

def set_major_formatter(self, formatter): 

""" 

Set the formatter of the major ticker. 

 

Parameters 

---------- 

formatter : ~matplotlib.ticker.Formatter 

""" 

if not isinstance(formatter, mticker.Formatter): 

raise TypeError("formatter argument should be instance of " 

"matplotlib.ticker.Formatter") 

self.isDefault_majfmt = False 

self.major.formatter = formatter 

formatter.set_axis(self) 

self.stale = True 

 

def set_minor_formatter(self, formatter): 

""" 

Set the formatter of the minor ticker. 

 

Parameters 

---------- 

formatter : ~matplotlib.ticker.Formatter 

""" 

if not isinstance(formatter, mticker.Formatter): 

raise TypeError("formatter argument should be instance of " 

"matplotlib.ticker.Formatter") 

self.isDefault_minfmt = False 

self.minor.formatter = formatter 

formatter.set_axis(self) 

self.stale = True 

 

def set_major_locator(self, locator): 

""" 

Set the locator of the major ticker. 

 

Parameters 

---------- 

locator : ~matplotlib.ticker.Locator 

""" 

if not isinstance(locator, mticker.Locator): 

raise TypeError("formatter argument should be instance of " 

"matplotlib.ticker.Locator") 

self.isDefault_majloc = False 

self.major.locator = locator 

locator.set_axis(self) 

self.stale = True 

 

def set_minor_locator(self, locator): 

""" 

Set the locator of the minor ticker. 

 

Parameters 

---------- 

locator : ~matplotlib.ticker.Locator 

""" 

if not isinstance(locator, mticker.Locator): 

raise TypeError("formatter argument should be instance of " 

"matplotlib.ticker.Locator") 

self.isDefault_minloc = False 

self.minor.locator = locator 

locator.set_axis(self) 

self.stale = True 

 

def set_pickradius(self, pickradius): 

""" 

Set the depth of the axis used by the picker. 

 

Parameters 

---------- 

pickradius : float 

""" 

self.pickradius = pickradius 

 

def set_ticklabels(self, ticklabels, *args, minor=False, **kwargs): 

""" 

Set the text values of the tick labels. Return a list of Text 

instances. Use *kwarg* *minor=True* to select minor ticks. 

All other kwargs are used to update the text object properties. 

As for get_ticklabels, label1 (left or bottom) is 

affected for a given tick only if its label1On attribute 

is True, and similarly for label2. The list of returned 

label text objects consists of all such label1 objects followed 

by all such label2 objects. 

 

The input *ticklabels* is assumed to match the set of 

tick locations, regardless of the state of label1On and 

label2On. 

 

ACCEPTS: sequence of strings or Text objects 

""" 

get_labels = [] 

for t in ticklabels: 

# try calling get_text() to check whether it is Text object 

# if it is Text, get label content 

try: 

get_labels.append(t.get_text()) 

# otherwise add the label to the list directly 

except AttributeError: 

get_labels.append(t) 

# replace the ticklabels list with the processed one 

ticklabels = get_labels 

 

if minor: 

self.set_minor_formatter(mticker.FixedFormatter(ticklabels)) 

ticks = self.get_minor_ticks() 

else: 

self.set_major_formatter(mticker.FixedFormatter(ticklabels)) 

ticks = self.get_major_ticks() 

ret = [] 

for tick_label, tick in zip(ticklabels, ticks): 

# deal with label1 

tick.label1.set_text(tick_label) 

tick.label1.update(kwargs) 

# deal with label2 

tick.label2.set_text(tick_label) 

tick.label2.update(kwargs) 

# only return visible tick labels 

if tick.label1On: 

ret.append(tick.label1) 

if tick.label2On: 

ret.append(tick.label2) 

 

self.stale = True 

return ret 

 

def set_ticks(self, ticks, minor=False): 

""" 

Set the locations of the tick marks from sequence ticks 

 

ACCEPTS: sequence of floats 

""" 

# XXX if the user changes units, the information will be lost here 

ticks = self.convert_units(ticks) 

if len(ticks) > 1: 

xleft, xright = self.get_view_interval() 

if xright > xleft: 

self.set_view_interval(min(ticks), max(ticks)) 

else: 

self.set_view_interval(max(ticks), min(ticks)) 

if minor: 

self.set_minor_locator(mticker.FixedLocator(ticks)) 

return self.get_minor_ticks(len(ticks)) 

else: 

self.set_major_locator(mticker.FixedLocator(ticks)) 

return self.get_major_ticks(len(ticks)) 

 

def _get_tick_boxes_siblings(self, xdir, renderer): 

""" 

Get the bounding boxes for this `.axis` and its siblings 

as set by `.Figure.align_xlabels` or `.Figure.align_ylablels`. 

 

By default it just gets bboxes for self. 

""" 

raise NotImplementedError('Derived must override') 

 

def _update_label_position(self, renderer): 

""" 

Update the label position based on the bounding box enclosing 

all the ticklabels and axis spine 

""" 

raise NotImplementedError('Derived must override') 

 

def _update_offset_text_position(self, bboxes, bboxes2): 

""" 

Update the label position based on the sequence of bounding 

boxes of all the ticklabels 

""" 

raise NotImplementedError('Derived must override') 

 

def pan(self, numsteps): 

'Pan *numsteps* (can be positive or negative)' 

self.major.locator.pan(numsteps) 

 

def zoom(self, direction): 

"Zoom in/out on axis; if *direction* is >0 zoom in, else zoom out" 

self.major.locator.zoom(direction) 

 

def axis_date(self, tz=None): 

""" 

Sets up x-axis ticks and labels that treat the x data as dates. 

*tz* is a :class:`tzinfo` instance or a timezone string. 

This timezone is used to create date labels. 

""" 

# By providing a sample datetime instance with the desired timezone, 

# the registered converter can be selected, and the "units" attribute, 

# which is the timezone, can be set. 

if isinstance(tz, str): 

import dateutil.tz 

tz = dateutil.tz.gettz(tz) 

self.update_units(datetime.datetime(2009, 1, 1, 0, 0, 0, 0, tz)) 

 

def get_tick_space(self): 

""" 

Return the estimated number of ticks that can fit on the axis. 

""" 

# Must be overridden in the subclass 

raise NotImplementedError() 

 

def get_label_position(self): 

""" 

Return the label position (top or bottom) 

""" 

return self.label_position 

 

def set_label_position(self, position): 

""" 

Set the label position (top or bottom) 

 

Parameters 

---------- 

position : {'top', 'bottom'} 

""" 

raise NotImplementedError() 

 

def get_minpos(self): 

raise NotImplementedError() 

 

 

class XAxis(Axis): 

__name__ = 'xaxis' 

axis_name = 'x' 

 

def contains(self, mouseevent): 

"""Test whether the mouse event occurred in the x axis. 

""" 

if callable(self._contains): 

return self._contains(self, mouseevent) 

 

x, y = mouseevent.x, mouseevent.y 

try: 

trans = self.axes.transAxes.inverted() 

xaxes, yaxes = trans.transform_point((x, y)) 

except ValueError: 

return False, {} 

l, b = self.axes.transAxes.transform_point((0, 0)) 

r, t = self.axes.transAxes.transform_point((1, 1)) 

inaxis = 0 <= xaxes <= 1 and ( 

b - self.pickradius < y < b or 

t < y < t + self.pickradius) 

return inaxis, {} 

 

def _get_tick(self, major): 

if major: 

tick_kw = self._major_tick_kw 

else: 

tick_kw = self._minor_tick_kw 

return XTick(self.axes, 0, '', major=major, **tick_kw) 

 

def _get_label(self): 

# x in axes coords, y in display coords (to be updated at draw 

# time by _update_label_positions) 

label = mtext.Text(x=0.5, y=0, 

fontproperties=font_manager.FontProperties( 

size=rcParams['axes.labelsize'], 

weight=rcParams['axes.labelweight']), 

color=rcParams['axes.labelcolor'], 

verticalalignment='top', 

horizontalalignment='center') 

 

label.set_transform(mtransforms.blended_transform_factory( 

self.axes.transAxes, mtransforms.IdentityTransform())) 

 

self._set_artist_props(label) 

self.label_position = 'bottom' 

return label 

 

def _get_offset_text(self): 

# x in axes coords, y in display coords (to be updated at draw time) 

offsetText = mtext.Text(x=1, y=0, 

fontproperties=font_manager.FontProperties( 

size=rcParams['xtick.labelsize']), 

color=rcParams['xtick.color'], 

verticalalignment='top', 

horizontalalignment='right') 

offsetText.set_transform(mtransforms.blended_transform_factory( 

self.axes.transAxes, mtransforms.IdentityTransform()) 

) 

self._set_artist_props(offsetText) 

self.offset_text_position = 'bottom' 

return offsetText 

 

def _get_pixel_distance_along_axis(self, where, perturb): 

""" 

Returns the amount, in data coordinates, that a single pixel 

corresponds to in the locality given by "where", which is also given 

in data coordinates, and is an x coordinate. "perturb" is the amount 

to perturb the pixel. Usually +0.5 or -0.5. 

 

Implementing this routine for an axis is optional; if present, it will 

ensure that no ticks are lost due to round-off at the extreme ends of 

an axis. 

""" 

 

# Note that this routine does not work for a polar axis, because of 

# the 1e-10 below. To do things correctly, we need to use rmax 

# instead of 1e-10 for a polar axis. But since we do not have that 

# kind of information at this point, we just don't try to pad anything 

# for the theta axis of a polar plot. 

if self.axes.name == 'polar': 

return 0.0 

 

# 

# first figure out the pixel location of the "where" point. We use 

# 1e-10 for the y point, so that we remain compatible with log axes. 

 

# transformation from data coords to display coords 

trans = self.axes.transData 

# transformation from display coords to data coords 

transinv = trans.inverted() 

pix = trans.transform_point((where, 1e-10)) 

# perturb the pixel 

ptp = transinv.transform_point((pix[0] + perturb, pix[1])) 

dx = abs(ptp[0] - where) 

 

return dx 

 

def set_label_position(self, position): 

""" 

Set the label position (top or bottom) 

 

Parameters 

---------- 

position : {'top', 'bottom'} 

""" 

if position == 'top': 

self.label.set_verticalalignment('baseline') 

elif position == 'bottom': 

self.label.set_verticalalignment('top') 

else: 

raise ValueError("Position accepts only 'top' or 'bottom'") 

self.label_position = position 

self.stale = True 

 

def _get_tick_boxes_siblings(self, renderer): 

""" 

Get the bounding boxes for this `.axis` and its siblings 

as set by `.Figure.align_xlabels` or `.Figure.align_ylablels`. 

 

By default it just gets bboxes for self. 

""" 

bboxes = [] 

bboxes2 = [] 

# get the Grouper that keeps track of x-label groups for this figure 

grp = self.figure._align_xlabel_grp 

# if we want to align labels from other axes: 

for nn, axx in enumerate(grp.get_siblings(self.axes)): 

ticks_to_draw = axx.xaxis._update_ticks(renderer) 

tlb, tlb2 = axx.xaxis._get_tick_bboxes(ticks_to_draw, renderer) 

bboxes.extend(tlb) 

bboxes2.extend(tlb2) 

return bboxes, bboxes2 

 

def _update_label_position(self, renderer): 

""" 

Update the label position based on the bounding box enclosing 

all the ticklabels and axis spine 

""" 

if not self._autolabelpos: 

return 

 

# get bounding boxes for this axis and any siblings 

# that have been set by `fig.align_xlabels()` 

bboxes, bboxes2 = self._get_tick_boxes_siblings(renderer=renderer) 

 

x, y = self.label.get_position() 

if self.label_position == 'bottom': 

try: 

spine = self.axes.spines['bottom'] 

spinebbox = spine.get_transform().transform_path( 

spine.get_path()).get_extents() 

except KeyError: 

# use axes if spine doesn't exist 

spinebbox = self.axes.bbox 

bbox = mtransforms.Bbox.union(bboxes + [spinebbox]) 

bottom = bbox.y0 

 

self.label.set_position( 

(x, bottom - self.labelpad * self.figure.dpi / 72) 

) 

 

else: 

try: 

spine = self.axes.spines['top'] 

spinebbox = spine.get_transform().transform_path( 

spine.get_path()).get_extents() 

except KeyError: 

# use axes if spine doesn't exist 

spinebbox = self.axes.bbox 

bbox = mtransforms.Bbox.union(bboxes2 + [spinebbox]) 

top = bbox.y1 

 

self.label.set_position( 

(x, top + self.labelpad * self.figure.dpi / 72) 

) 

 

def _update_offset_text_position(self, bboxes, bboxes2): 

""" 

Update the offset_text position based on the sequence of bounding 

boxes of all the ticklabels 

""" 

x, y = self.offsetText.get_position() 

if not len(bboxes): 

bottom = self.axes.bbox.ymin 

else: 

bbox = mtransforms.Bbox.union(bboxes) 

bottom = bbox.y0 

self.offsetText.set_position( 

(x, bottom - self.OFFSETTEXTPAD * self.figure.dpi / 72) 

) 

 

def get_text_heights(self, renderer): 

""" 

Returns the amount of space one should reserve for text 

above and below the axes. Returns a tuple (above, below) 

""" 

bbox, bbox2 = self.get_ticklabel_extents(renderer) 

# MGDTODO: Need a better way to get the pad 

padPixels = self.majorTicks[0].get_pad_pixels() 

 

above = 0.0 

if bbox2.height: 

above += bbox2.height + padPixels 

below = 0.0 

if bbox.height: 

below += bbox.height + padPixels 

 

if self.get_label_position() == 'top': 

above += self.label.get_window_extent(renderer).height + padPixels 

else: 

below += self.label.get_window_extent(renderer).height + padPixels 

return above, below 

 

def set_ticks_position(self, position): 

""" 

Set the ticks position (top, bottom, both, default or none) 

both sets the ticks to appear on both positions, but does not 

change the tick labels. 'default' resets the tick positions to 

the default: ticks on both positions, labels at bottom. 'none' 

can be used if you don't want any ticks. 'none' and 'both' 

affect only the ticks, not the labels. 

 

Parameters 

---------- 

position : {'top', 'bottom', 'both', 'default', 'none'} 

""" 

if position == 'top': 

self.set_tick_params(which='both', top=True, labeltop=True, 

bottom=False, labelbottom=False) 

elif position == 'bottom': 

self.set_tick_params(which='both', top=False, labeltop=False, 

bottom=True, labelbottom=True) 

elif position == 'both': 

self.set_tick_params(which='both', top=True, 

bottom=True) 

elif position == 'none': 

self.set_tick_params(which='both', top=False, 

bottom=False) 

elif position == 'default': 

self.set_tick_params(which='both', top=True, labeltop=False, 

bottom=True, labelbottom=True) 

else: 

raise ValueError("invalid position: %s" % position) 

self.stale = True 

 

def tick_top(self): 

""" 

Move ticks and ticklabels (if present) to the top of the axes. 

""" 

label = True 

if 'label1On' in self._major_tick_kw: 

label = (self._major_tick_kw['label1On'] 

or self._major_tick_kw['label2On']) 

self.set_ticks_position('top') 

# if labels were turned off before this was called 

# leave them off 

self.set_tick_params(which='both', labeltop=label) 

 

def tick_bottom(self): 

""" 

Move ticks and ticklabels (if present) to the bottom of the axes. 

""" 

label = True 

if 'label1On' in self._major_tick_kw: 

label = (self._major_tick_kw['label1On'] 

or self._major_tick_kw['label2On']) 

self.set_ticks_position('bottom') 

# if labels were turned off before this was called 

# leave them off 

self.set_tick_params(which='both', labelbottom=label) 

 

def get_ticks_position(self): 

""" 

Return the ticks position (top, bottom, default or unknown) 

""" 

majt = self.majorTicks[0] 

mT = self.minorTicks[0] 

 

majorTop = ((not majt.tick1On) and majt.tick2On and 

(not majt.label1On) and majt.label2On) 

minorTop = ((not mT.tick1On) and mT.tick2On and 

(not mT.label1On) and mT.label2On) 

if majorTop and minorTop: 

return 'top' 

 

MajorBottom = (majt.tick1On and (not majt.tick2On) and 

majt.label1On and (not majt.label2On)) 

MinorBottom = (mT.tick1On and (not mT.tick2On) and 

mT.label1On and (not mT.label2On)) 

if MajorBottom and MinorBottom: 

return 'bottom' 

 

majorDefault = (majt.tick1On and majt.tick2On and 

majt.label1On and (not majt.label2On)) 

minorDefault = (mT.tick1On and mT.tick2On and 

mT.label1On and (not mT.label2On)) 

if majorDefault and minorDefault: 

return 'default' 

 

return 'unknown' 

 

def get_view_interval(self): 

'return the Interval instance for this axis view limits' 

return self.axes.viewLim.intervalx 

 

def set_view_interval(self, vmin, vmax, ignore=False): 

""" 

If *ignore* is *False*, the order of vmin, vmax 

does not matter; the original axis orientation will 

be preserved. In addition, the view limits can be 

expanded, but will not be reduced. This method is 

for mpl internal use; for normal use, see 

:meth:`~matplotlib.axes.Axes.set_xlim`. 

 

""" 

if ignore: 

self.axes.viewLim.intervalx = vmin, vmax 

else: 

Vmin, Vmax = self.get_view_interval() 

if Vmin < Vmax: 

self.axes.viewLim.intervalx = (min(vmin, vmax, Vmin), 

max(vmin, vmax, Vmax)) 

else: 

self.axes.viewLim.intervalx = (max(vmin, vmax, Vmin), 

min(vmin, vmax, Vmax)) 

 

def get_minpos(self): 

return self.axes.dataLim.minposx 

 

def get_data_interval(self): 

'return the Interval instance for this axis data limits' 

return self.axes.dataLim.intervalx 

 

def set_data_interval(self, vmin, vmax, ignore=False): 

'set the axis data limits' 

if ignore: 

self.axes.dataLim.intervalx = vmin, vmax 

else: 

Vmin, Vmax = self.get_data_interval() 

self.axes.dataLim.intervalx = min(vmin, Vmin), max(vmax, Vmax) 

self.stale = True 

 

def set_default_intervals(self): 

'set the default limits for the axis interval if they are not mutated' 

xmin, xmax = 0., 1. 

dataMutated = self.axes.dataLim.mutatedx() 

viewMutated = self.axes.viewLim.mutatedx() 

if not dataMutated or not viewMutated: 

if self.converter is not None: 

info = self.converter.axisinfo(self.units, self) 

if info.default_limits is not None: 

valmin, valmax = info.default_limits 

xmin = self.converter.convert(valmin, self.units, self) 

xmax = self.converter.convert(valmax, self.units, self) 

if not dataMutated: 

self.axes.dataLim.intervalx = xmin, xmax 

if not viewMutated: 

self.axes.viewLim.intervalx = xmin, xmax 

self.stale = True 

 

def get_tick_space(self): 

ends = self.axes.transAxes.transform([[0, 0], [1, 0]]) 

length = ((ends[1][0] - ends[0][0]) / self.axes.figure.dpi) * 72 

tick = self._get_tick(True) 

# There is a heuristic here that the aspect ratio of tick text 

# is no more than 3:1 

size = tick.label1.get_size() * 3 

if size > 0: 

return int(np.floor(length / size)) 

else: 

return 2**31 - 1 

 

 

class YAxis(Axis): 

__name__ = 'yaxis' 

axis_name = 'y' 

 

def contains(self, mouseevent): 

"""Test whether the mouse event occurred in the y axis. 

 

Returns *True* | *False* 

""" 

if callable(self._contains): 

return self._contains(self, mouseevent) 

 

x, y = mouseevent.x, mouseevent.y 

try: 

trans = self.axes.transAxes.inverted() 

xaxes, yaxes = trans.transform_point((x, y)) 

except ValueError: 

return False, {} 

l, b = self.axes.transAxes.transform_point((0, 0)) 

r, t = self.axes.transAxes.transform_point((1, 1)) 

inaxis = 0 <= yaxes <= 1 and ( 

l - self.pickradius < x < l or 

r < x < r + self.pickradius) 

return inaxis, {} 

 

def _get_tick(self, major): 

if major: 

tick_kw = self._major_tick_kw 

else: 

tick_kw = self._minor_tick_kw 

return YTick(self.axes, 0, '', major=major, **tick_kw) 

 

def _get_label(self): 

# x in display coords (updated by _update_label_position) 

# y in axes coords 

label = mtext.Text(x=0, y=0.5, 

# todo: get the label position 

fontproperties=font_manager.FontProperties( 

size=rcParams['axes.labelsize'], 

weight=rcParams['axes.labelweight']), 

color=rcParams['axes.labelcolor'], 

verticalalignment='bottom', 

horizontalalignment='center', 

rotation='vertical', 

rotation_mode='anchor') 

label.set_transform(mtransforms.blended_transform_factory( 

mtransforms.IdentityTransform(), self.axes.transAxes)) 

 

self._set_artist_props(label) 

self.label_position = 'left' 

return label 

 

def _get_offset_text(self): 

# x in display coords, y in axes coords (to be updated at draw time) 

offsetText = mtext.Text(x=0, y=0.5, 

fontproperties=font_manager.FontProperties( 

size=rcParams['ytick.labelsize'] 

), 

color=rcParams['ytick.color'], 

verticalalignment='baseline', 

horizontalalignment='left') 

offsetText.set_transform(mtransforms.blended_transform_factory( 

self.axes.transAxes, mtransforms.IdentityTransform()) 

) 

self._set_artist_props(offsetText) 

self.offset_text_position = 'left' 

return offsetText 

 

def _get_pixel_distance_along_axis(self, where, perturb): 

""" 

Returns the amount, in data coordinates, that a single pixel 

corresponds to in the locality given by *where*, which is also given 

in data coordinates, and is a y coordinate. 

 

*perturb* is the amount to perturb the pixel. Usually +0.5 or -0.5. 

 

Implementing this routine for an axis is optional; if present, it will 

ensure that no ticks are lost due to round-off at the extreme ends of 

an axis. 

""" 

 

# 

# first figure out the pixel location of the "where" point. We use 

# 1e-10 for the x point, so that we remain compatible with log axes. 

 

# transformation from data coords to display coords 

trans = self.axes.transData 

# transformation from display coords to data coords 

transinv = trans.inverted() 

pix = trans.transform_point((1e-10, where)) 

# perturb the pixel 

ptp = transinv.transform_point((pix[0], pix[1] + perturb)) 

dy = abs(ptp[1] - where) 

return dy 

 

def set_label_position(self, position): 

""" 

Set the label position (left or right) 

 

Parameters 

---------- 

position : {'left', 'right'} 

""" 

self.label.set_rotation_mode('anchor') 

self.label.set_horizontalalignment('center') 

if position == 'left': 

self.label.set_verticalalignment('bottom') 

elif position == 'right': 

self.label.set_verticalalignment('top') 

else: 

raise ValueError("Position accepts only 'left' or 'right'") 

self.label_position = position 

self.stale = True 

 

def _get_tick_boxes_siblings(self, renderer): 

""" 

Get the bounding boxes for this `.axis` and its siblings 

as set by `.Figure.align_xlabels` or `.Figure.align_ylablels`. 

 

By default it just gets bboxes for self. 

""" 

bboxes = [] 

bboxes2 = [] 

# get the Grouper that keeps track of y-label groups for this figure 

grp = self.figure._align_ylabel_grp 

# if we want to align labels from other axes: 

for axx in grp.get_siblings(self.axes): 

ticks_to_draw = axx.yaxis._update_ticks(renderer) 

tlb, tlb2 = axx.yaxis._get_tick_bboxes(ticks_to_draw, renderer) 

bboxes.extend(tlb) 

bboxes2.extend(tlb2) 

return bboxes, bboxes2 

 

def _update_label_position(self, renderer): 

""" 

Update the label position based on the bounding box enclosing 

all the ticklabels and axis spine 

""" 

if not self._autolabelpos: 

return 

 

# get bounding boxes for this axis and any siblings 

# that have been set by `fig.align_ylabels()` 

bboxes, bboxes2 = self._get_tick_boxes_siblings(renderer=renderer) 

 

x, y = self.label.get_position() 

if self.label_position == 'left': 

try: 

spine = self.axes.spines['left'] 

spinebbox = spine.get_transform().transform_path( 

spine.get_path()).get_extents() 

except KeyError: 

# use axes if spine doesn't exist 

spinebbox = self.axes.bbox 

bbox = mtransforms.Bbox.union(bboxes + [spinebbox]) 

left = bbox.x0 

self.label.set_position( 

(left - self.labelpad * self.figure.dpi / 72, y) 

) 

 

else: 

try: 

spine = self.axes.spines['right'] 

spinebbox = spine.get_transform().transform_path( 

spine.get_path()).get_extents() 

except KeyError: 

# use axes if spine doesn't exist 

spinebbox = self.axes.bbox 

bbox = mtransforms.Bbox.union(bboxes2 + [spinebbox]) 

right = bbox.x1 

 

self.label.set_position( 

(right + self.labelpad * self.figure.dpi / 72, y) 

) 

 

def _update_offset_text_position(self, bboxes, bboxes2): 

""" 

Update the offset_text position based on the sequence of bounding 

boxes of all the ticklabels 

""" 

x, y = self.offsetText.get_position() 

top = self.axes.bbox.ymax 

self.offsetText.set_position( 

(x, top + self.OFFSETTEXTPAD * self.figure.dpi / 72) 

) 

 

def set_offset_position(self, position): 

""" 

Parameters 

---------- 

position : {'left', 'right'} 

""" 

x, y = self.offsetText.get_position() 

if position == 'left': 

x = 0 

elif position == 'right': 

x = 1 

else: 

raise ValueError("Position accepts only [ 'left' | 'right' ]") 

 

self.offsetText.set_ha(position) 

self.offsetText.set_position((x, y)) 

self.stale = True 

 

def get_text_widths(self, renderer): 

bbox, bbox2 = self.get_ticklabel_extents(renderer) 

# MGDTODO: Need a better way to get the pad 

padPixels = self.majorTicks[0].get_pad_pixels() 

 

left = 0.0 

if bbox.width: 

left += bbox.width + padPixels 

right = 0.0 

if bbox2.width: 

right += bbox2.width + padPixels 

 

if self.get_label_position() == 'left': 

left += self.label.get_window_extent(renderer).width + padPixels 

else: 

right += self.label.get_window_extent(renderer).width + padPixels 

return left, right 

 

def set_ticks_position(self, position): 

""" 

Set the ticks position (left, right, both, default or none) 

'both' sets the ticks to appear on both positions, but does not 

change the tick labels. 'default' resets the tick positions to 

the default: ticks on both positions, labels at left. 'none' 

can be used if you don't want any ticks. 'none' and 'both' 

affect only the ticks, not the labels. 

 

Parameters 

---------- 

position : {'left', 'right', 'both', 'default', 'none'} 

""" 

if position == 'right': 

self.set_tick_params(which='both', right=True, labelright=True, 

left=False, labelleft=False) 

self.set_offset_position(position) 

elif position == 'left': 

self.set_tick_params(which='both', right=False, labelright=False, 

left=True, labelleft=True) 

self.set_offset_position(position) 

elif position == 'both': 

self.set_tick_params(which='both', right=True, 

left=True) 

elif position == 'none': 

self.set_tick_params(which='both', right=False, 

left=False) 

elif position == 'default': 

self.set_tick_params(which='both', right=True, labelright=False, 

left=True, labelleft=True) 

else: 

raise ValueError("invalid position: %s" % position) 

self.stale = True 

 

def tick_right(self): 

""" 

Move ticks and ticklabels (if present) to the right of the axes. 

""" 

label = True 

if 'label1On' in self._major_tick_kw: 

label = (self._major_tick_kw['label1On'] 

or self._major_tick_kw['label2On']) 

self.set_ticks_position('right') 

# if labels were turned off before this was called 

# leave them off 

self.set_tick_params(which='both', labelright=label) 

 

def tick_left(self): 

""" 

Move ticks and ticklabels (if present) to the left of the axes. 

""" 

label = True 

if 'label1On' in self._major_tick_kw: 

label = (self._major_tick_kw['label1On'] 

or self._major_tick_kw['label2On']) 

self.set_ticks_position('left') 

# if labels were turned off before this was called 

# leave them off 

self.set_tick_params(which='both', labelleft=label) 

 

def get_ticks_position(self): 

""" 

Return the ticks position (left, right, both or unknown) 

""" 

majt = self.majorTicks[0] 

mT = self.minorTicks[0] 

 

majorRight = ((not majt.tick1On) and majt.tick2On and 

(not majt.label1On) and majt.label2On) 

minorRight = ((not mT.tick1On) and mT.tick2On and 

(not mT.label1On) and mT.label2On) 

if majorRight and minorRight: 

return 'right' 

 

majorLeft = (majt.tick1On and (not majt.tick2On) and 

majt.label1On and (not majt.label2On)) 

minorLeft = (mT.tick1On and (not mT.tick2On) and 

mT.label1On and (not mT.label2On)) 

if majorLeft and minorLeft: 

return 'left' 

 

majorDefault = (majt.tick1On and majt.tick2On and 

majt.label1On and (not majt.label2On)) 

minorDefault = (mT.tick1On and mT.tick2On and 

mT.label1On and (not mT.label2On)) 

if majorDefault and minorDefault: 

return 'default' 

 

return 'unknown' 

 

def get_view_interval(self): 

'return the Interval instance for this axis view limits' 

return self.axes.viewLim.intervaly 

 

def set_view_interval(self, vmin, vmax, ignore=False): 

""" 

If *ignore* is *False*, the order of vmin, vmax 

does not matter; the original axis orientation will 

be preserved. In addition, the view limits can be 

expanded, but will not be reduced. This method is 

for mpl internal use; for normal use, see 

:meth:`~matplotlib.axes.Axes.set_ylim`. 

 

""" 

if ignore: 

self.axes.viewLim.intervaly = vmin, vmax 

else: 

Vmin, Vmax = self.get_view_interval() 

if Vmin < Vmax: 

self.axes.viewLim.intervaly = (min(vmin, vmax, Vmin), 

max(vmin, vmax, Vmax)) 

else: 

self.axes.viewLim.intervaly = (max(vmin, vmax, Vmin), 

min(vmin, vmax, Vmax)) 

self.stale = True 

 

def get_minpos(self): 

return self.axes.dataLim.minposy 

 

def get_data_interval(self): 

'return the Interval instance for this axis data limits' 

return self.axes.dataLim.intervaly 

 

def set_data_interval(self, vmin, vmax, ignore=False): 

'set the axis data limits' 

if ignore: 

self.axes.dataLim.intervaly = vmin, vmax 

else: 

Vmin, Vmax = self.get_data_interval() 

self.axes.dataLim.intervaly = min(vmin, Vmin), max(vmax, Vmax) 

self.stale = True 

 

def set_default_intervals(self): 

'set the default limits for the axis interval if they are not mutated' 

ymin, ymax = 0., 1. 

dataMutated = self.axes.dataLim.mutatedy() 

viewMutated = self.axes.viewLim.mutatedy() 

if not dataMutated or not viewMutated: 

if self.converter is not None: 

info = self.converter.axisinfo(self.units, self) 

if info.default_limits is not None: 

valmin, valmax = info.default_limits 

ymin = self.converter.convert(valmin, self.units, self) 

ymax = self.converter.convert(valmax, self.units, self) 

if not dataMutated: 

self.axes.dataLim.intervaly = ymin, ymax 

if not viewMutated: 

self.axes.viewLim.intervaly = ymin, ymax 

self.stale = True 

 

def get_tick_space(self): 

ends = self.axes.transAxes.transform([[0, 0], [0, 1]]) 

length = ((ends[1][1] - ends[0][1]) / self.axes.figure.dpi) * 72 

tick = self._get_tick(True) 

# Having a spacing of at least 2 just looks good. 

size = tick.label1.get_size() * 2.0 

if size > 0: 

return int(np.floor(length / size)) 

else: 

return 2**31 - 1