├── .gitignore ├── Contribution.md ├── README.md ├── _logo └── logo.svg ├── docs ├── .vuepress │ ├── components │ │ ├── UpgradePath.vue │ │ ├── ahome-article.vue │ │ ├── ahome-footer.vue │ │ ├── ahome-nav.vue │ │ ├── awesome.vue │ │ ├── diagram-markdown-slot-relationship.vue │ │ ├── gallery.vue │ │ └── svg-container.vue │ ├── config.ts │ ├── configs │ │ ├── head.ts │ │ ├── index.ts │ │ ├── navbar │ │ │ ├── en.ts │ │ │ ├── index.ts │ │ │ └── zh.ts │ │ ├── plugins.ts │ │ └── sidebar │ │ │ ├── deep_zh.ts │ │ │ ├── docs_en.ts │ │ │ ├── docs_zh.ts │ │ │ ├── en.ts │ │ │ ├── index.ts │ │ │ └── zh.ts │ ├── images │ │ └── logo.svg │ ├── public │ │ ├── icons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-180x180.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── msapplication-icon-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ └── safari-pinned-tab.svg │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── logo_awesome.svg │ │ ├── manifest.json │ │ └── static │ │ │ └── images │ │ │ ├── Anaconda_horizontal_RGB.png │ │ │ ├── SponsoredProjectStamp_300px.png │ │ │ ├── andrews_curve_winter.png │ │ │ ├── andrews_curves.png │ │ │ ├── appnexus_logo.png │ │ │ ├── aqr_capital_management_logo.png │ │ │ ├── area_plot_stacked.png │ │ │ ├── area_plot_unstacked.png │ │ │ ├── autocorrelation_plot.png │ │ │ ├── bar_plot_ex.png │ │ │ ├── bar_plot_multi_ex.png │ │ │ ├── bar_plot_stacked_ex.png │ │ │ ├── barh_plot_stacked_ex.png │ │ │ ├── basics_assign.png │ │ │ ├── bollinger.png │ │ │ ├── bootstrap_plot.png │ │ │ ├── box_new_colorize.png │ │ │ ├── box_new_kwargs.png │ │ │ ├── box_plot_ex.png │ │ │ ├── box_plot_ex2.png │ │ │ ├── box_plot_ex3.png │ │ │ ├── box_plot_new.png │ │ │ ├── boxplot_groupby.png │ │ │ ├── ci.png │ │ │ ├── compare_interpolations.png │ │ │ ├── cubehelix.png │ │ │ ├── cubehelix_cm.png │ │ │ ├── datadog_logo.png │ │ │ ├── df_pie_plot.png │ │ │ ├── df_plot_xy.png │ │ │ ├── errorbar_example.png │ │ │ ├── eval-perf-small.png │ │ │ ├── eval-perf.png │ │ │ ├── ewma_ex.png │ │ │ ├── expanding_mean_frame.png │ │ │ ├── formula1.png │ │ │ ├── formula10.png │ │ │ ├── formula2.png │ │ │ ├── formula3.png │ │ │ ├── formula4.png │ │ │ ├── formula5.png │ │ │ ├── formula6.png │ │ │ ├── formula7.png │ │ │ ├── formula8.png │ │ │ ├── formula9.png │ │ │ ├── frame_hist_ex.png │ │ │ ├── frame_plot_basic.png │ │ │ ├── frame_plot_basic_noleg.png │ │ │ ├── frame_plot_secondary_y.png │ │ │ ├── frame_plot_secondary_y_no_right.png │ │ │ ├── frame_plot_subplots.png │ │ │ ├── frame_plot_subplots_layout.png │ │ │ ├── frame_plot_subplots_multi_ax.png │ │ │ ├── greens.png │ │ │ ├── groupby_boxplot.png │ │ │ ├── groupby_boxplot_vis.png │ │ │ ├── groupby_transform_plot.png │ │ │ ├── grouped_hist.png │ │ │ ├── hexbin_plot.png │ │ │ ├── hexbin_plot_agg.png │ │ │ ├── hist_new.png │ │ │ ├── hist_new_kwargs.png │ │ │ ├── hist_new_stacked.png │ │ │ ├── hist_plot_ex.png │ │ │ ├── kde_plot.png │ │ │ ├── lag_plot.png │ │ │ ├── line_plot_table_data.png │ │ │ ├── line_plot_table_describe.png │ │ │ ├── line_plot_table_true.png │ │ │ ├── logoUPSayPlusCDS_990.png │ │ │ ├── merge_on_index_and_column.png │ │ │ ├── merging_append1.png │ │ │ ├── merging_append2.png │ │ │ ├── merging_append3.png │ │ │ ├── merging_append_dits.png │ │ │ ├── merging_append_ignore_index.png │ │ │ ├── merging_append_series_as_row.png │ │ │ ├── merging_combine_first.png │ │ │ ├── merging_concat_axis1.png │ │ │ ├── merging_concat_axis1_inner.png │ │ │ ├── merging_concat_axis1_join_axes.png │ │ │ ├── merging_concat_basic.png │ │ │ ├── merging_concat_dict.png │ │ │ ├── merging_concat_dict_keys.png │ │ │ ├── merging_concat_dict_keys_names.png │ │ │ ├── merging_concat_group_keys2.png │ │ │ ├── merging_concat_ignore_index.png │ │ │ ├── merging_concat_keys.png │ │ │ ├── merging_concat_mixed_ndim.png │ │ │ ├── merging_concat_series_ignore_index.png │ │ │ ├── merging_concat_unnamed_series.png │ │ │ ├── merging_join.png │ │ │ ├── merging_join_inner.png │ │ │ ├── merging_join_key_columns.png │ │ │ ├── merging_join_multi_df.png │ │ │ ├── merging_join_multiindex_inner.png │ │ │ ├── merging_join_multikeys.png │ │ │ ├── merging_join_multikeys_inner.png │ │ │ ├── merging_join_outer.png │ │ │ ├── merging_merge_index_inner.png │ │ │ ├── merging_merge_index_outer.png │ │ │ ├── merging_merge_key_columns.png │ │ │ ├── merging_merge_multiindex_alternative.png │ │ │ ├── merging_merge_on_key.png │ │ │ ├── merging_merge_on_key_dup.png │ │ │ ├── merging_merge_on_key_inner.png │ │ │ ├── merging_merge_on_key_left.png │ │ │ ├── merging_merge_on_key_multiple.png │ │ │ ├── merging_merge_on_key_outer.png │ │ │ ├── merging_merge_on_key_right.png │ │ │ ├── merging_merge_overlapped.png │ │ │ ├── merging_merge_overlapped_multi_suffix.png │ │ │ ├── merging_merge_overlapped_suffix.png │ │ │ ├── merging_merge_two_multiindex.png │ │ │ ├── merging_update.png │ │ │ ├── option_unicode01.png │ │ │ ├── option_unicode02.png │ │ │ ├── option_unicode03.png │ │ │ ├── option_unicode04.png │ │ │ ├── parallel_coordinates.png │ │ │ ├── parallel_gist_rainbow.png │ │ │ ├── quartile_boxplot.png │ │ │ ├── query-perf-small.png │ │ │ ├── query-perf.png │ │ │ ├── radviz.png │ │ │ ├── reshaping_melt.png │ │ │ ├── reshaping_pivot.png │ │ │ ├── reshaping_stack.png │ │ │ ├── reshaping_unstack.png │ │ │ ├── reshaping_unstack_0.png │ │ │ ├── reshaping_unstack_1.png │ │ │ ├── rolling_apply_ex.png │ │ │ ├── rolling_corr_pairwise_ex.png │ │ │ ├── rolling_mean_ex.png │ │ │ ├── rolling_mean_frame.png │ │ │ ├── scatter_matrix_kde.png │ │ │ ├── scatter_plot.png │ │ │ ├── scatter_plot_bubble.png │ │ │ ├── scatter_plot_colored.png │ │ │ ├── scatter_plot_repeated.png │ │ │ ├── ser_plot_suppress.png │ │ │ ├── ser_plot_suppress_context.png │ │ │ ├── ser_plot_suppress_parm.png │ │ │ ├── series_before_interpolate.png │ │ │ ├── series_interpolate.png │ │ │ ├── series_pie_plot.png │ │ │ ├── series_pie_plot_options.png │ │ │ ├── series_pie_plot_semi.png │ │ │ ├── series_plot_basic.png │ │ │ ├── series_plot_basic2.png │ │ │ ├── series_plot_logy.png │ │ │ ├── series_plot_multi.png │ │ │ ├── series_plot_secondary_y.png │ │ │ ├── style-excel.png │ │ │ └── twosigma-logo.png │ └── styles │ │ ├── index.styl │ │ └── palette.scss ├── API │ └── README.md ├── README.md ├── awesome │ └── README.md ├── contents │ └── README.md ├── deep │ ├── README.md │ └── beginner │ │ ├── from_linear_regression_to_linear_classification.md │ │ ├── learning_from_linear_regression.md │ │ └── megengine_basic_concepts.md ├── en │ ├── API │ │ └── README.md │ ├── README.md │ ├── awesome │ │ └── README.md │ ├── contents │ │ └── README.md │ ├── faq │ │ └── README.md │ ├── gallery │ │ └── README.md │ ├── intro │ │ └── README.md │ ├── resources │ │ └── README.md │ ├── tutorials │ │ ├── README.md │ │ └── introductory │ │ │ └── sample_plots.md │ └── users │ │ ├── README.md │ │ ├── credits.md │ │ ├── installing.md │ │ └── license.md ├── faq │ └── README.md ├── gallery │ ├── README.md │ ├── animation │ │ ├── animate_decay.md │ │ ├── animated_histogram.md │ │ ├── animation_demo.md │ │ ├── bayes_update.md │ │ ├── double_pendulum_sgskip.md │ │ ├── dynamic_image.md │ │ ├── frame_grabbing_sgskip.md │ │ ├── rain.md │ │ ├── random_walk.md │ │ ├── simple_anim.md │ │ ├── strip_chart.md │ │ └── unchained.md │ ├── axes_grid1 │ │ ├── demo_anchored_direction_arrows.md │ │ ├── demo_axes_divider.md │ │ ├── demo_axes_grid.md │ │ ├── demo_axes_grid2.md │ │ ├── demo_axes_hbox_divider.md │ │ ├── demo_axes_rgb.md │ │ ├── demo_colorbar_of_inset_axes.md │ │ ├── demo_colorbar_with_axes_divider.md │ │ ├── demo_colorbar_with_inset_locator.md │ │ ├── demo_edge_colorbar.md │ │ ├── demo_fixed_size_axes.md │ │ ├── demo_imagegrid_aspect.md │ │ ├── inset_locator_demo.md │ │ ├── inset_locator_demo2.md │ │ ├── make_room_for_ylabel_using_axesgrid.md │ │ ├── parasite_simple.md │ │ ├── parasite_simple2.md │ │ ├── scatter_hist_locatable_axes.md │ │ ├── simple_anchored_artists.md │ │ ├── simple_axes_divider1.md │ │ ├── simple_axes_divider2.md │ │ ├── simple_axes_divider3.md │ │ ├── simple_axesgrid.md │ │ ├── simple_axesgrid2.md │ │ ├── simple_axisline4.md │ │ ├── simple_colorbar.md │ │ └── simple_rgb.md │ ├── axisartist │ │ ├── axis_direction_demo_step01.md │ │ ├── axis_direction_demo_step02.md │ │ ├── axis_direction_demo_step03.md │ │ ├── axis_direction_demo_step04.md │ │ ├── demo_axis_direction.md │ │ ├── demo_axisline_style.md │ │ ├── demo_curvelinear_grid.md │ │ ├── demo_curvelinear_grid2.md │ │ ├── demo_floating_axes.md │ │ ├── demo_floating_axis.md │ │ ├── demo_parasite_axes.md │ │ ├── demo_parasite_axes2.md │ │ ├── demo_ticklabel_alignment.md │ │ ├── demo_ticklabel_direction.md │ │ ├── simple_axis_direction01.md │ │ ├── simple_axis_direction03.md │ │ ├── simple_axis_pad.md │ │ ├── simple_axisartist1.md │ │ ├── simple_axisline.md │ │ ├── simple_axisline2.md │ │ └── simple_axisline3.md │ ├── color │ │ ├── color_by_yvalue.md │ │ ├── color_cycle_default.md │ │ ├── color_cycler.md │ │ ├── color_demo.md │ │ ├── colorbar_basics.md │ │ ├── colormap_reference.md │ │ ├── custom_cmap.md │ │ ├── index.md │ │ └── named_colors.md │ ├── download.md │ ├── event_handling │ │ ├── close_event.md │ │ ├── coords_demo.md │ │ ├── data_browser.md │ │ ├── figure_axes_enter_leave.md │ │ ├── ginput_demo_sgskip.md │ │ ├── ginput_manual_clabel_sgskip.md │ │ ├── image_slices_viewer.md │ │ ├── index.md │ │ ├── keypress_demo.md │ │ ├── lasso_demo.md │ │ ├── legend_picking.md │ │ ├── looking_glass.md │ │ ├── path_editor.md │ │ ├── pick_event_demo.md │ │ ├── pick_event_demo2.md │ │ ├── pipong.md │ │ ├── poly_editor.md │ │ ├── pong_sgskip.md │ │ ├── resample.md │ │ ├── timers.md │ │ ├── trifinder_event_demo.md │ │ ├── viewlims.md │ │ └── zoom_window.md │ ├── frontpage │ │ ├── 3D.md │ │ ├── contour.md │ │ ├── histogram.md │ │ └── membrane.md │ ├── images_contours_and_fields │ │ ├── affine_image.md │ │ ├── barb_demo.md │ │ ├── barcode_demo.md │ │ ├── contour_corner_mask.md │ │ ├── contour_demo.md │ │ ├── contour_image.md │ │ ├── contour_label_demo.md │ │ ├── contourf_demo.md │ │ ├── contourf_hatching.md │ │ ├── contourf_log.md │ │ ├── custom_cmap.md │ │ ├── demo_bboximage.md │ │ ├── figimage_demo.md │ │ ├── image_annotated_heatmap.md │ │ ├── image_clip_path.md │ │ ├── image_demo.md │ │ ├── image_masked.md │ │ ├── image_nonuniform.md │ │ ├── image_transparency_blend.md │ │ ├── image_zcoord.md │ │ ├── interpolation_methods.md │ │ ├── irregulardatagrid.md │ │ ├── layer_images.md │ │ ├── matshow.md │ │ ├── multi_image.md │ │ ├── pcolor_demo.md │ │ ├── pcolormesh_levels.md │ │ ├── plot_streamplot.md │ │ ├── quadmesh_demo.md │ │ ├── quiver_demo.md │ │ ├── quiver_simple_demo.md │ │ ├── shading_example.md │ │ ├── specgram_demo.md │ │ ├── spy_demos.md │ │ ├── tricontour_demo.md │ │ ├── tricontour_smooth_delaunay.md │ │ ├── tricontour_smooth_user.md │ │ ├── trigradient_demo.md │ │ ├── triinterp_demo.md │ │ ├── tripcolor_demo.md │ │ ├── triplot_demo.md │ │ └── watermark_image.md │ ├── lines_bars_and_markers │ │ ├── arctest.md │ │ ├── bar_stacked.md │ │ ├── barchart.md │ │ ├── broken_barh.md │ │ ├── categorical_variables.md │ │ ├── cohere.md │ │ ├── csd_demo.md │ │ ├── errorbar_limits_simple.md │ │ ├── errorbar_subsample.md │ │ ├── eventcollection_demo.md │ │ ├── eventplot_demo.md │ │ ├── fill.md │ │ ├── fill_between_demo.md │ │ ├── fill_betweenx_demo.md │ │ ├── filled_step.md │ │ ├── gradient_bar.md │ │ ├── horizontal_bar_chart.md │ │ ├── interp_demo.md │ │ ├── joinstyle.md │ │ ├── line_demo_dash_control.md │ │ ├── line_styles_reference.md │ │ ├── linestyles.md │ │ ├── marker_fillstyle_reference.md │ │ ├── marker_reference.md │ │ ├── markevery_demo.md │ │ ├── markevery_prop_cycle.md │ │ ├── masked_demo.md │ │ ├── multicolored_line.md │ │ ├── nan_test.md │ │ ├── psd_demo.md │ │ ├── scatter_custom_symbol.md │ │ ├── scatter_demo2.md │ │ ├── scatter_hist.md │ │ ├── scatter_masked.md │ │ ├── scatter_piecharts.md │ │ ├── scatter_star_poly.md │ │ ├── scatter_symbol.md │ │ ├── scatter_with_legend.md │ │ ├── simple_plot.md │ │ ├── span_regions.md │ │ ├── spectrum_demo.md │ │ ├── stackplot_demo.md │ │ ├── stem_plot.md │ │ ├── step_demo.md │ │ ├── timeline.md │ │ ├── vline_hline_demo.md │ │ └── xcorr_acorr_demo.md │ ├── misc │ │ ├── agg_buffer.md │ │ ├── agg_buffer_to_array.md │ │ ├── anchored_artists.md │ │ ├── bbox_intersect.md │ │ ├── contour_manual.md │ │ ├── coords_report.md │ │ ├── cursor_demo_sgskip.md │ │ ├── custom_projection.md │ │ ├── customize_rc.md │ │ ├── demo_agg_filter.md │ │ ├── demo_ribbon_box.md │ │ ├── fill_spiral.md │ │ ├── findobj_demo.md │ │ ├── font_indexing.md │ │ ├── ftface_props.md │ │ ├── histogram_path.md │ │ ├── hyperlinks_sgskip.md │ │ ├── image_thumbnail_sgskip.md │ │ ├── keyword_plotting.md │ │ ├── load_converter.md │ │ ├── logos2.md │ │ ├── multipage_pdf.md │ │ ├── multiprocess_sgskip.md │ │ ├── patheffect_demo.md │ │ ├── plotfile_demo.md │ │ ├── print_stdout_sgskip.md │ │ ├── pythonic_matplotlib.md │ │ ├── rasterization_demo.md │ │ ├── set_and_get.md │ │ ├── svg_filter_line.md │ │ ├── svg_filter_pie.md │ │ ├── table_demo.md │ │ ├── tight_bbox_test.md │ │ ├── transoffset.md │ │ └── zorder_demo.md │ ├── mplot3d │ │ ├── 2dcollections3d.md │ │ ├── 3d_bars.md │ │ ├── bars3d.md │ │ ├── contour3d.md │ │ ├── contour3d_2.md │ │ ├── contour3d_3.md │ │ ├── contourf3d.md │ │ ├── contourf3d_2.md │ │ ├── custom_shaded_3d_surface.md │ │ ├── hist3d.md │ │ ├── lines3d.md │ │ ├── lorenz_attractor.md │ │ ├── mixed_subplots.md │ │ ├── offset.md │ │ ├── pathpatch3d.md │ │ ├── polys3d.md │ │ ├── quiver3d.md │ │ ├── rotate_axes3d_sgskip.md │ │ ├── scatter3d.md │ │ ├── subplot3d.md │ │ ├── surface3d.md │ │ ├── surface3d_2.md │ │ ├── surface3d_3.md │ │ ├── surface3d_radial.md │ │ ├── text3d.md │ │ ├── tricontour3d.md │ │ ├── tricontourf3d.md │ │ ├── trisurf3d.md │ │ ├── trisurf3d_2.md │ │ ├── voxels.md │ │ ├── voxels_numpy_logo.md │ │ ├── voxels_rgb.md │ │ ├── voxels_torus.md │ │ ├── wire3d.md │ │ ├── wire3d_animation_sgskip.md │ │ └── wire3d_zero_stride.md │ ├── pie_and_polar_charts │ │ ├── nested_pie.md │ │ ├── pie_and_donut_labels.md │ │ ├── pie_demo2.md │ │ ├── pie_features.md │ │ ├── polar_bar.md │ │ ├── polar_demo.md │ │ ├── polar_legend.md │ │ └── polar_scatter.md │ ├── pyplots │ │ ├── align_ylabels.md │ │ ├── annotate_transform.md │ │ ├── annotation_basic.md │ │ ├── annotation_polar.md │ │ ├── auto_subplots_adjust.md │ │ ├── boxplot_demo_pyplot.md │ │ ├── dollar_ticks.md │ │ ├── fig_axes_customize_simple.md │ │ ├── fig_axes_labels_simple.md │ │ ├── fig_x.md │ │ ├── pyplot_formatstr.md │ │ ├── pyplot_mathtext.md │ │ ├── pyplot_scales.md │ │ ├── pyplot_simple.md │ │ ├── pyplot_text.md │ │ ├── pyplot_three.md │ │ ├── pyplot_two_subplots.md │ │ ├── text_commands.md │ │ ├── text_layout.md │ │ ├── whats_new_1_subplot3d.md │ │ ├── whats_new_98_4_fancy.md │ │ ├── whats_new_98_4_fill_between.md │ │ ├── whats_new_98_4_legend.md │ │ ├── whats_new_99_axes_grid.md │ │ ├── whats_new_99_mplot3d.md │ │ └── whats_new_99_spines.md │ ├── recipes │ │ ├── common_date_problems.md │ │ ├── create_subplots.md │ │ ├── fill_between_alpha.md │ │ ├── index.md │ │ ├── placing_text_boxes.md │ │ ├── share_axis_lims_views.md │ │ └── transparent_legends.md │ ├── scales │ │ ├── aspect_loglog.md │ │ ├── custom_scale.md │ │ ├── index.md │ │ ├── log_bar.md │ │ ├── log_demo.md │ │ ├── log_test.md │ │ ├── power_norm.md │ │ ├── scales.md │ │ └── symlog_demo.md │ ├── shapes_and_collections │ │ ├── arrow_guide.md │ │ ├── artist_reference.md │ │ ├── collections.md │ │ ├── compound_path.md │ │ ├── dolphin.md │ │ ├── donut.md │ │ ├── ellipse_collection.md │ │ ├── ellipse_demo.md │ │ ├── fancybox_demo.md │ │ ├── hatch_demo.md │ │ ├── line_collection.md │ │ ├── marker_path.md │ │ ├── patch_collection.md │ │ ├── path_patch.md │ │ ├── quad_bezier.md │ │ └── scatter.md │ ├── showcase │ │ ├── anatomy.md │ │ ├── bachelors_degrees_by_gender.md │ │ ├── firefox.md │ │ ├── integral.md │ │ ├── mandelbrot.md │ │ └── xkcd.md │ ├── specialty_plots │ │ ├── advanced_hillshading.md │ │ ├── anscombe.md │ │ ├── hinton_demo.md │ │ ├── leftventricle_bulleye.md │ │ ├── mri_demo.md │ │ ├── mri_with_eeg.md │ │ ├── radar_chart.md │ │ ├── sankey_basics.md │ │ ├── sankey_links.md │ │ ├── sankey_rankine.md │ │ ├── skewt.md │ │ ├── system_monitor.md │ │ └── topographic_hillshading.md │ ├── statistics │ │ ├── barchart_demo.md │ │ ├── boxplot.md │ │ ├── boxplot_color.md │ │ ├── boxplot_demo.md │ │ ├── boxplot_vs_violin.md │ │ ├── bxp.md │ │ ├── customized_violin.md │ │ ├── errorbar.md │ │ ├── errorbar_features.md │ │ ├── errorbar_limits.md │ │ ├── errorbars_and_boxes.md │ │ ├── hexbin_demo.md │ │ ├── hist.md │ │ ├── histogram_cumulative.md │ │ ├── histogram_features.md │ │ ├── histogram_histtypes.md │ │ ├── histogram_multihist.md │ │ ├── multiple_histograms_side_by_side.md │ │ └── violinplot.md │ ├── style_sheets │ │ ├── bmh.md │ │ ├── dark_background.md │ │ ├── fivethirtyeight.md │ │ ├── ggplot.md │ │ ├── grayscale.md │ │ ├── plot_solarizedlight2.md │ │ └── style_sheets_reference.md │ ├── subplots_axes_and_figures │ │ ├── align_labels_demo.md │ │ ├── axes_demo.md │ │ ├── axes_margins.md │ │ ├── axes_props.md │ │ ├── axes_zoom_effect.md │ │ ├── axhspan_demo.md │ │ ├── axis_equal_demo.md │ │ ├── broken_axis.md │ │ ├── colorbar_placement.md │ │ ├── custom_figure_class.md │ │ ├── demo_constrained_layout.md │ │ ├── demo_tight_layout.md │ │ ├── fahrenheit_celsius_scales.md │ │ ├── figure_title.md │ │ ├── ganged_plots.md │ │ ├── geo_demo.md │ │ ├── gridspec_and_subplots.md │ │ ├── gridspec_multicolumn.md │ │ ├── gridspec_nested.md │ │ ├── invert_axes.md │ │ ├── multiple_figs_demo.md │ │ ├── shared_axis_demo.md │ │ ├── subplot.md │ │ ├── subplot_demo.md │ │ ├── subplot_toolbar.md │ │ ├── subplots_adjust.md │ │ ├── subplots_demo.md │ │ ├── two_scales.md │ │ └── zoom_inset_axes.md │ ├── text_labels_and_annotations │ │ ├── accented_text.md │ │ ├── annotation_demo.md │ │ ├── arrow_demo.md │ │ ├── arrow_simple_demo.md │ │ ├── autowrap.md │ │ ├── custom_legends.md │ │ ├── dashpointlabel.md │ │ ├── date.md │ │ ├── date_index_formatter.md │ │ ├── demo_annotation_box.md │ │ ├── demo_text_path.md │ │ ├── demo_text_rotation_mode.md │ │ ├── dfrac_demo.md │ │ ├── engineering_formatter.md │ │ ├── fancyarrow_demo.md │ │ ├── fancytextbox_demo.md │ │ ├── figlegend_demo.md │ │ ├── font_family_rc_sgskip.md │ │ ├── font_file.md │ │ ├── font_table_ttf_sgskip.md │ │ ├── fonts_demo.md │ │ ├── fonts_demo_kw.md │ │ ├── legend.md │ │ ├── legend_demo.md │ │ ├── line_with_text.md │ │ ├── mathtext_asarray.md │ │ ├── mathtext_demo.md │ │ ├── mathtext_examples.md │ │ ├── multiline.md │ │ ├── rainbow_text.md │ │ ├── stix_fonts_demo.md │ │ ├── tex_demo.md │ │ ├── text_alignment.md │ │ ├── text_fontdict.md │ │ ├── text_rotation.md │ │ ├── text_rotation_relative_to_line.md │ │ ├── titles_demo.md │ │ ├── unicode_minus.md │ │ ├── usetex_baseline_test.md │ │ ├── usetex_demo.md │ │ ├── usetex_fonteffects.md │ │ └── watermark_text.md │ ├── ticks_and_spines │ │ ├── auto_ticks.md │ │ ├── centered_ticklabels.md │ │ ├── colorbar_tick_labelling_demo.md │ │ ├── custom_ticker1.md │ │ ├── date_demo_convert.md │ │ ├── date_demo_rrule.md │ │ ├── date_index_formatter2.md │ │ ├── major_minor_demo.md │ │ ├── multiple_yaxis_with_spines.md │ │ ├── scalarformatter.md │ │ ├── spine_placement_demo.md │ │ ├── spines.md │ │ ├── spines_bounds.md │ │ ├── spines_dropped.md │ │ ├── tick_formatters.md │ │ ├── tick_label_right.md │ │ ├── tick_labels_from_values.md │ │ ├── tick_locators.md │ │ ├── tick_xlabel_top.md │ │ └── ticklabels_rotation.md │ ├── units │ │ ├── annotate_with_units.md │ │ ├── artist_tests.md │ │ ├── bar_demo2.md │ │ ├── bar_unit_demo.md │ │ ├── basic_units.md │ │ ├── ellipse_with_units.md │ │ ├── evans_test.md │ │ ├── index.md │ │ ├── radian_demo.md │ │ ├── units_sample.md │ │ └── units_scatter.md │ ├── user_interfaces │ │ ├── canvasagg.md │ │ ├── embedding_in_gtk3_panzoom_sgskip.md │ │ ├── embedding_in_gtk3_sgskip.md │ │ ├── embedding_in_qt_sgskip.md │ │ ├── embedding_in_tk_sgskip.md │ │ ├── embedding_in_wx2_sgskip.md │ │ ├── embedding_in_wx3_sgskip.md │ │ ├── embedding_in_wx4_sgskip.md │ │ ├── embedding_in_wx5_sgskip.md │ │ ├── embedding_webagg_sgskip.md │ │ ├── fourier_demo_wx_sgskip.md │ │ ├── gtk_spreadsheet_sgskip.md │ │ ├── index.md │ │ ├── mathtext_wx_sgskip.md │ │ ├── mpl_with_glade3_sgskip.md │ │ ├── pylab_with_gtk_sgskip.md │ │ ├── svg_histogram_sgskip.md │ │ ├── svg_tooltip_sgskip.md │ │ ├── toolmanager_sgskip.md │ │ └── wxcursor_demo_sgskip.md │ ├── userdemo │ │ ├── anchored_box01.md │ │ ├── anchored_box02.md │ │ ├── anchored_box03.md │ │ ├── anchored_box04.md │ │ ├── annotate_explain.md │ │ ├── annotate_simple01.md │ │ ├── annotate_simple02.md │ │ ├── annotate_simple03.md │ │ ├── annotate_simple04.md │ │ ├── annotate_simple_coord01.md │ │ ├── annotate_simple_coord02.md │ │ ├── annotate_simple_coord03.md │ │ ├── annotate_text_arrow.md │ │ ├── colormap_normalizations.md │ │ ├── colormap_normalizations_bounds.md │ │ ├── colormap_normalizations_custom.md │ │ ├── colormap_normalizations_lognorm.md │ │ ├── colormap_normalizations_power.md │ │ ├── colormap_normalizations_symlognorm.md │ │ ├── connect_simple01.md │ │ ├── connectionstyle_demo.md │ │ ├── custom_boxstyle01.md │ │ ├── custom_boxstyle02.md │ │ ├── demo_gridspec01.md │ │ ├── demo_gridspec03.md │ │ ├── demo_gridspec05.md │ │ ├── demo_gridspec06.md │ │ ├── pgf_fonts.md │ │ ├── pgf_preamble_sgskip.md │ │ ├── pgf_texsystem.md │ │ ├── simple_annotate01.md │ │ ├── simple_legend01.md │ │ └── simple_legend02.md │ └── widgets │ │ ├── buttons.md │ │ ├── check_buttons.md │ │ ├── cursor.md │ │ ├── index.md │ │ ├── lasso_selector_demo_sgskip.md │ │ ├── menu.md │ │ ├── multicursor.md │ │ ├── polygon_selector_demo.md │ │ ├── radio_buttons.md │ │ ├── rectangle_selector.md │ │ ├── slider_demo.md │ │ ├── span_selector.md │ │ └── textbox.md ├── intro │ └── README.md ├── resources │ └── README.md ├── tutorials │ ├── README.md │ ├── advanced │ │ ├── path_tutorial.md │ │ ├── patheffects_guide.md │ │ └── transforms_tutorial.md │ ├── colors │ │ ├── colorbar_only.md │ │ ├── colormap-manipulation.md │ │ ├── colormapnorms.md │ │ ├── colormaps.md │ │ └── colors.md │ ├── intermediate │ │ ├── artists.md │ │ ├── color_cycle.md │ │ ├── constrainedlayout_guide.md │ │ ├── gridspec.md │ │ ├── imshow_extent.md │ │ ├── legend_guide.md │ │ └── tight_layout_guide.md │ ├── introductory │ │ ├── customizing.md │ │ ├── images.md │ │ ├── lifecycle.md │ │ ├── pyplot.md │ │ ├── sample_plots.md │ │ └── usage.md │ ├── text │ │ ├── annotations.md │ │ ├── mathtext.md │ │ ├── pgf.md │ │ ├── text_intro.md │ │ ├── text_props.md │ │ └── usetex.md │ └── toolkits │ │ ├── axes_grid.md │ │ ├── axisartist.md │ │ └── mplot3d.md └── users │ ├── README.md │ ├── credits.md │ ├── installing.md │ └── license.md ├── package.json ├── patch ├── file │ ├── Comment.vue │ ├── Valine.Pure.min.js │ └── Valine.min.js └── index.js ├── pnpm-lock.yaml └── scripts ├── gallery ├── libs │ └── request.js ├── main.js ├── module │ ├── const.js │ ├── htmlToMd.js │ ├── htmlToMd.text.js │ ├── outputMd.js │ ├── outputMd.text.js │ ├── parsingHtml.js │ ├── sleep.js │ ├── translation.js │ ├── translation.test.js │ └── uploadImage.js └── package.json └── htmlToMd.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/.gitignore -------------------------------------------------------------------------------- /Contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/Contribution.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/README.md -------------------------------------------------------------------------------- /_logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/_logo/logo.svg -------------------------------------------------------------------------------- /docs/.vuepress/components/UpgradePath.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/components/UpgradePath.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/ahome-article.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/components/ahome-article.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/ahome-footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/components/ahome-footer.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/ahome-nav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/components/ahome-nav.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/awesome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/components/awesome.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/diagram-markdown-slot-relationship.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/components/diagram-markdown-slot-relationship.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/gallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/components/gallery.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/svg-container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/components/svg-container.vue -------------------------------------------------------------------------------- /docs/.vuepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/config.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/head.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/configs/head.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/configs/index.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/navbar/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/configs/navbar/en.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/navbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/configs/navbar/index.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/navbar/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/configs/navbar/zh.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/configs/plugins.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/sidebar/deep_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/configs/sidebar/deep_zh.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/sidebar/docs_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/configs/sidebar/docs_en.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/sidebar/docs_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/configs/sidebar/docs_zh.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/sidebar/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/configs/sidebar/en.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/sidebar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/configs/sidebar/index.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/sidebar/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/configs/sidebar/zh.ts -------------------------------------------------------------------------------- /docs/.vuepress/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/images/logo.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/icons/favicon-16x16.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/icons/favicon-32x32.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/icons/mstile-150x150.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/logo.png -------------------------------------------------------------------------------- /docs/.vuepress/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/logo.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/logo_awesome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/logo_awesome.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/manifest.json -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/Anaconda_horizontal_RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/Anaconda_horizontal_RGB.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/andrews_curve_winter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/andrews_curve_winter.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/andrews_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/andrews_curves.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/appnexus_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/appnexus_logo.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/area_plot_stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/area_plot_stacked.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/area_plot_unstacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/area_plot_unstacked.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/autocorrelation_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/autocorrelation_plot.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/bar_plot_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/bar_plot_ex.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/bar_plot_multi_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/bar_plot_multi_ex.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/bar_plot_stacked_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/bar_plot_stacked_ex.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/barh_plot_stacked_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/barh_plot_stacked_ex.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/basics_assign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/basics_assign.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/bollinger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/bollinger.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/bootstrap_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/bootstrap_plot.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/box_new_colorize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/box_new_colorize.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/box_new_kwargs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/box_new_kwargs.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/box_plot_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/box_plot_ex.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/box_plot_ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/box_plot_ex2.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/box_plot_ex3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/box_plot_ex3.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/box_plot_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/box_plot_new.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/boxplot_groupby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/boxplot_groupby.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/ci.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/compare_interpolations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/compare_interpolations.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/cubehelix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/cubehelix.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/cubehelix_cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/cubehelix_cm.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/datadog_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/datadog_logo.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/df_pie_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/df_pie_plot.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/df_plot_xy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/df_plot_xy.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/errorbar_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/errorbar_example.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/eval-perf-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/eval-perf-small.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/eval-perf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/eval-perf.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/ewma_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/ewma_ex.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/expanding_mean_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/expanding_mean_frame.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/formula1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/formula1.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/formula10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/formula10.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/formula2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/formula2.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/formula3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/formula3.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/formula4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/formula4.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/formula5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/formula5.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/formula6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/formula6.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/formula7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/formula7.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/formula8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/formula8.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/formula9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/formula9.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/frame_hist_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/frame_hist_ex.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/frame_plot_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/frame_plot_basic.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/frame_plot_basic_noleg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/frame_plot_basic_noleg.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/frame_plot_secondary_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/frame_plot_secondary_y.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/frame_plot_subplots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/frame_plot_subplots.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/greens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/greens.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/groupby_boxplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/groupby_boxplot.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/groupby_boxplot_vis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/groupby_boxplot_vis.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/groupby_transform_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/groupby_transform_plot.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/grouped_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/grouped_hist.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/hexbin_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/hexbin_plot.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/hexbin_plot_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/hexbin_plot_agg.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/hist_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/hist_new.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/hist_new_kwargs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/hist_new_kwargs.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/hist_new_stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/hist_new_stacked.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/hist_plot_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/hist_plot_ex.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/kde_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/kde_plot.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/lag_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/lag_plot.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/line_plot_table_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/line_plot_table_data.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/line_plot_table_describe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/line_plot_table_describe.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/line_plot_table_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/line_plot_table_true.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/logoUPSayPlusCDS_990.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/logoUPSayPlusCDS_990.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merge_on_index_and_column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merge_on_index_and_column.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_append1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_append1.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_append2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_append2.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_append3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_append3.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_append_dits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_append_dits.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_combine_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_combine_first.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_concat_axis1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_concat_axis1.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_concat_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_concat_basic.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_concat_dict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_concat_dict.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_concat_dict_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_concat_dict_keys.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_concat_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_concat_keys.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_concat_mixed_ndim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_concat_mixed_ndim.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_join.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_join_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_join_inner.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_join_key_columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_join_key_columns.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_join_multi_df.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_join_multi_df.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_join_multikeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_join_multikeys.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_join_outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_join_outer.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_merge_index_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_merge_index_inner.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_merge_index_outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_merge_index_outer.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_merge_key_columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_merge_key_columns.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_merge_on_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_merge_on_key.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_merge_on_key_dup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_merge_on_key_dup.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_merge_on_key_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_merge_on_key_left.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_merge_overlapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_merge_overlapped.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/merging_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/merging_update.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/option_unicode01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/option_unicode01.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/option_unicode02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/option_unicode02.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/option_unicode03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/option_unicode03.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/option_unicode04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/option_unicode04.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/parallel_coordinates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/parallel_coordinates.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/parallel_gist_rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/parallel_gist_rainbow.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/quartile_boxplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/quartile_boxplot.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/query-perf-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/query-perf-small.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/query-perf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/query-perf.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/radviz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/radviz.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/reshaping_melt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/reshaping_melt.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/reshaping_pivot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/reshaping_pivot.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/reshaping_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/reshaping_stack.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/reshaping_unstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/reshaping_unstack.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/reshaping_unstack_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/reshaping_unstack_0.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/reshaping_unstack_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/reshaping_unstack_1.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/rolling_apply_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/rolling_apply_ex.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/rolling_corr_pairwise_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/rolling_corr_pairwise_ex.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/rolling_mean_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/rolling_mean_ex.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/rolling_mean_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/rolling_mean_frame.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/scatter_matrix_kde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/scatter_matrix_kde.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/scatter_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/scatter_plot.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/scatter_plot_bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/scatter_plot_bubble.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/scatter_plot_colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/scatter_plot_colored.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/scatter_plot_repeated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/scatter_plot_repeated.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/ser_plot_suppress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/ser_plot_suppress.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/ser_plot_suppress_context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/ser_plot_suppress_context.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/ser_plot_suppress_parm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/ser_plot_suppress_parm.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/series_before_interpolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/series_before_interpolate.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/series_interpolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/series_interpolate.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/series_pie_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/series_pie_plot.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/series_pie_plot_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/series_pie_plot_options.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/series_pie_plot_semi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/series_pie_plot_semi.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/series_plot_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/series_plot_basic.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/series_plot_basic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/series_plot_basic2.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/series_plot_logy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/series_plot_logy.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/series_plot_multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/series_plot_multi.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/series_plot_secondary_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/series_plot_secondary_y.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/style-excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/style-excel.png -------------------------------------------------------------------------------- /docs/.vuepress/public/static/images/twosigma-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/public/static/images/twosigma-logo.png -------------------------------------------------------------------------------- /docs/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/styles/index.styl -------------------------------------------------------------------------------- /docs/.vuepress/styles/palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/.vuepress/styles/palette.scss -------------------------------------------------------------------------------- /docs/API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/API/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/awesome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/awesome/README.md -------------------------------------------------------------------------------- /docs/contents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/contents/README.md -------------------------------------------------------------------------------- /docs/deep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/deep/README.md -------------------------------------------------------------------------------- /docs/deep/beginner/learning_from_linear_regression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/deep/beginner/learning_from_linear_regression.md -------------------------------------------------------------------------------- /docs/deep/beginner/megengine_basic_concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/deep/beginner/megengine_basic_concepts.md -------------------------------------------------------------------------------- /docs/en/API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/en/API/README.md -------------------------------------------------------------------------------- /docs/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/en/README.md -------------------------------------------------------------------------------- /docs/en/awesome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/en/awesome/README.md -------------------------------------------------------------------------------- /docs/en/contents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/en/contents/README.md -------------------------------------------------------------------------------- /docs/en/faq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/en/faq/README.md -------------------------------------------------------------------------------- /docs/en/gallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/en/gallery/README.md -------------------------------------------------------------------------------- /docs/en/intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/en/intro/README.md -------------------------------------------------------------------------------- /docs/en/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/en/resources/README.md -------------------------------------------------------------------------------- /docs/en/tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/en/tutorials/README.md -------------------------------------------------------------------------------- /docs/en/tutorials/introductory/sample_plots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/en/tutorials/introductory/sample_plots.md -------------------------------------------------------------------------------- /docs/en/users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/en/users/README.md -------------------------------------------------------------------------------- /docs/en/users/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/en/users/credits.md -------------------------------------------------------------------------------- /docs/en/users/installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/en/users/installing.md -------------------------------------------------------------------------------- /docs/en/users/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/en/users/license.md -------------------------------------------------------------------------------- /docs/faq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/faq/README.md -------------------------------------------------------------------------------- /docs/gallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/README.md -------------------------------------------------------------------------------- /docs/gallery/animation/animate_decay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/animation/animate_decay.md -------------------------------------------------------------------------------- /docs/gallery/animation/animated_histogram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/animation/animated_histogram.md -------------------------------------------------------------------------------- /docs/gallery/animation/animation_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/animation/animation_demo.md -------------------------------------------------------------------------------- /docs/gallery/animation/bayes_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/animation/bayes_update.md -------------------------------------------------------------------------------- /docs/gallery/animation/double_pendulum_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/animation/double_pendulum_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/animation/dynamic_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/animation/dynamic_image.md -------------------------------------------------------------------------------- /docs/gallery/animation/frame_grabbing_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/animation/frame_grabbing_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/animation/rain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/animation/rain.md -------------------------------------------------------------------------------- /docs/gallery/animation/random_walk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/animation/random_walk.md -------------------------------------------------------------------------------- /docs/gallery/animation/simple_anim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/animation/simple_anim.md -------------------------------------------------------------------------------- /docs/gallery/animation/strip_chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/animation/strip_chart.md -------------------------------------------------------------------------------- /docs/gallery/animation/unchained.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/animation/unchained.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/demo_anchored_direction_arrows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/demo_anchored_direction_arrows.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/demo_axes_divider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/demo_axes_divider.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/demo_axes_grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/demo_axes_grid.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/demo_axes_grid2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/demo_axes_grid2.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/demo_axes_hbox_divider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/demo_axes_hbox_divider.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/demo_axes_rgb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/demo_axes_rgb.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/demo_colorbar_of_inset_axes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/demo_colorbar_of_inset_axes.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/demo_colorbar_with_axes_divider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/demo_colorbar_with_axes_divider.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/demo_colorbar_with_inset_locator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/demo_colorbar_with_inset_locator.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/demo_edge_colorbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/demo_edge_colorbar.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/demo_fixed_size_axes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/demo_fixed_size_axes.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/demo_imagegrid_aspect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/demo_imagegrid_aspect.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/inset_locator_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/inset_locator_demo.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/inset_locator_demo2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/inset_locator_demo2.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/make_room_for_ylabel_using_axesgrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/make_room_for_ylabel_using_axesgrid.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/parasite_simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/parasite_simple.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/parasite_simple2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/parasite_simple2.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/scatter_hist_locatable_axes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/scatter_hist_locatable_axes.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/simple_anchored_artists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/simple_anchored_artists.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/simple_axes_divider1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/simple_axes_divider1.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/simple_axes_divider2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/simple_axes_divider2.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/simple_axes_divider3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/simple_axes_divider3.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/simple_axesgrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/simple_axesgrid.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/simple_axesgrid2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/simple_axesgrid2.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/simple_axisline4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/simple_axisline4.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/simple_colorbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/simple_colorbar.md -------------------------------------------------------------------------------- /docs/gallery/axes_grid1/simple_rgb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axes_grid1/simple_rgb.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/axis_direction_demo_step01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/axis_direction_demo_step01.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/axis_direction_demo_step02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/axis_direction_demo_step02.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/axis_direction_demo_step03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/axis_direction_demo_step03.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/axis_direction_demo_step04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/axis_direction_demo_step04.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/demo_axis_direction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/demo_axis_direction.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/demo_axisline_style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/demo_axisline_style.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/demo_curvelinear_grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/demo_curvelinear_grid.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/demo_curvelinear_grid2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/demo_curvelinear_grid2.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/demo_floating_axes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/demo_floating_axes.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/demo_floating_axis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/demo_floating_axis.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/demo_parasite_axes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/demo_parasite_axes.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/demo_parasite_axes2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/demo_parasite_axes2.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/demo_ticklabel_alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/demo_ticklabel_alignment.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/demo_ticklabel_direction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/demo_ticklabel_direction.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/simple_axis_direction01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/simple_axis_direction01.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/simple_axis_direction03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/simple_axis_direction03.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/simple_axis_pad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/simple_axis_pad.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/simple_axisartist1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/simple_axisartist1.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/simple_axisline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/simple_axisline.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/simple_axisline2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/simple_axisline2.md -------------------------------------------------------------------------------- /docs/gallery/axisartist/simple_axisline3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/axisartist/simple_axisline3.md -------------------------------------------------------------------------------- /docs/gallery/color/color_by_yvalue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/color/color_by_yvalue.md -------------------------------------------------------------------------------- /docs/gallery/color/color_cycle_default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/color/color_cycle_default.md -------------------------------------------------------------------------------- /docs/gallery/color/color_cycler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/color/color_cycler.md -------------------------------------------------------------------------------- /docs/gallery/color/color_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/color/color_demo.md -------------------------------------------------------------------------------- /docs/gallery/color/colorbar_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/color/colorbar_basics.md -------------------------------------------------------------------------------- /docs/gallery/color/colormap_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/color/colormap_reference.md -------------------------------------------------------------------------------- /docs/gallery/color/custom_cmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/color/custom_cmap.md -------------------------------------------------------------------------------- /docs/gallery/color/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/color/index.md -------------------------------------------------------------------------------- /docs/gallery/color/named_colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/color/named_colors.md -------------------------------------------------------------------------------- /docs/gallery/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/download.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/close_event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/close_event.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/coords_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/coords_demo.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/data_browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/data_browser.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/figure_axes_enter_leave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/figure_axes_enter_leave.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/ginput_demo_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/ginput_demo_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/ginput_manual_clabel_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/ginput_manual_clabel_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/image_slices_viewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/image_slices_viewer.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/index.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/keypress_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/keypress_demo.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/lasso_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/lasso_demo.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/legend_picking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/legend_picking.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/looking_glass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/looking_glass.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/path_editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/path_editor.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/pick_event_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/pick_event_demo.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/pick_event_demo2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/pick_event_demo2.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/pipong.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/pipong.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/poly_editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/poly_editor.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/pong_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/pong_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/resample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/resample.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/timers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/timers.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/trifinder_event_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/trifinder_event_demo.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/viewlims.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/viewlims.md -------------------------------------------------------------------------------- /docs/gallery/event_handling/zoom_window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/event_handling/zoom_window.md -------------------------------------------------------------------------------- /docs/gallery/frontpage/3D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/frontpage/3D.md -------------------------------------------------------------------------------- /docs/gallery/frontpage/contour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/frontpage/contour.md -------------------------------------------------------------------------------- /docs/gallery/frontpage/histogram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/frontpage/histogram.md -------------------------------------------------------------------------------- /docs/gallery/frontpage/membrane.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/frontpage/membrane.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/affine_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/affine_image.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/barb_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/barb_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/barcode_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/barcode_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/contour_corner_mask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/contour_corner_mask.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/contour_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/contour_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/contour_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/contour_image.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/contour_label_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/contour_label_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/contourf_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/contourf_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/contourf_hatching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/contourf_hatching.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/contourf_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/contourf_log.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/custom_cmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/custom_cmap.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/demo_bboximage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/demo_bboximage.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/figimage_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/figimage_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/image_clip_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/image_clip_path.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/image_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/image_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/image_masked.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/image_masked.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/image_nonuniform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/image_nonuniform.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/image_zcoord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/image_zcoord.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/irregulardatagrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/irregulardatagrid.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/layer_images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/layer_images.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/matshow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/matshow.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/multi_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/multi_image.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/pcolor_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/pcolor_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/pcolormesh_levels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/pcolormesh_levels.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/plot_streamplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/plot_streamplot.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/quadmesh_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/quadmesh_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/quiver_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/quiver_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/quiver_simple_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/quiver_simple_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/shading_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/shading_example.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/specgram_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/specgram_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/spy_demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/spy_demos.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/tricontour_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/tricontour_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/trigradient_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/trigradient_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/triinterp_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/triinterp_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/tripcolor_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/tripcolor_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/triplot_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/triplot_demo.md -------------------------------------------------------------------------------- /docs/gallery/images_contours_and_fields/watermark_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/images_contours_and_fields/watermark_image.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/arctest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/arctest.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/bar_stacked.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/bar_stacked.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/barchart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/barchart.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/broken_barh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/broken_barh.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/categorical_variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/categorical_variables.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/cohere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/cohere.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/csd_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/csd_demo.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/errorbar_limits_simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/errorbar_limits_simple.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/errorbar_subsample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/errorbar_subsample.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/eventcollection_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/eventcollection_demo.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/eventplot_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/eventplot_demo.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/fill.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/fill_between_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/fill_between_demo.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/fill_betweenx_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/fill_betweenx_demo.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/filled_step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/filled_step.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/gradient_bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/gradient_bar.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/horizontal_bar_chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/horizontal_bar_chart.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/interp_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/interp_demo.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/joinstyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/joinstyle.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/line_demo_dash_control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/line_demo_dash_control.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/line_styles_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/line_styles_reference.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/linestyles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/linestyles.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/marker_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/marker_reference.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/markevery_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/markevery_demo.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/markevery_prop_cycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/markevery_prop_cycle.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/masked_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/masked_demo.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/multicolored_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/multicolored_line.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/nan_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/nan_test.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/psd_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/psd_demo.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/scatter_custom_symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/scatter_custom_symbol.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/scatter_demo2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/scatter_demo2.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/scatter_hist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/scatter_hist.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/scatter_masked.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/scatter_masked.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/scatter_piecharts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/scatter_piecharts.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/scatter_star_poly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/scatter_star_poly.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/scatter_symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/scatter_symbol.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/scatter_with_legend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/scatter_with_legend.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/simple_plot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/simple_plot.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/span_regions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/span_regions.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/spectrum_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/spectrum_demo.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/stackplot_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/stackplot_demo.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/stem_plot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/stem_plot.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/step_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/step_demo.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/timeline.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/vline_hline_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/vline_hline_demo.md -------------------------------------------------------------------------------- /docs/gallery/lines_bars_and_markers/xcorr_acorr_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/lines_bars_and_markers/xcorr_acorr_demo.md -------------------------------------------------------------------------------- /docs/gallery/misc/agg_buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/agg_buffer.md -------------------------------------------------------------------------------- /docs/gallery/misc/agg_buffer_to_array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/agg_buffer_to_array.md -------------------------------------------------------------------------------- /docs/gallery/misc/anchored_artists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/anchored_artists.md -------------------------------------------------------------------------------- /docs/gallery/misc/bbox_intersect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/bbox_intersect.md -------------------------------------------------------------------------------- /docs/gallery/misc/contour_manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/contour_manual.md -------------------------------------------------------------------------------- /docs/gallery/misc/coords_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/coords_report.md -------------------------------------------------------------------------------- /docs/gallery/misc/cursor_demo_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/cursor_demo_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/misc/custom_projection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/custom_projection.md -------------------------------------------------------------------------------- /docs/gallery/misc/customize_rc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/customize_rc.md -------------------------------------------------------------------------------- /docs/gallery/misc/demo_agg_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/demo_agg_filter.md -------------------------------------------------------------------------------- /docs/gallery/misc/demo_ribbon_box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/demo_ribbon_box.md -------------------------------------------------------------------------------- /docs/gallery/misc/fill_spiral.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/fill_spiral.md -------------------------------------------------------------------------------- /docs/gallery/misc/findobj_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/findobj_demo.md -------------------------------------------------------------------------------- /docs/gallery/misc/font_indexing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/font_indexing.md -------------------------------------------------------------------------------- /docs/gallery/misc/ftface_props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/ftface_props.md -------------------------------------------------------------------------------- /docs/gallery/misc/histogram_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/histogram_path.md -------------------------------------------------------------------------------- /docs/gallery/misc/hyperlinks_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/hyperlinks_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/misc/image_thumbnail_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/image_thumbnail_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/misc/keyword_plotting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/keyword_plotting.md -------------------------------------------------------------------------------- /docs/gallery/misc/load_converter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/load_converter.md -------------------------------------------------------------------------------- /docs/gallery/misc/logos2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/logos2.md -------------------------------------------------------------------------------- /docs/gallery/misc/multipage_pdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/multipage_pdf.md -------------------------------------------------------------------------------- /docs/gallery/misc/multiprocess_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/multiprocess_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/misc/patheffect_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/patheffect_demo.md -------------------------------------------------------------------------------- /docs/gallery/misc/plotfile_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/plotfile_demo.md -------------------------------------------------------------------------------- /docs/gallery/misc/print_stdout_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/print_stdout_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/misc/pythonic_matplotlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/pythonic_matplotlib.md -------------------------------------------------------------------------------- /docs/gallery/misc/rasterization_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/rasterization_demo.md -------------------------------------------------------------------------------- /docs/gallery/misc/set_and_get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/set_and_get.md -------------------------------------------------------------------------------- /docs/gallery/misc/svg_filter_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/svg_filter_line.md -------------------------------------------------------------------------------- /docs/gallery/misc/svg_filter_pie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/svg_filter_pie.md -------------------------------------------------------------------------------- /docs/gallery/misc/table_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/table_demo.md -------------------------------------------------------------------------------- /docs/gallery/misc/tight_bbox_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/tight_bbox_test.md -------------------------------------------------------------------------------- /docs/gallery/misc/transoffset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/transoffset.md -------------------------------------------------------------------------------- /docs/gallery/misc/zorder_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/misc/zorder_demo.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/2dcollections3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/2dcollections3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/3d_bars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/3d_bars.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/bars3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/bars3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/contour3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/contour3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/contour3d_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/contour3d_2.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/contour3d_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/contour3d_3.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/contourf3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/contourf3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/contourf3d_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/contourf3d_2.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/custom_shaded_3d_surface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/custom_shaded_3d_surface.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/hist3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/hist3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/lines3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/lines3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/lorenz_attractor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/lorenz_attractor.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/mixed_subplots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/mixed_subplots.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/offset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/offset.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/pathpatch3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/pathpatch3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/polys3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/polys3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/quiver3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/quiver3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/rotate_axes3d_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/rotate_axes3d_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/scatter3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/scatter3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/subplot3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/subplot3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/surface3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/surface3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/surface3d_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/surface3d_2.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/surface3d_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/surface3d_3.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/surface3d_radial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/surface3d_radial.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/text3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/text3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/tricontour3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/tricontour3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/tricontourf3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/tricontourf3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/trisurf3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/trisurf3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/trisurf3d_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/trisurf3d_2.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/voxels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/voxels.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/voxels_numpy_logo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/voxels_numpy_logo.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/voxels_rgb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/voxels_rgb.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/voxels_torus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/voxels_torus.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/wire3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/wire3d.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/wire3d_animation_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/wire3d_animation_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/mplot3d/wire3d_zero_stride.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/mplot3d/wire3d_zero_stride.md -------------------------------------------------------------------------------- /docs/gallery/pie_and_polar_charts/nested_pie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pie_and_polar_charts/nested_pie.md -------------------------------------------------------------------------------- /docs/gallery/pie_and_polar_charts/pie_and_donut_labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pie_and_polar_charts/pie_and_donut_labels.md -------------------------------------------------------------------------------- /docs/gallery/pie_and_polar_charts/pie_demo2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pie_and_polar_charts/pie_demo2.md -------------------------------------------------------------------------------- /docs/gallery/pie_and_polar_charts/pie_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pie_and_polar_charts/pie_features.md -------------------------------------------------------------------------------- /docs/gallery/pie_and_polar_charts/polar_bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pie_and_polar_charts/polar_bar.md -------------------------------------------------------------------------------- /docs/gallery/pie_and_polar_charts/polar_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pie_and_polar_charts/polar_demo.md -------------------------------------------------------------------------------- /docs/gallery/pie_and_polar_charts/polar_legend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pie_and_polar_charts/polar_legend.md -------------------------------------------------------------------------------- /docs/gallery/pie_and_polar_charts/polar_scatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pie_and_polar_charts/polar_scatter.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/align_ylabels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/align_ylabels.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/annotate_transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/annotate_transform.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/annotation_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/annotation_basic.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/annotation_polar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/annotation_polar.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/auto_subplots_adjust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/auto_subplots_adjust.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/boxplot_demo_pyplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/boxplot_demo_pyplot.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/dollar_ticks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/dollar_ticks.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/fig_axes_customize_simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/fig_axes_customize_simple.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/fig_axes_labels_simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/fig_axes_labels_simple.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/fig_x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/fig_x.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/pyplot_formatstr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/pyplot_formatstr.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/pyplot_mathtext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/pyplot_mathtext.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/pyplot_scales.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/pyplot_scales.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/pyplot_simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/pyplot_simple.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/pyplot_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/pyplot_text.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/pyplot_three.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/pyplot_three.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/pyplot_two_subplots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/pyplot_two_subplots.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/text_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/text_commands.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/text_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/text_layout.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/whats_new_1_subplot3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/whats_new_1_subplot3d.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/whats_new_98_4_fancy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/whats_new_98_4_fancy.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/whats_new_98_4_fill_between.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/whats_new_98_4_fill_between.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/whats_new_98_4_legend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/whats_new_98_4_legend.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/whats_new_99_axes_grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/whats_new_99_axes_grid.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/whats_new_99_mplot3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/whats_new_99_mplot3d.md -------------------------------------------------------------------------------- /docs/gallery/pyplots/whats_new_99_spines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/pyplots/whats_new_99_spines.md -------------------------------------------------------------------------------- /docs/gallery/recipes/common_date_problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/recipes/common_date_problems.md -------------------------------------------------------------------------------- /docs/gallery/recipes/create_subplots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/recipes/create_subplots.md -------------------------------------------------------------------------------- /docs/gallery/recipes/fill_between_alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/recipes/fill_between_alpha.md -------------------------------------------------------------------------------- /docs/gallery/recipes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/recipes/index.md -------------------------------------------------------------------------------- /docs/gallery/recipes/placing_text_boxes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/recipes/placing_text_boxes.md -------------------------------------------------------------------------------- /docs/gallery/recipes/share_axis_lims_views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/recipes/share_axis_lims_views.md -------------------------------------------------------------------------------- /docs/gallery/recipes/transparent_legends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/recipes/transparent_legends.md -------------------------------------------------------------------------------- /docs/gallery/scales/aspect_loglog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/scales/aspect_loglog.md -------------------------------------------------------------------------------- /docs/gallery/scales/custom_scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/scales/custom_scale.md -------------------------------------------------------------------------------- /docs/gallery/scales/index.md: -------------------------------------------------------------------------------- 1 | # 刻度、比例尺 2 | 3 | 这些示例介绍了如何在Matplotlib中处理不同的比例。 -------------------------------------------------------------------------------- /docs/gallery/scales/log_bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/scales/log_bar.md -------------------------------------------------------------------------------- /docs/gallery/scales/log_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/scales/log_demo.md -------------------------------------------------------------------------------- /docs/gallery/scales/log_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/scales/log_test.md -------------------------------------------------------------------------------- /docs/gallery/scales/power_norm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/scales/power_norm.md -------------------------------------------------------------------------------- /docs/gallery/scales/scales.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/scales/scales.md -------------------------------------------------------------------------------- /docs/gallery/scales/symlog_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/scales/symlog_demo.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/arrow_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/arrow_guide.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/artist_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/artist_reference.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/collections.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/compound_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/compound_path.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/dolphin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/dolphin.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/donut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/donut.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/ellipse_collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/ellipse_collection.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/ellipse_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/ellipse_demo.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/fancybox_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/fancybox_demo.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/hatch_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/hatch_demo.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/line_collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/line_collection.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/marker_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/marker_path.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/patch_collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/patch_collection.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/path_patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/path_patch.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/quad_bezier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/quad_bezier.md -------------------------------------------------------------------------------- /docs/gallery/shapes_and_collections/scatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/shapes_and_collections/scatter.md -------------------------------------------------------------------------------- /docs/gallery/showcase/anatomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/showcase/anatomy.md -------------------------------------------------------------------------------- /docs/gallery/showcase/bachelors_degrees_by_gender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/showcase/bachelors_degrees_by_gender.md -------------------------------------------------------------------------------- /docs/gallery/showcase/firefox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/showcase/firefox.md -------------------------------------------------------------------------------- /docs/gallery/showcase/integral.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/showcase/integral.md -------------------------------------------------------------------------------- /docs/gallery/showcase/mandelbrot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/showcase/mandelbrot.md -------------------------------------------------------------------------------- /docs/gallery/showcase/xkcd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/showcase/xkcd.md -------------------------------------------------------------------------------- /docs/gallery/specialty_plots/advanced_hillshading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/specialty_plots/advanced_hillshading.md -------------------------------------------------------------------------------- /docs/gallery/specialty_plots/anscombe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/specialty_plots/anscombe.md -------------------------------------------------------------------------------- /docs/gallery/specialty_plots/hinton_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/specialty_plots/hinton_demo.md -------------------------------------------------------------------------------- /docs/gallery/specialty_plots/leftventricle_bulleye.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/specialty_plots/leftventricle_bulleye.md -------------------------------------------------------------------------------- /docs/gallery/specialty_plots/mri_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/specialty_plots/mri_demo.md -------------------------------------------------------------------------------- /docs/gallery/specialty_plots/mri_with_eeg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/specialty_plots/mri_with_eeg.md -------------------------------------------------------------------------------- /docs/gallery/specialty_plots/radar_chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/specialty_plots/radar_chart.md -------------------------------------------------------------------------------- /docs/gallery/specialty_plots/sankey_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/specialty_plots/sankey_basics.md -------------------------------------------------------------------------------- /docs/gallery/specialty_plots/sankey_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/specialty_plots/sankey_links.md -------------------------------------------------------------------------------- /docs/gallery/specialty_plots/sankey_rankine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/specialty_plots/sankey_rankine.md -------------------------------------------------------------------------------- /docs/gallery/specialty_plots/skewt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/specialty_plots/skewt.md -------------------------------------------------------------------------------- /docs/gallery/specialty_plots/system_monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/specialty_plots/system_monitor.md -------------------------------------------------------------------------------- /docs/gallery/specialty_plots/topographic_hillshading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/specialty_plots/topographic_hillshading.md -------------------------------------------------------------------------------- /docs/gallery/statistics/barchart_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/barchart_demo.md -------------------------------------------------------------------------------- /docs/gallery/statistics/boxplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/boxplot.md -------------------------------------------------------------------------------- /docs/gallery/statistics/boxplot_color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/boxplot_color.md -------------------------------------------------------------------------------- /docs/gallery/statistics/boxplot_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/boxplot_demo.md -------------------------------------------------------------------------------- /docs/gallery/statistics/boxplot_vs_violin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/boxplot_vs_violin.md -------------------------------------------------------------------------------- /docs/gallery/statistics/bxp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/bxp.md -------------------------------------------------------------------------------- /docs/gallery/statistics/customized_violin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/customized_violin.md -------------------------------------------------------------------------------- /docs/gallery/statistics/errorbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/errorbar.md -------------------------------------------------------------------------------- /docs/gallery/statistics/errorbar_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/errorbar_features.md -------------------------------------------------------------------------------- /docs/gallery/statistics/errorbar_limits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/errorbar_limits.md -------------------------------------------------------------------------------- /docs/gallery/statistics/errorbars_and_boxes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/errorbars_and_boxes.md -------------------------------------------------------------------------------- /docs/gallery/statistics/hexbin_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/hexbin_demo.md -------------------------------------------------------------------------------- /docs/gallery/statistics/hist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/hist.md -------------------------------------------------------------------------------- /docs/gallery/statistics/histogram_cumulative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/histogram_cumulative.md -------------------------------------------------------------------------------- /docs/gallery/statistics/histogram_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/histogram_features.md -------------------------------------------------------------------------------- /docs/gallery/statistics/histogram_histtypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/histogram_histtypes.md -------------------------------------------------------------------------------- /docs/gallery/statistics/histogram_multihist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/histogram_multihist.md -------------------------------------------------------------------------------- /docs/gallery/statistics/multiple_histograms_side_by_side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/multiple_histograms_side_by_side.md -------------------------------------------------------------------------------- /docs/gallery/statistics/violinplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/statistics/violinplot.md -------------------------------------------------------------------------------- /docs/gallery/style_sheets/bmh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/style_sheets/bmh.md -------------------------------------------------------------------------------- /docs/gallery/style_sheets/dark_background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/style_sheets/dark_background.md -------------------------------------------------------------------------------- /docs/gallery/style_sheets/fivethirtyeight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/style_sheets/fivethirtyeight.md -------------------------------------------------------------------------------- /docs/gallery/style_sheets/ggplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/style_sheets/ggplot.md -------------------------------------------------------------------------------- /docs/gallery/style_sheets/grayscale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/style_sheets/grayscale.md -------------------------------------------------------------------------------- /docs/gallery/style_sheets/plot_solarizedlight2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/style_sheets/plot_solarizedlight2.md -------------------------------------------------------------------------------- /docs/gallery/style_sheets/style_sheets_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/style_sheets/style_sheets_reference.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/align_labels_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/align_labels_demo.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/axes_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/axes_demo.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/axes_margins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/axes_margins.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/axes_props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/axes_props.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/axes_zoom_effect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/axes_zoom_effect.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/axhspan_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/axhspan_demo.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/axis_equal_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/axis_equal_demo.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/broken_axis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/broken_axis.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/colorbar_placement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/colorbar_placement.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/custom_figure_class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/custom_figure_class.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/demo_tight_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/demo_tight_layout.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/figure_title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/figure_title.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/ganged_plots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/ganged_plots.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/geo_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/geo_demo.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/gridspec_and_subplots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/gridspec_and_subplots.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/gridspec_multicolumn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/gridspec_multicolumn.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/gridspec_nested.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/gridspec_nested.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/invert_axes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/invert_axes.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/multiple_figs_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/multiple_figs_demo.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/shared_axis_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/shared_axis_demo.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/subplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/subplot.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/subplot_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/subplot_demo.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/subplot_toolbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/subplot_toolbar.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/subplots_adjust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/subplots_adjust.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/subplots_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/subplots_demo.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/two_scales.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/two_scales.md -------------------------------------------------------------------------------- /docs/gallery/subplots_axes_and_figures/zoom_inset_axes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/subplots_axes_and_figures/zoom_inset_axes.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/accented_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/accented_text.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/annotation_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/annotation_demo.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/arrow_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/arrow_demo.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/arrow_simple_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/arrow_simple_demo.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/autowrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/autowrap.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/custom_legends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/custom_legends.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/dashpointlabel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/dashpointlabel.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/date.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/demo_annotation_box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/demo_annotation_box.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/demo_text_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/demo_text_path.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/dfrac_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/dfrac_demo.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/fancyarrow_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/fancyarrow_demo.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/fancytextbox_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/fancytextbox_demo.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/figlegend_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/figlegend_demo.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/font_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/font_file.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/fonts_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/fonts_demo.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/fonts_demo_kw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/fonts_demo_kw.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/legend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/legend.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/legend_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/legend_demo.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/line_with_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/line_with_text.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/mathtext_asarray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/mathtext_asarray.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/mathtext_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/mathtext_demo.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/mathtext_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/mathtext_examples.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/multiline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/multiline.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/rainbow_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/rainbow_text.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/stix_fonts_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/stix_fonts_demo.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/tex_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/tex_demo.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/text_alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/text_alignment.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/text_fontdict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/text_fontdict.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/text_rotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/text_rotation.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/titles_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/titles_demo.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/unicode_minus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/unicode_minus.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/usetex_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/usetex_demo.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/usetex_fonteffects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/usetex_fonteffects.md -------------------------------------------------------------------------------- /docs/gallery/text_labels_and_annotations/watermark_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/text_labels_and_annotations/watermark_text.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/auto_ticks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/auto_ticks.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/centered_ticklabels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/centered_ticklabels.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/colorbar_tick_labelling_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/colorbar_tick_labelling_demo.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/custom_ticker1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/custom_ticker1.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/date_demo_convert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/date_demo_convert.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/date_demo_rrule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/date_demo_rrule.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/date_index_formatter2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/date_index_formatter2.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/major_minor_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/major_minor_demo.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/multiple_yaxis_with_spines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/multiple_yaxis_with_spines.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/scalarformatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/scalarformatter.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/spine_placement_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/spine_placement_demo.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/spines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/spines.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/spines_bounds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/spines_bounds.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/spines_dropped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/spines_dropped.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/tick_formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/tick_formatters.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/tick_label_right.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/tick_label_right.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/tick_labels_from_values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/tick_labels_from_values.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/tick_locators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/tick_locators.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/tick_xlabel_top.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/tick_xlabel_top.md -------------------------------------------------------------------------------- /docs/gallery/ticks_and_spines/ticklabels_rotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/ticks_and_spines/ticklabels_rotation.md -------------------------------------------------------------------------------- /docs/gallery/units/annotate_with_units.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/units/annotate_with_units.md -------------------------------------------------------------------------------- /docs/gallery/units/artist_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/units/artist_tests.md -------------------------------------------------------------------------------- /docs/gallery/units/bar_demo2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/units/bar_demo2.md -------------------------------------------------------------------------------- /docs/gallery/units/bar_unit_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/units/bar_unit_demo.md -------------------------------------------------------------------------------- /docs/gallery/units/basic_units.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/units/basic_units.md -------------------------------------------------------------------------------- /docs/gallery/units/ellipse_with_units.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/units/ellipse_with_units.md -------------------------------------------------------------------------------- /docs/gallery/units/evans_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/units/evans_test.md -------------------------------------------------------------------------------- /docs/gallery/units/index.md: -------------------------------------------------------------------------------- 1 | # 单位 2 | 3 | 这些示例涵盖了Matplotlib中单元的许多表示形式。 -------------------------------------------------------------------------------- /docs/gallery/units/radian_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/units/radian_demo.md -------------------------------------------------------------------------------- /docs/gallery/units/units_sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/units/units_sample.md -------------------------------------------------------------------------------- /docs/gallery/units/units_scatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/units/units_scatter.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/canvasagg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/canvasagg.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/embedding_in_gtk3_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/embedding_in_gtk3_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/embedding_in_qt_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/embedding_in_qt_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/embedding_in_tk_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/embedding_in_tk_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/embedding_in_wx2_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/embedding_in_wx2_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/embedding_in_wx3_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/embedding_in_wx3_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/embedding_in_wx4_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/embedding_in_wx4_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/embedding_in_wx5_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/embedding_in_wx5_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/embedding_webagg_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/embedding_webagg_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/fourier_demo_wx_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/fourier_demo_wx_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/gtk_spreadsheet_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/gtk_spreadsheet_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/index.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/mathtext_wx_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/mathtext_wx_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/mpl_with_glade3_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/mpl_with_glade3_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/pylab_with_gtk_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/pylab_with_gtk_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/svg_histogram_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/svg_histogram_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/svg_tooltip_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/svg_tooltip_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/toolmanager_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/toolmanager_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/user_interfaces/wxcursor_demo_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/user_interfaces/wxcursor_demo_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/anchored_box01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/anchored_box01.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/anchored_box02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/anchored_box02.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/anchored_box03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/anchored_box03.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/anchored_box04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/anchored_box04.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/annotate_explain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/annotate_explain.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/annotate_simple01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/annotate_simple01.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/annotate_simple02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/annotate_simple02.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/annotate_simple03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/annotate_simple03.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/annotate_simple04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/annotate_simple04.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/annotate_simple_coord01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/annotate_simple_coord01.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/annotate_simple_coord02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/annotate_simple_coord02.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/annotate_simple_coord03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/annotate_simple_coord03.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/annotate_text_arrow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/annotate_text_arrow.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/colormap_normalizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/colormap_normalizations.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/colormap_normalizations_bounds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/colormap_normalizations_bounds.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/colormap_normalizations_custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/colormap_normalizations_custom.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/colormap_normalizations_lognorm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/colormap_normalizations_lognorm.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/colormap_normalizations_power.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/colormap_normalizations_power.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/colormap_normalizations_symlognorm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/colormap_normalizations_symlognorm.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/connect_simple01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/connect_simple01.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/connectionstyle_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/connectionstyle_demo.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/custom_boxstyle01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/custom_boxstyle01.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/custom_boxstyle02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/custom_boxstyle02.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/demo_gridspec01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/demo_gridspec01.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/demo_gridspec03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/demo_gridspec03.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/demo_gridspec05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/demo_gridspec05.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/demo_gridspec06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/demo_gridspec06.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/pgf_fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/pgf_fonts.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/pgf_preamble_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/pgf_preamble_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/pgf_texsystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/pgf_texsystem.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/simple_annotate01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/simple_annotate01.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/simple_legend01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/simple_legend01.md -------------------------------------------------------------------------------- /docs/gallery/userdemo/simple_legend02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/userdemo/simple_legend02.md -------------------------------------------------------------------------------- /docs/gallery/widgets/buttons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/widgets/buttons.md -------------------------------------------------------------------------------- /docs/gallery/widgets/check_buttons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/widgets/check_buttons.md -------------------------------------------------------------------------------- /docs/gallery/widgets/cursor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/widgets/cursor.md -------------------------------------------------------------------------------- /docs/gallery/widgets/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/widgets/index.md -------------------------------------------------------------------------------- /docs/gallery/widgets/lasso_selector_demo_sgskip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/widgets/lasso_selector_demo_sgskip.md -------------------------------------------------------------------------------- /docs/gallery/widgets/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/widgets/menu.md -------------------------------------------------------------------------------- /docs/gallery/widgets/multicursor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/widgets/multicursor.md -------------------------------------------------------------------------------- /docs/gallery/widgets/polygon_selector_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/widgets/polygon_selector_demo.md -------------------------------------------------------------------------------- /docs/gallery/widgets/radio_buttons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/widgets/radio_buttons.md -------------------------------------------------------------------------------- /docs/gallery/widgets/rectangle_selector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/widgets/rectangle_selector.md -------------------------------------------------------------------------------- /docs/gallery/widgets/slider_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/widgets/slider_demo.md -------------------------------------------------------------------------------- /docs/gallery/widgets/span_selector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/widgets/span_selector.md -------------------------------------------------------------------------------- /docs/gallery/widgets/textbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/gallery/widgets/textbox.md -------------------------------------------------------------------------------- /docs/intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/intro/README.md -------------------------------------------------------------------------------- /docs/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/resources/README.md -------------------------------------------------------------------------------- /docs/tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/README.md -------------------------------------------------------------------------------- /docs/tutorials/advanced/path_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/advanced/path_tutorial.md -------------------------------------------------------------------------------- /docs/tutorials/advanced/patheffects_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/advanced/patheffects_guide.md -------------------------------------------------------------------------------- /docs/tutorials/advanced/transforms_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/advanced/transforms_tutorial.md -------------------------------------------------------------------------------- /docs/tutorials/colors/colorbar_only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/colors/colorbar_only.md -------------------------------------------------------------------------------- /docs/tutorials/colors/colormap-manipulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/colors/colormap-manipulation.md -------------------------------------------------------------------------------- /docs/tutorials/colors/colormapnorms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/colors/colormapnorms.md -------------------------------------------------------------------------------- /docs/tutorials/colors/colormaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/colors/colormaps.md -------------------------------------------------------------------------------- /docs/tutorials/colors/colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/colors/colors.md -------------------------------------------------------------------------------- /docs/tutorials/intermediate/artists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/intermediate/artists.md -------------------------------------------------------------------------------- /docs/tutorials/intermediate/color_cycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/intermediate/color_cycle.md -------------------------------------------------------------------------------- /docs/tutorials/intermediate/constrainedlayout_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/intermediate/constrainedlayout_guide.md -------------------------------------------------------------------------------- /docs/tutorials/intermediate/gridspec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/intermediate/gridspec.md -------------------------------------------------------------------------------- /docs/tutorials/intermediate/imshow_extent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/intermediate/imshow_extent.md -------------------------------------------------------------------------------- /docs/tutorials/intermediate/legend_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/intermediate/legend_guide.md -------------------------------------------------------------------------------- /docs/tutorials/intermediate/tight_layout_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/intermediate/tight_layout_guide.md -------------------------------------------------------------------------------- /docs/tutorials/introductory/customizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/introductory/customizing.md -------------------------------------------------------------------------------- /docs/tutorials/introductory/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/introductory/images.md -------------------------------------------------------------------------------- /docs/tutorials/introductory/lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/introductory/lifecycle.md -------------------------------------------------------------------------------- /docs/tutorials/introductory/pyplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/introductory/pyplot.md -------------------------------------------------------------------------------- /docs/tutorials/introductory/sample_plots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/introductory/sample_plots.md -------------------------------------------------------------------------------- /docs/tutorials/introductory/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/introductory/usage.md -------------------------------------------------------------------------------- /docs/tutorials/text/annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/text/annotations.md -------------------------------------------------------------------------------- /docs/tutorials/text/mathtext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/text/mathtext.md -------------------------------------------------------------------------------- /docs/tutorials/text/pgf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/text/pgf.md -------------------------------------------------------------------------------- /docs/tutorials/text/text_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/text/text_intro.md -------------------------------------------------------------------------------- /docs/tutorials/text/text_props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/text/text_props.md -------------------------------------------------------------------------------- /docs/tutorials/text/usetex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/text/usetex.md -------------------------------------------------------------------------------- /docs/tutorials/toolkits/axes_grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/toolkits/axes_grid.md -------------------------------------------------------------------------------- /docs/tutorials/toolkits/axisartist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/toolkits/axisartist.md -------------------------------------------------------------------------------- /docs/tutorials/toolkits/mplot3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/tutorials/toolkits/mplot3d.md -------------------------------------------------------------------------------- /docs/users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/users/README.md -------------------------------------------------------------------------------- /docs/users/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/users/credits.md -------------------------------------------------------------------------------- /docs/users/installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/users/installing.md -------------------------------------------------------------------------------- /docs/users/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/docs/users/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/package.json -------------------------------------------------------------------------------- /patch/file/Comment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/patch/file/Comment.vue -------------------------------------------------------------------------------- /patch/file/Valine.Pure.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/patch/file/Valine.Pure.min.js -------------------------------------------------------------------------------- /patch/file/Valine.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/patch/file/Valine.min.js -------------------------------------------------------------------------------- /patch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/patch/index.js -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/gallery/libs/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/scripts/gallery/libs/request.js -------------------------------------------------------------------------------- /scripts/gallery/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/scripts/gallery/main.js -------------------------------------------------------------------------------- /scripts/gallery/module/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/scripts/gallery/module/const.js -------------------------------------------------------------------------------- /scripts/gallery/module/htmlToMd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/scripts/gallery/module/htmlToMd.js -------------------------------------------------------------------------------- /scripts/gallery/module/htmlToMd.text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/scripts/gallery/module/htmlToMd.text.js -------------------------------------------------------------------------------- /scripts/gallery/module/outputMd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/scripts/gallery/module/outputMd.js -------------------------------------------------------------------------------- /scripts/gallery/module/outputMd.text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/scripts/gallery/module/outputMd.text.js -------------------------------------------------------------------------------- /scripts/gallery/module/parsingHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/scripts/gallery/module/parsingHtml.js -------------------------------------------------------------------------------- /scripts/gallery/module/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/scripts/gallery/module/sleep.js -------------------------------------------------------------------------------- /scripts/gallery/module/translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/scripts/gallery/module/translation.js -------------------------------------------------------------------------------- /scripts/gallery/module/translation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/scripts/gallery/module/translation.test.js -------------------------------------------------------------------------------- /scripts/gallery/module/uploadImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/scripts/gallery/module/uploadImage.js -------------------------------------------------------------------------------- /scripts/gallery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/scripts/gallery/package.json -------------------------------------------------------------------------------- /scripts/htmlToMd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teadocs/matplotlib-cn/HEAD/scripts/htmlToMd.js --------------------------------------------------------------------------------