
Data Science Bootcamp
CHNMSCS
分享是一种快乐,
脚踏实地,仰望星空
展开
-
用Python做TensorFlow
import numpy as npimport matplotlib.pyplot as pltimport tensorflow as tfobservations = 1000xs = np.random.uniform(low=-10, high=10, size=(observations,1))zs = np.random.uniform(-10,10,(observati...原创 2019-12-30 14:39:19 · 236 阅读 · 0 评论 -
用Python 来建立Neural Network
# import the relevant librariesimport numpy as np # mathematical operationimport matplotlib.pyplot as plt # nice graphsfrom mpl_toolkits.mplot3d import Axes3D # Nice 3D graphs# Generate rand...原创 2019-12-30 12:46:12 · 898 阅读 · 0 评论 -
Deep learning - Introduction to Neural Networks
Creating a machine learning algorithm means building a model that output correct information.原创 2019-12-29 17:55:19 · 597 阅读 · 0 评论 -
用Python 来做 Market Segmentation with Cluster Analysis
import numpy as npimport pandas as pdimport matplotlib.pyplot as pltimport seaborn as snssns.set()from sklearn.cluster import KMeansdata = pd.read_csv('3.12. Example.csv')print(data)代码紧跟上面...原创 2019-12-29 10:09:24 · 595 阅读 · 0 评论 -
用Python 来做Cluster Analysis
""" 1. Cluster analysis is a multivariate statistical technique that groups observations on the basis some of their features or variables they are described by. 2. Observations in a data set can be ...原创 2019-12-29 09:19:25 · 1091 阅读 · 0 评论 -
用Python 来做Logistic Regression
import numpy as npimport pandas as pdimport statsmodels.api as smimport matplotlib.pyplot as pltimport seaborn as snssns.set()raw_data = pd.read_csv('2.01. Admittance.csv')print(raw_data)prin...原创 2019-12-29 06:07:23 · 517 阅读 · 0 评论 -
用Python 来做Linear Regression
直接就进入代码环节了哈!由于我在pycharm 上写的代码有点长,展示的结果有点很多。为了给各位看的清楚,就分段进行展示程序和结果这是头文件需要的库import numpy as npimport pandas as pdimport statsmodels.api as smimport matplotlib.pyplot as pltfrom sklearn.linear_mode...原创 2019-12-27 15:18:20 · 922 阅读 · 0 评论 -
Advanced Statistical Methods - Linear regression
The advantages of Scikit - learn:[1] Incredible documentation[2] Variety (Regression, Classification, Clustering, Support vector machines, Dimensionality reduction).Numerical stability: the basic ...原创 2019-12-27 08:33:42 · 306 阅读 · 0 评论 -
用Python 来画Seaborn 图
之前已经用了python来画 matplotlib 的默认风格图形,现在还是用之前的表格来画Seaborn. 还是老规矩,直接上代码import pandas as pdimport matplotlib.pyplot as pltimport seaborn as snssns.set() #overrides the style and the graphics of all ma...原创 2019-12-26 12:20:41 · 374 阅读 · 0 评论 -
用python来做regression 图
我们直接上代码了,之前已经介绍了如何导入表格了,现在就用表格中的数据来进行画图:还是用之前的表格import pandas as pdimport matplotlib.pyplot as pltdata = pd.read_csv('1.01. Simple linear regression.csv')y = data('GPA')x = data('SAT')plt.sca...原创 2019-12-26 10:14:47 · 994 阅读 · 0 评论 -
用Python导入表格
刚刚博主学到如何用Python来导入表格,现在就将过程写给大家看看。我是用了Pycharm 的2019.3.1 版本的,这还得需要下载Python 3.7 Interpreter 才能运行。这个可是弄了很久才弄好的。不说那么多了,直接上代码:import pandas as pddata = pd.read_csv('1.01. Simple linear regression.csv')...原创 2019-12-26 09:58:04 · 4825 阅读 · 1 评论 -
Statistics -- Hypothesis Testing
There are four steps in data driven decision making. First: Formulate a hypothesis, Second: Find the right test for your hypothesis, Third: Execute the test, Fourth: Make a decision based on the resu...原创 2019-12-23 06:46:02 · 607 阅读 · 0 评论 -
Statistics -- Inferential Statistics: Confidence Intervals
Confidence interval is much more accurate representation of reality.The level of confidence. It is denoted by one minus Alpha and is called the confidence level of the interval. Alpha is a value bet...原创 2019-12-21 17:07:55 · 370 阅读 · 0 评论 -
Statistics -- Inferential Statistics Fundamentals
Inferential Statistics refers to methods that rely on probability theory and distributions in particular to predict population values based on sample data.In statistics when we use the term distribu...原创 2019-12-21 16:41:56 · 598 阅读 · 0 评论 -
Statistics
Population: It is the collection of all items of interest. Denote with an upper case n the numbers we have obtained when using a population are called parameters.Sample: It is a subset of the popula...原创 2019-12-18 17:35:13 · 1425 阅读 · 0 评论 -
Probability in Other fields
For starts in finance we are often trying to predict the values and prices of uncertain future events and easy to understand event is option pricing before we proceed we need to understand what an op...原创 2019-12-18 14:32:29 · 308 阅读 · 0 评论 -
Continuous Distribution
Continuous Distribution: Sample space is infinite, and We cannot record the frequency of each distinct value. Thus we can no longer represent these distributions with a table what we can do is repres...原创 2019-12-18 03:26:15 · 459 阅读 · 0 评论 -
Discrete Distribution
Bernoulli distribution: any event where we only have one trial and two possible outcomes follows such a distribution.The graph of a Bernoulli distribution is simple. It consists of two bars one for ...原创 2019-12-17 09:32:06 · 523 阅读 · 0 评论 -
Probability -- 01
Additive law: The probability of the union of two sets is equal to the sum of the individual probabilities of each event minus the probabilityy of their intersection.Bayes’ Rule: The condition proba...原创 2019-12-16 17:50:44 · 308 阅读 · 0 评论 -
Probability
Combinatorics deals with combinations of objects from a specific finite set. These restrictions can be in terms of repetition, orther, or a different criterion.Use Permutations, Variations and Combi...原创 2019-12-16 12:13:35 · 191 阅读 · 0 评论 -
The Basic probability Formula
Probability is the chance of something happening. A more academic definition for this would be likelihood of an event occuring. The word event has a specific meaning when talking about probabilities....原创 2019-12-14 23:46:27 · 368 阅读 · 0 评论 -
Necessary Programming Languages and Software Used in Data Science
Programming language enables you to devise programs that can execute specific operations. Moreover you can reuse these programs whenever you need to execute the same action.Python and R language are...原创 2019-12-14 15:49:38 · 629 阅读 · 2 评论 -
Machine Learning (ML) Techniques
What situation is it preferable to make predictions using machine learning rather than traditional statistical methods.Machine learning: The core to create an algorithm which a computer then uses to...原创 2019-12-14 07:25:30 · 729 阅读 · 0 评论 -
Techniques for working with Traditional Methods
You have prepared the BMI reports and dashboards and the executives have extracted insights about the business what do you do with the information you use it to predict some futuer values as accurate...原创 2019-12-13 18:03:19 · 266 阅读 · 0 评论 -
Business Intelligence (BI) Techniques
Business intelligence (BI) analysis need to use data skills and business knowledge & intuition. A good business intelligence analyst does not look at a problem from only one angle. The job of a b...原创 2019-12-13 08:00:11 · 439 阅读 · 0 评论 -
Techniques for working with Big Data
In the Big data, it can be text data, digital image data, digital video data, digital audio data and more. Consequently with a larger amount of data types comes a wider range of data cleansing method...原创 2019-12-13 05:47:56 · 231 阅读 · 0 评论 -
Techniques for working with Traditional Data
Raw data is called it wrong facts or primary data is data which cannot be analyzed straight away. It is untouched data you have accumulated and stored on the server. The gathering of raw data is refe...原创 2019-12-13 05:13:45 · 330 阅读 · 0 评论 -
Applying Traditional Data, Big Data, BI, Traditional Data Science and ML
Data: It is defined as information stored in a digital format, which can then be used as a base for performing analyses and decision making.Traditional Data: Data in the form of tables containing nu...原创 2019-12-12 18:51:51 · 454 阅读 · 0 评论 -
Continuing with BI, ML and AI
Business Intelligence (BI): the process of analysing and reporting historical business data after reports and dashboards have been prepared. They can be used to make an informed strategic and technic...原创 2019-12-12 18:08:07 · 355 阅读 · 0 评论 -
Introduction of business analytics, data analytics, and data science
Business world: Business Cose, Qualitative Analytics, Preliminary Data Report, Reporting with Visuals, Creating Dashboards and Sales Forecasting.Some business activities are data-driven while others ...原创 2019-12-01 23:20:49 · 1220 阅读 · 0 评论 -
What is the difference between Analysis and Analytics.
Analysis:Consider you have a huge data set containing data of various types. Instead of tackling the entire dataset and running the risk of becoming overwhelmed you separated into easier to digest ch...原创 2019-12-01 22:04:36 · 1217 阅读 · 0 评论 -
Data Science and Business Buzzwords: Why are there so many?
What’s so important about data in this day. Age maintaining a healthy business goes hand-in-hand alongside working with data whether you understand it or not. There is no denying that data is that the...原创 2019-12-01 15:35:48 · 324 阅读 · 0 评论