01 2021 档案

摘要:Security and Cryptography in Python - Attack on Caesar Cipher Crypto Rule #1(Kerckhoffs' Principle) Eve should not be able to break the ciphers even w 阅读全文
posted @ 2021-01-31 15:02 晨风_Eric 阅读(57) 评论(0) 推荐(0) 编辑
摘要:Security and Cryptography in Python - Caesar Cipher Decryption Coding in Python def generate_key(n): letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" key = {} c 阅读全文
posted @ 2021-01-31 14:37 晨风_Eric 阅读(41) 评论(0) 推荐(0) 编辑
摘要:Security and Cryptography in Python - Caesar Cipher Coding in Python def generate_key(n): letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" key = {} cnt = 0 for 阅读全文
posted @ 2021-01-31 13:39 晨风_Eric 阅读(45) 评论(0) 推荐(0) 编辑
摘要:Python for Data Science - Next Steps Network analysis using Python Deep learning, reinforcement learning, semi-supervised learning Start practicing Co 阅读全文
posted @ 2021-01-30 17:12 晨风_Eric 阅读(47) 评论(0) 推荐(0) 编辑
摘要:Chapter 6 - Other Popular Machine Learning Methods Segment 6 - Ensemble methods with random forest Ensemble Models Ensemble models are machine learnin 阅读全文
posted @ 2021-01-30 17:01 晨风_Eric 阅读(73) 评论(0) 推荐(0) 编辑
摘要:Chapter 6 - Other Popular Machine Learning Methods Segment 5 - Naive Bayes Classifiers Naive Bayes Classifiers Naive Bayes is a machine learning metho 阅读全文
posted @ 2021-01-30 16:11 晨风_Eric 阅读(68) 评论(0) 推荐(0) 编辑
摘要:Python for Data Science - Decision Trees With CART Decision Tree A decision tree is a decision-support tool that models decisions in order to predict 阅读全文
posted @ 2021-01-29 21:38 晨风_Eric 阅读(264) 评论(0) 推荐(0) 编辑
摘要:Chapter 6 - Other Popular Machine Learning Models Models Segment 3 - Instance-based learning w/ k-Nearest Neighbor K-Nearest Neighbor Classification A 阅读全文
posted @ 2021-01-26 20:41 晨风_Eric 阅读(80) 评论(0) 推荐(0) 编辑
摘要:Chapter 6 - Other Popular Machine Learning Methods Segment 2 - A neural network with a Perceptron Perceptron A perceptron is a neural network with jus 阅读全文
posted @ 2021-01-25 20:48 晨风_Eric 阅读(88) 评论(0) 推荐(0) 编辑
摘要:Chapter 6 - Other Popular Machine Learning Methods Segment 1 - Association Rule Mining Using Apriori Algorithm Association Rule Mining Association rul 阅读全文
posted @ 2021-01-24 18:47 晨风_Eric 阅读(284) 评论(0) 推荐(0) 编辑
摘要:Chapter 5 - Dimensionality Reduction Methods Segment 2 - Principal component analysis (PCA) Singular Value Decomposition A linear algebra method that 阅读全文
posted @ 2021-01-24 15:51 晨风_Eric 阅读(130) 评论(0) 推荐(0) 编辑
摘要:Chapter 5 - Dimensionality Reduction Methods Segment 1 - Explanatory factor analysis Factor Analysis A method that explores a data set in order to fin 阅读全文
posted @ 2021-01-24 15:21 晨风_Eric 阅读(117) 评论(0) 推荐(0) 编辑
摘要:Chapter 4 - Clustering Models Segment 3 - DBSCan clustering to identify outliers DBSCAN for Outlier Detection Unsupervised method that clusters core s 阅读全文
posted @ 2021-01-24 14:56 晨风_Eric 阅读(105) 评论(0) 推荐(0) 编辑
摘要:Chapter 4 - Clustering Models Segment 2 - Hierarchical methods Hierarchical Clustering Hierarchical clustering methods predict subgroups within data b 阅读全文
posted @ 2021-01-24 09:09 晨风_Eric 阅读(104) 评论(0) 推荐(0) 编辑
摘要:Chapter 4 - Clustering Models Segment 1 - K-means method Clustering and Classification Algorithms K-Means clustering: unsupervised clustering algorith 阅读全文
posted @ 2021-01-23 21:28 晨风_Eric 阅读(105) 评论(0) 推荐(0) 编辑
摘要:Chapter 3 - Regression Models Segment 3 - Logistic regression Logistic Regression Logistic regression is a simple machine learning method you can use 阅读全文
posted @ 2021-01-23 20:02 晨风_Eric 阅读(125) 评论(0) 推荐(0) 编辑
摘要:Chapter 3 - Regression Models Segment 2 - Multiple linear regression import numpy as np import pandas as pd import matplotlib.pyplot as plt from pylab 阅读全文
posted @ 2021-01-23 15:47 晨风_Eric 阅读(85) 评论(0) 推荐(0) 编辑
摘要:Chapter 3 - Regressoin Models Segment 1 - Simple linear regression Linear Regression Linear regression is a statistical machine learning method you ca 阅读全文
posted @ 2021-01-23 15:33 晨风_Eric 阅读(79) 评论(0) 推荐(0) 编辑
摘要:Python for Machine Learning Python for Data Visualization Libraries Matplotlib Seaborn ggplot GraphX Plotly Functions Exploratory data analysis Data s 阅读全文
posted @ 2021-01-23 15:12 晨风_Eric 阅读(90) 评论(0) 推荐(0) 编辑
摘要:Chapter 7 - Collaborative Analytics with Plotly Segment 2 - Creating statistical charts Setting up to use Plotly within Jupyter import numpy as np imp 阅读全文
posted @ 2021-01-23 12:29 晨风_Eric 阅读(114) 评论(0) 推荐(0) 编辑
摘要:Chapter 7 - Collaborative Analytics with Plotly Segment 1 - Creating basic charts Setting up to use Plotly within Jupyter pip install --default-timeou 阅读全文
posted @ 2021-01-23 07:41 晨风_Eric 阅读(157) 评论(0) 推荐(0) 编辑
摘要:Chapter 6 - Data Sourcing via Web Segment 5 - Introduction to NLP import nltk text = "On Wednesday, the Association for Computing Machinery, the world 阅读全文
posted @ 2021-01-17 20:44 晨风_Eric 阅读(127) 评论(0) 推荐(0) 编辑
摘要:Chapter 6 - Data Sourcing via Web Segment 4 - Web scraping from bs4 import BeautifulSoup import urllib.request from IPython.display import HTML import 阅读全文
posted @ 2021-01-16 18:47 晨风_Eric 阅读(128) 评论(0) 推荐(0) 编辑
摘要:Chapter 6 - Data Sourcing via Web Segment 3 - Data parsing from bs4 import BeautifulSoup import urllib import urllib.request import re with urllib.req 阅读全文
posted @ 2021-01-16 18:28 晨风_Eric 阅读(89) 评论(0) 推荐(0) 编辑
摘要:Chapter 6 - Data Sourcing via Web Part 2 - NavigatableString Objects import sys print(sys.version) 3.7.3 (default, Jul 25 2020, 13:03:44) [GCC 8.3.0] 阅读全文
posted @ 2021-01-16 17:49 晨风_Eric 阅读(93) 评论(0) 推荐(0) 编辑
摘要:Chapter 6 - Data Sourcing via Web Part 1 - Objects in BeautifulSoup import sys print(sys.version) 3.7.3 (default, Jul 25 2020, 13:03:44) [GCC 8.3.0] f 阅读全文
posted @ 2021-01-16 17:29 晨风_Eric 阅读(100) 评论(0) 推荐(0) 编辑
摘要:Chapter 5 - Outlier Analysis Segment 9 - Multivariate analysis for outlier detection import pandas as pd import matplotlib.pyplot as plt from pylab im 阅读全文
posted @ 2021-01-16 16:29 晨风_Eric 阅读(102) 评论(0) 推荐(0) 编辑
摘要:Chapter 5 - Outlier Analysis Segment 8 - Extreme value analysis using univariate methods import numpy as np import pandas as pd import matplotlib.pypl 阅读全文
posted @ 2021-01-16 16:13 晨风_Eric 阅读(140) 评论(0) 推荐(0) 编辑
摘要:Chapter 5 - Basic Math and Statistics Segment 7 - Transforming dataset distributions import numpy as np import pandas as pd import scipy import matplo 阅读全文
posted @ 2021-01-16 14:22 晨风_Eric 阅读(101) 评论(0) 推荐(0) 编辑
摘要:Chapter 5 - Basic Math and Statistics Segment 6 - Delving into non-parametric methods using pandas and scipy import numpy as np import pandas as pd im 阅读全文
posted @ 2021-01-16 11:27 晨风_Eric 阅读(113) 评论(0) 推荐(0) 编辑
摘要:Chapter 5 - Basic Math and Statistics Segment 5 - Starting with parametric methods in pandas and scipy import pandas as pd import numpy as np import m 阅读全文
posted @ 2021-01-16 10:51 晨风_Eric 阅读(83) 评论(0) 推荐(0) 编辑
摘要:Chapter 5 - Basic Math and Statistics Segment 4 - Summarizing categorical data using pandas import numpy as np import pandas as pd The basics address 阅读全文
posted @ 2021-01-16 09:17 晨风_Eric 阅读(93) 评论(0) 推荐(0) 编辑
摘要:Chapter 5 - Basic Math and Statistics Segment 3 - Generating summary statistics using pandas and scipy import numpy as np import pandas as pd from pan 阅读全文
posted @ 2021-01-16 08:40 晨风_Eric 阅读(129) 评论(0) 推荐(0) 编辑
摘要:Chapter 5 - Basic Math and Statistics Segment 2 - Multiplying matrices and basic linear algebra import numpy as np from numpy.random import randn np.s 阅读全文
posted @ 2021-01-10 18:01 晨风_Eric 阅读(94) 评论(0) 推荐(0) 编辑
摘要:Chapter 5 - Basic Math and Statistics Segment 1 - Using NumPy to perform arithmetic operations on data import numpy as np from numpy.random import ran 阅读全文
posted @ 2021-01-09 18:41 晨风_Eric 阅读(90) 评论(0) 推荐(0) 编辑
摘要:Chapter 4 - Practical Data Visualization Segment 6 - Creating statistical data graphics Statistical Plots Allow Viewers To: Identify outliers Visualiz 阅读全文
posted @ 2021-01-07 20:26 晨风_Eric 阅读(940) 评论(0) 推荐(0) 编辑
摘要:Chapter 4 - Practical Data Visualization Segment 5 - Visualizing time series import numpy as np from numpy.random import randn import pandas as pd fro 阅读全文
posted @ 2021-01-06 21:10 晨风_Eric 阅读(71) 评论(0) 推荐(0) 编辑
摘要:Chapter 4 - Practical Data Visualization Segment 4 - Creating labels and annotations import numpy as np import pandas as pd from pandas import Series, 阅读全文
posted @ 2021-01-05 21:29 晨风_Eric 阅读(105) 评论(0) 推荐(0) 编辑
摘要:Chapter 4 - Practical Data Visualization Segment 3 - Plot formatting import numpy as np import pandas as pd from pandas import Series, DataFrame impor 阅读全文
posted @ 2021-01-04 21:12 晨风_Eric 阅读(127) 评论(0) 推荐(0) 编辑
摘要:Chapter 4 - Practical Data Visualization Segment 2 - Defining elements of a plot import numpy as np from numpy.random import randn import pandas as pd 阅读全文
posted @ 2021-01-03 21:21 晨风_Eric 阅读(113) 评论(0) 推荐(0) 编辑
摘要:Chapter 4 - Practical Data Visualization Segment 1 - Creating standard data graphics import numpy as np from numpy.random import randn import pandas a 阅读全文
posted @ 2021-01-03 20:51 晨风_Eric 阅读(92) 评论(0) 推荐(0) 编辑
摘要:Python for Data Science - Data Visualization Three Different Data Visualization Types Data storytelling - for presentations to organizational decision 阅读全文
posted @ 2021-01-03 17:20 晨风_Eric 阅读(101) 评论(0) 推荐(0) 编辑
摘要:Chapter 2 - Data Preparation Basics Segment 5 - Grouping and data aggregation import numpy as np import pandas as pd from pandas import Series, DataFr 阅读全文
posted @ 2021-01-02 16:55 晨风_Eric 阅读(102) 评论(0) 推荐(0) 编辑
摘要:Chapter 2 - Data Preparation Basics Segment 4 - Concatenating and transforming data import numpy as np import pandas as pd from pandas import Series, 阅读全文
posted @ 2021-01-02 16:13 晨风_Eric 阅读(67) 评论(0) 推荐(0) 编辑
摘要:Chapter 2 - Data Preparation Basics Segment 3 - Removing duplicates import numpy as np import pandas as pd from pandas import Series, DataFrame Removi 阅读全文
posted @ 2021-01-02 15:03 晨风_Eric 阅读(65) 评论(0) 推荐(0) 编辑
摘要:Chapter 2 - Data Preparation Basics Segment 2 - Treating missing values import numpy as np import pandas as pd from pandas import Series, DataFrame Fi 阅读全文
posted @ 2021-01-02 14:43 晨风_Eric 阅读(101) 评论(0) 推荐(0) 编辑
摘要:Chapter 2 - Data Preparation Basics Segment 1 - Filtering and selecting data import numpy as np import pandas as pd from pandas import Series,DataFram 阅读全文
posted @ 2021-01-02 14:40 晨风_Eric 阅读(81) 评论(0) 推荐(0) 编辑
摘要:Windows Command Line - Memory Management How to use Systeminfo systeminfo Windows Management Interface(WMI) wmic memorychip Get-WmiObject CIM_PHYSICAL 阅读全文
posted @ 2021-01-02 13:18 晨风_Eric 阅读(78) 评论(0) 推荐(0) 编辑

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