上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: import wordcloud import jieba font = r'C:\Windows\Fonts\simfang.ttf' w = wordcloud.WordCloud(height = 700, width = 1000, font_path=font, \ stopwords=[ 阅读全文
posted @ 2020-04-01 16:23 Iceberg_710815 阅读(428) 评论(0) 推荐(0) 编辑
摘要: import requests from bs4 import BeautifulSoup as bs res = requests.get('http://politics.people.com.cn/GB/1024/index.html') content = res.content.decod 阅读全文
posted @ 2020-03-21 17:32 Iceberg_710815 阅读(699) 评论(0) 推荐(0) 编辑
摘要: from tkinter import * def Calculate(): a1 = int(text1.get('1.0', END)) # 从行首取到行尾 a2 = int(text2.get('1.0', END)) a3 = a1 + a2 text3.delete('1.0', END) 阅读全文
posted @ 2020-03-19 20:39 Iceberg_710815 阅读(1117) 评论(0) 推荐(0) 编辑
摘要: 1. 绘制条形图 import numpy as np from scipy import stats import matplotlib.pyplot as plt from sklearn.datasets import load_iris iris_data = load_iris() sam 阅读全文
posted @ 2020-03-12 12:20 Iceberg_710815 阅读(3964) 评论(0) 推荐(0) 编辑
摘要: 分类是一种常见的机器学习算法,是一种有监督的算法。简单说就是给出学习集数据都是带标签的,通过训练学习集数据获得模型,对未来给出的实际数据,根据模型进行分类。这里采用K最近邻算法(KNN,K-nearest neighbour) KNN算法非常直观,容易理解,就是寻找K个距离最近的邻居,看这K个近邻中 阅读全文
posted @ 2020-03-09 18:14 Iceberg_710815 阅读(540) 评论(0) 推荐(0) 编辑
摘要: import numpy as np from matplotlib import pyplot as plt # 用numpy生成数据t ,y t = np.arange(1,10,1) y = 0.9 * t + np.sin(t) model = np.polyfit(t, y ,deg=1) 阅读全文
posted @ 2020-03-09 15:14 Iceberg_710815 阅读(499) 评论(0) 推荐(0) 编辑
摘要: import time scale = 100 print('执行开始'.center(103, '-')) for i in range(scale + 1): a = '*' * i b = ' ' * (scale - i) c = (i / scale) * 100 print('\r{2: 阅读全文
posted @ 2020-03-03 16:01 Iceberg_710815 阅读(519) 评论(0) 推荐(0) 编辑
摘要: 应用pandas可读取excel文件中的数据,存储为数据框,并应用matplotlib包中的方法进行数据可视化。 本例中读取的stock.xlsx文件中的数据为 一、画饼图 import numpy as np import pandas as pd import matplotlib.pyplot 阅读全文
posted @ 2020-02-27 11:35 Iceberg_710815 阅读(1936) 评论(0) 推荐(0) 编辑
摘要: import re from bs4 import BeautifulSoup from bs4 import UnicodeDammit import urllib.request """ 获取天气预报网中天气预报数据的一段爬虫代码。需要先安装bs4,lxml等几个第3方库 """ url = ' 阅读全文
posted @ 2020-02-22 16:28 Iceberg_710815 阅读(662) 评论(0) 推荐(0) 编辑
摘要: python的tkinter模块是用于编写GUI窗口程序的模块,使用起来非常方便,功能强大。基于tkinter模块,开发了一个输入两点经纬度计算输出距离(包括公里数和孤度数)的小程序,主要应用于地震台站地震报告编写。下面这段代码可以在python3.8上直接运行。 import tkinter as 阅读全文
posted @ 2020-02-07 20:15 Iceberg_710815 阅读(556) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页