search
HomeBackend DevelopmentPython TutorialDraw such beautiful professional illustrations in Python? So easy!
Draw such beautiful professional illustrations in Python? So easy!Apr 13, 2023 pm 03:01 PM
pythonProfessional illustration

Draw such beautiful professional illustrations in Python? So easy!

Text

Hello everyone, I am Python artificial intelligence technology

Method 1

Highly recommended Python's plotting module matplotlib: python plotting. The pictures drawn are really high-end and classy, ​​low-key, luxurious and connotative~ It is suitable for all kinds of drawings from 2D to 3D, from scalar to vector. Can be saved in various formats from eps, pdf to svg, png, jpg. Moreover, the drawing functions of Matplotlib basically have similar names to those of Matlab, so the learning cost of migration is relatively low. Open source and free. As shown in the picture (the picture in the title description is at the end): (The following pictures are quoted from Thumbnail gallery)

Ordinary function images like this:

Draw such beautiful professional illustrations in Python? So easy!

plt.fill(x, y1, 'b', x, y2, 'r', alpha=0.3)

And this kind of Scatter picture (I don’t know how to say it in Chinese...):

Draw such beautiful professional illustrations in Python? So easy!

plt.scatter(x, y, s=area, alpha=0.5)

Exquisite curves, translucent color matching. Show your noble and cool personality. The most important thing is that it only takes one line of code to do it. From now on, you no longer have to endure the painful color matching in Matlab and GNUPlot.

Want to draw 3D data? No problem (it may be more convenient to use mayavi):

Draw such beautiful professional illustrations in Python? So easy!

ax.plot_surface(X, Y, Z, rstride=8, cstride=8, alpha=0.3)
cset = ax.contourf(X, Y, Z, zdir='z', offset=-100, cmap=cm.coolwarm)
cset = ax.contourf(X, Y, Z, zdir='x', offset=-40, cmap=cm.coolwarm)
cset = ax.contourf(X, Y, Z, zdir='y', offset=40, cmap=cm.coolwarm)

You can have it with four lines of code (the last three lines are for drawing contour lines on the coordinate plane, Strictly speaking, it is still one line).

In addition, as long as you are a vector field, the network or any other weird needs can be handled:

Draw such beautiful professional illustrations in Python? So easy!

plt.streamplot(X, Y, U, V, color=U, linewidth=2, cmap=plt.cm.autumn)
plt.colorbar()

Draw such beautiful professional illustrations in Python? So easy!

plt.triplot(x, y, triangles, 'go-')
plt.title('triplot of user-specified triangulation')
plt.xlabel('Longitude (degrees)')
plt.ylabel('Latitude (degrees)')

Draw such beautiful professional illustrations in Python? So easy!

ax = plt.subplot(111, polar=True)
bars = ax.bar(theta, radii, width=width, bottom=0.0)

This is not over yet, Matplotlib also supports the insertion of Latex formulas, when the picture drawn by others still looks like this (the following picture is quoted from Matplotlib Tutorial (translation) )

Draw such beautiful professional illustrations in Python? So easy!

You can turn it into something like this:

Draw such beautiful professional illustrations in Python? So easy!

If you match it IPython is used as the running terminal (this picture was drawn by myself~):

Draw such beautiful professional illustrations in Python? So easy!

It is simply an artifact, does it exist?

Action is worse than heartbeat, what are you waiting for?

As reminded by @Xu Cheng, I would like to add that matplotlib can also produce xkcd-style graphics~

Draw such beautiful professional illustrations in Python? So easy!

(picture Quoted from the Internet)

In addition, for more exciting content combined with IPython Notebook, please see http://nbviewer.ipython.org/

If you find it troublesome to install and it happens If you are under Windows system, you can try winpython, a distribution version of Python - Portable Scientific Python 2/3 32/64bit Distribution for Windows.

Since @van li questioned whether matplotlib can draw the image shown in the question, I will use matplotlib to draw the image in the question here as follows:

Draw such beautiful professional illustrations in Python? So easy!

The code is here:

https://gist.github.com/coldfog/c479124328fc6bb8b789

Draw such beautiful professional illustrations in Python? So easy!

Code here:

https://gist.github.com/coldfog/5da63a6958fc0a949b52

看到楼下有人说配色和好看,唉....那我也贴几个吧...只不过当初限于篇幅没有写而已。另外,搜索公众号顶级python后台回复“进阶”,获取一份惊喜礼包。

首先,python有一个专门的配色包jiffyclub/brewer2mpl,提供了从美术角度来讲的精美配色(戳这里感受ColorBrewer: Color Advice for Maps)。

此外还有一些致力于美化绘图的库,用起来也都非常方便,比如olgabot/prettyplotlib 。

废话不多说,上图就是王道。(下面图片来源网络)

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

有人可能会说需要复杂的设置,其实也不用。比如上边这幅图,只需要多加一个参数就好:

cmap=brewer2mpl.get_map('RdBu', 'diverging', 8, reverse=True).mpl_colormap,

楼下说到统计绘图。嘛seaborn 是一个调用 matplotlib 的统计绘图库,上图:

(https://github.com/mwaskom/seaborn)  

Draw such beautiful professional illustrations in Python? So easy!

代码一行,后边的几乎都是一行,没做其他设置,默认就这样。我就不贴其他的代码了:

g = sns.jointplot(x1, x2, kind="kde", size=7, space=0)

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

还有个更炫酷的可交互式绘图,大家自己戳开看吧:

http://nbviewer.ipython.org/github/plotly/python-user-guidechaocc/blob/master/s0_getting-started/s0_getting-started.ipynb

遇到安装问题的请尝试Anaconda这个Python发行版。下载安装后直接使用即可,它几乎预装了所有要用到的科学计算及可视化的库。

有盆友在评论里说希望能有完整的教程,确实就这个答案来说,离实际使用还有很大的距离,网上相关的中文资料也不多。不过真要写起来这个答案也装不下,况且写在这个问题下也不是很恰当。等到那天我有专栏了再说吧,到时候也许会写一个关于可视化的系列教程。

方法二

翻遍这个问题下的所有回答,发现凡是提到Matlab的,其评价中常有‘锯齿’,‘菜鸟’,‘难看’,‘不忍直视’等标签。

然而,2020年了,技术提升了,观念进步了,当一些基本问题解决后,Matlab还那么‘不堪’吗?

Draw such beautiful professional illustrations in Python? So easy!

观察Mathematica、Origin、Python/matplotlib、R/ggplot2等软件绘制的数据、结果图,其与Matlab图的差异主要体现在点、线、面等对象属性(位置、尺寸、颜色等)的不同上。

既然只是属性的不同,那是不是只要修改一下这些信息,就可以实现各种软件绘图风格之间的转换了呢?

答案是肯定的。

比如,这是高赞回答 @冯昱尧用Python/matplotlib绘制的一幅图:

Draw such beautiful professional illustrations in Python? So easy!

我们用Matlab默认属性来绘制,效果是这样的(没加误差棒):

Draw such beautiful professional illustrations in Python? So easy!

Then, just modify the position, size, color and other information to get a picture with a similar style (without adding error bars):

Draw such beautiful professional illustrations in Python? So easy!

When we use this idea to think about how to draw illustrations, it is easy to realize our own small ideas, imitate or even create ideal illustrations.

For example, one day, I found that the color of the evening sky was very beautiful, and I thought: Why can’t I draw it into the illustration of the paper? (See: Matlab paper illustration color matching 2 - natural gradient)

So,

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

# #For another example, one day, I saw a photo of my girlfriend and thought it was beautiful. I thought: Why can’t I draw her into the illustrations of my paper? (See: Matlab paper illustration color matching 1 - the color of my girlfriend)


So,


Draw such beautiful professional illustrations in Python? So easy!

At this time, there was a friend I'm about to say: "Oh my answerer, you have to type out all these fancy things line by line. It's too troublesome."


This is wrong. That’s it.


Just like R has ggplot2 and Python has matplotlib, Matlab actually has many ready-made drawing toolkits, and you don’t need to develop them yourself.


For example,


Pierre Morel [1] combined with ggplot2, developed the gramm tool for drawing complex graphics.


Inspired by ggplot2 (Wickham 2009), the R implementation of “grammar of graphics” principles (Wilkinson 1999), gramm improves Matlab's plotting functionality, allowing to generate complex figures using high-level object-oriented code.


The example effect is as follows:


Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!

Draw such beautiful professional illustrations in Python? So easy!Similarly, Stephen Cobeldick [2] ported the matplotlib color scheme to Matlab.


In other words, you can use matplotlib's color scheme directly in Matlab, and you don't have to always use 'jet'.


The MatPlotLib 2.0 default colormaps ported to MATLAB. This submission also includes the Line ColorOrder colormaps!


The sample effect is as follows:


Draw such beautiful professional illustrations in Python? So easy!

There are many toolkits specifically designed for paper illustrations, so I won’t introduce them one by one here.

In general, tools are just tools, they are not superior or inferior.

If you want to draw good-looking illustrations, the key lies in the person using the tools.

Concentrate and reach the top.

Reference:

​https://www.php.cn/link/b3ddb7c5b10be95dbc3f9152c58becce​​​

​https://www.php.cn/link/171ae1bbb81475eb96287dd78565b38b​

The above is the detailed content of Draw such beautiful professional illustrations in Python? So easy!. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:51CTO.COM. If there is any infringement, please contact admin@php.cn delete
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software