11 2018 档案

摘要:1.hadoop 环境搭建 https://www.cnblogs.com/Hootin-Pang/p/6328382.html 2.基础 (1)SQL 功底 (2)LInux 基础命令 (3)Java SE 3. Cloudera 阅读全文
posted @ 2018-11-29 21:47 流星小子 阅读(348) 评论(0) 推荐(0) 编辑
摘要:1.float : left/right 阅读全文
posted @ 2018-11-28 23:42 流星小子 阅读(110) 评论(0) 推荐(0) 编辑
摘要:1.bfc block format context 2.如何触发一个盒子的bfc position:absolute; display: inline-block float:left/right; overflow:hidden; 2.css 代码 3. margin 合并问题 3. css 4 阅读全文
posted @ 2018-11-28 23:25 流星小子 阅读(218) 评论(0) 推荐(0) 编辑
摘要:1.html 代码 2.css 样式 阅读全文
posted @ 2018-11-28 23:13 流星小子 阅读(596) 评论(0) 推荐(0) 编辑
摘要:1.id 选择器 #idname{color:red;} 2.class选择器 .classname{} 3.标签选择器 div{} 4.通配符选择器 *{} 5. 属性选择器 [id]{ } 5.选择器权重 !important >行距样式选择器>id>class | 属性>标签>通配符 使用cs 阅读全文
posted @ 2018-11-25 22:31 流星小子 阅读(229) 评论(0) 推荐(0) 编辑
摘要:1. 浏览器 内核 2 IE trident 3 Firefox Gecko 4 Google chrome webkit/blink 5 Safari webkit Opera presto 阅读全文
posted @ 2018-11-25 18:47 流星小子 阅读(115) 评论(0) 推荐(0) 编辑
摘要:EasyRecovery恢复软件就不错 360安全卫士里面的文件恢复也不错 阅读全文
posted @ 2018-11-24 23:05 流星小子 阅读(117) 评论(0) 推荐(0) 编辑
摘要:冒泡排序时间复杂度:O(n^2) 阅读全文
posted @ 2018-11-17 14:52 流星小子 阅读(457) 评论(0) 推荐(0) 编辑
摘要:# 4*4矩阵旋转90度 def matrix_transposition(data): for index,row in enumerate(data): for col in range(index,len(row)): temp = data[index][col] data[index][c 阅读全文
posted @ 2018-11-14 21:54 流星小子 阅读(5133) 评论(0) 推荐(0) 编辑
摘要:你好 在刚刚安装的Windows10 conda上,我很惊讶地被告知要将Navigator从1.7.0升级到1.8.2,因为我刚刚安装它。由于软件包没有安装在Navigator上,我尝试使用下面的命令升级,因为导航器升级只是运行了太长时间(超过30分钟)。 conda更新anaconda-navig 阅读全文
posted @ 2018-11-12 11:24 流星小子 阅读(4058) 评论(1) 推荐(0) 编辑
摘要:步骤一: 步骤二: 阅读全文
posted @ 2018-11-11 23:00 流星小子 阅读(199) 评论(0) 推荐(0) 编辑
摘要:Window7环境下安装Scrapy Scrapy在CPython(默认Python实现)和PyPy(从PyPy 5.9开始)下运行Python 2.7和Python 3.4或更高版本。 如果您使用的是Anaconda或Miniconda,您可以从conda- forge通道安装该软件包,该软件包含 阅读全文
posted @ 2018-11-11 22:31 流星小子 阅读(237) 评论(0) 推荐(0) 编辑
摘要:二分查找法实战 def binary_search(datasets, find_in): mid = int(len(datasets)/2) if(mid>0): if(find_in>datasets[mid]): binary_search(datasets[mid:],find_in) elif(find_in<d... 阅读全文
posted @ 2018-11-11 22:13 流星小子 阅读(227) 评论(0) 推荐(0) 编辑
摘要:sql server中变量要先申明后赋值: 局部变量用一个@标识,全局变量用两个@(常用的全局变量一般都是已经定义好的); 申明局部变量语法:declare @变量名 数据类型;例如:declare @num int; 赋值:有两种方法式(@num为变量名,value为值) set @num=val 阅读全文
posted @ 2018-11-09 11:28 流星小子 阅读(1617) 评论(0) 推荐(0) 编辑
摘要:摘要: 1.项目描述 2.项目总结:本项目我作为项目经理,从以下几个过程对项目的范围进行管理:在需求分析阶段要求项目组成员细致分析需求 并且逐条和相关人员确认项目过程中没有发生因为需求理解有误而造成的项目计划调整。 在项目中制定了详细的WBS(工作分解结构),工作包分解到每人每天的工作量,通过WBS 阅读全文
posted @ 2018-11-08 17:18 流星小子 阅读(3306) 评论(0) 推荐(0) 编辑
摘要:摘要: 2017年,我公司中标一个开发XXXXX项目,我在此项目中担任项目经理一职,服务领导项目组进行项目实施及监控工作。 由于项目地域广,用户众多,不确定因素众多,因此充分做好风险管理,有效规避,减轻项目中可能出现的风险,成为项目成功的关键因素。在本文中,我根据风险管理相关理论,主要从指定风险管理 阅读全文
posted @ 2018-11-08 14:30 流星小子 阅读(816) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2018/11/7 14:50 # @Author : gylhaut # @Site : "http://www.cnblogs.com/gylhaut/" # @File : KNNAlgorithm.py # @Software: PyCharm # cod... 阅读全文
posted @ 2018-11-07 15:51 流星小子 阅读(511) 评论(0) 推荐(0) 编辑
摘要:Chrome 快捷键使用 Crtl+Shift+T 撤销快捷键 Alt+F 金山词霸悬浮 阅读全文
posted @ 2018-11-02 10:32 流星小子 阅读(150) 评论(0) 推荐(0) 编辑
摘要:1. WOE(weight of evidence, 证据权重) WOE是一种衡量正常样本( Good)和违约样本( Bad)分布的差异方法 WOE=ln(Distr Good/Distr Bad)例如 :在上表 在上表 中年龄在 年龄在 23-26这组 样本 的 WOE值为: ln(0.13610 阅读全文
posted @ 2018-11-01 20:20 流星小子 阅读(4059) 评论(0) 推荐(0) 编辑
摘要:解决方法有两种 1. 第一种设置环境变量法 on windows the line is : SET PYTHONPATH=%cd%;%cd%\Test NOT SET PYTHONPATH=%cd%:%cd%\Test You can test with : echo %PYTHONPATH% o 阅读全文
posted @ 2018-11-01 16:19 流星小子 阅读(4583) 评论(0) 推荐(0) 编辑
摘要:基于python 信用卡评分系统 的数据分析 基于python 信用卡评分系统 的数据分析 基于python 信用卡评分系统 的数据分析 基于python 信用卡评分系统 的数据分析 import pandas as pd import matplotlib.pyplot as plt #导入图像库 阅读全文
posted @ 2018-11-01 09:39 流星小子 阅读(1896) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示