自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(2)
  • 资源 (9)
  • 收藏
  • 关注

原创 matplotlib 更改绘图中直线与数据点的颜色

文章目录概述数据点直线具体案例 概述 更改前 更改后 数据点 ax.get_lines()[0].set_marker('p') : 更改为五边形 ax.get_lines()[0].set_color('gray') : 设置灰色 gray:灰色 black:黑色 直线 ax.get_lines()[1].set_color('black') : 设置黑色 ax.get_lines(...

2020-04-02 00:43:26 2589 1

原创 pycharm取消matplotlib默认输出到sciview

matplotlib默认输出到sciview 是无法对生成的图像进行进一步操作的,如图像保存,坐标轴更改,导出等。 而取消matplotlib默认输出到sciview之后,是可以进行进一步操作。 取消前 取消后 具体操作如下: File|Settings | Tools | Python Scientific | Show plots in toolwindow ...

2020-04-01 23:43:15 1359

CaiQuanMySelfNew.zip

这是一个关于猜拳小游戏,采用的编程语言C#,对应的内容见我的博客: https://blog.csdn.net/xu380393916/article/details/85009975#comments

2019-11-05

一元线性回归相关代码

具体的实现内容,请参考我的博客文章 超级详解讲解线性回归(含吴恩达相关)

2019-03-05

C#入门经典第七版(Beginning C# 6.0 Programming with Visual Studio 2015)(中 + 英文, 代码上官网下载)

上传的资源有2份,中文 + 英文,两个pdf都是文字版的(非扫描版),可编辑与复制。 本书面向想学习如何使用.NET Framework编写C#程序的所有人。 本书针对的是想要通过学习一种干净、 现代、 优雅的编程语言来掌握程 序设计的完完全全的初学者。 但是, 对于熟悉其他语言、 想要探索.NET 平台的人们, 以及想要了解.NET使用的旗舰语言的.NET开发人员, 本 书同样有用

2018-10-25

The Practicing Mind Developing[Thomas_M.Sterner](英文版,练习的心态)

Of all the riches available to us in life, self-discipline is surely one of, if not the, most valuable. All things worth achieving can be accomplished with the power of self-discipline. With it we are masters of the energy weexpend in life. Without it we are victims of our own unfocused and constantly changing efforts, desires and directions.

2018-09-17

Learn More Study Less (如何高效学习 中文).epub

Of all the riches available to us in life, self-discipline is surely one of, if not the, most valuable. All things worth achieving can be accomplished with the power of self-discipline. With it we are masters of the energy we expend in life. Without it we are victims of our own unfocused and constantly changing efforts, desires and directions. Self-discipline, focus, patience, and self-awareness are interwoven threads in the fabric of both true inner peace and contentment in life. Together, living in the present moment and being process-oriented is the path that leads us to these all- important virtues. This magical path is there for everyone. It offers its untold riches to us all. “The Practicing Mind” is about remembering what you already know at some level and bringing that memory into the present, where it will serve to both place you onto the path and empower you to partake in the journey.Thomas M. Sterner

2018-08-09

(中文+英文版+源代码)Python编程:从入门到实践_Python Crash Course - Eric Matthes

为了节约其他使用者的查找资料的时间,我将《Python编程:从入门到实践_Python Crash Course - Eric Matthes》书籍的中文+英文+源代码全部打包上传,希望对有需要的人有所帮助 本书的第一部分介绍编写 Python程序所需要熟悉的基本概念, 其中很多都适用于所有编程语言, 因此它们在你的整个程序员生涯中都很有用。 第 1 章介绍在计算机中安装Python, 并运行第一个程序——它在屏幕上打印消息“Hello world!”。 第 2 章论述如何在变量中存储信息以及如何使用文本和数字。 第 3 章和第 4 章介绍列表。 使用列表能够在一个变量中存储任意数量的信息, 从而高效地处理数据: 只需几行代码, 你就能够处理数百、 数千乃至数百万个值。 第 5 章讲解使用 if语句来编写这样的代码: 在特定条件满足时采取一种措施, 而在该条件不满足时采取另一种措施。 第 6 章演示如何使用 Python字典, 将不同的信息关联起来。 与列表一样, 你也可以根据需要在字典中存储任意数量的信息。 第 7 章讲解如何从用户那里获取输入, 以让程序变成交互式的。 你还将学习 while 循环, 它不断地运行代码块, 直到指定的条件不再满足为止。 第 8 章介绍编写函数。 函数是执行特定任务的被命名的代码块, 你可以根据需要随时运行它。 第 9 章介绍类, 它让你能够模拟实物, 如小狗、 小猫、 人、 汽车、 火箭等, 让你的代码能够表示任何真实或抽象的东西。 第 10 章介绍如何使用文件, 以及如何处理错误以免程序意外地崩溃。 你需要在程序关闭前保存数据, 并在程序再次运行时读取它们。 你将学习 Python异常, 它们让你能够未雨绸 缪, 从而让程序妥善地处理错误。 第 11 章为代码编写测试, 以核实程序是否像你期望的那样工作。 这样, 扩展程序时, 你就不用担心引入新的bug。 要想脱离初级程序员的阵容, 跻身于中级程序员的行列, 测试 代码是你必须掌握的基本技能之一。

2018-08-01

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除