原创 歐洲簡史

歐洲簡史    

原创 pandas系列之-DataFrame(4)

Operations There are lots of operations with pandas that will be really useful to you import pandas as pd df = pd.Dat

原创 pandas系列之-DataFrame(3)

Merging, Joining, and Concatenating There are 3 main ways of combining DataFrames together: Merging, Joining and Conc

原创 pandas系列之-DataFrame(5)

Data Input and Output import numpy as np import pandas as pd CSV CSV Input df = pd.read_csv('example') df a b

原创 pandas系列之-DataFrame(2)

Groupby The groupby method allows you to group rows of data together and call aggregate functions import pandas as pd

原创 pandas系列之-DataFrame(1)

常見DataFrame數據處理 import numpy as np import pandas as pd from numpy.random import randn np.random.seed(101) df =

原创 Springboot2.0單元測試和自定義異常處理(Springboot2.0系列-三)

1、@SpringBootTest單元測試 簡介:SpringBoot的單元測試 1)、引入相關依賴 <!--springboot程序測試依賴,如果是自動創建項目默認添加--> <dependency> <grou

原创 SpringBoot整合定時任務和異步任務(SpringBoot 系列-五)

SpringBoot整合定時任務和異步任務 一、SpringBoot定時任務schedule概述 定時任務方案: 1.Java自帶的java.util.Timer類 timer:配置比較麻煩,時間延後問題 timertask:不推薦

原创 使用sklearn的RandomForestClassifier做簡單的二分類

情景:基於相親網站男方提供的個人基本資料作爲輸入,以女方是否相親做標籤做訓練,用訓練出的模型預測女方是否相親forest.py#coding:utf-8 from sklearn.ensemble import RandomForest

原创 SpringBoot接口工具、Http協議等(SpringBoot2.0系列-1)

# 1、SpringBoot2.xHTTP請求配置講解 簡介:SpringBoot2.xHTTP請求註解講解和簡化註解配置技巧 1、@RestController and @RequestMapping是springMVC的註解,不是

原创 三天搞定python基礎-day1

本文內容來源於Yupeng Jiang(倫敦大學數學系)課件,本人認爲非常經典,原文爲純英文,網上也已經有翻譯的版本,但是自認爲還是有些凌亂,看起來不是很舒服,故再次整理髮佈於此。其一,是作爲自己鞏固複習之用;其二,資源共享課程大綱:第1

原创 Spring Boot 快速構建 Spring 框架應用

Spring 框架對於很多 Java 開發人員來說都不陌生。自從 2002 年發佈以來,Spring 框架已經成爲企業應用開發領域非常流行的基礎框架。有大量的企業應用基於 Spring 框架來開發。Spring 框架包含幾十個不同的子項目

原创 持續集成、持續交付、持續部署(CI/CD)簡介

概述: 軟件開發週期中需要一些可以幫助開發者提升速度的自動化工具。其中工具最重要的目的是促進軟件項目的持續集成與交付。通過CI/CD工具,開發團隊可以保持軟件更新並將其迅速的投入實踐中。CI/CD也被認爲是敏捷開發的最重要實踐之一。

原创 win7下安裝Ubuntu16.04系統

Ubuntu16.04作爲目前一款比較經典的ubuntu系統,相信很多人都想在自己的電腦上安裝一下,然而系統的安裝方法各式各樣,u盤法、grub引導法等等,這裏我將介紹在win7系統下用easyBCD軟件建立引導,然後安裝ubuntu的方

原创 SpringBoot攔截器和 Servlet3.0自定義Filter、Listener(springboot2.0系列-四)

SpringBoot攔截器和 Servlet3.0自定義Filter、Listener 1、SpringBoot2.x過濾器Filter和使用Servlet3.0配置自定義Filter 簡介:SpringBoot裏面Filter和使用S