自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(34)
  • 收藏
  • 关注

原创 用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 212

原创 用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 856

原创 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 564

原创 用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 545

原创 用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 1039

原创 用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 487

原创 用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 875

原创 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 281

原创 用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 345

原创 用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 954

原创 用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 4721 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 573

原创 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 343

原创 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 567

原创 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 1324

原创 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 289

原创 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 423

原创 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 490

原创 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 279

原创 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 162

原创 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 337

原创 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 594 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 681

原创 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 240

原创 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 409

原创 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 209

原创 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 301

原创 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 417

原创 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 334

原创 Vim Quick Reference (2)

* 下面的操作都是在Linux环境下运行的 * 1. To navigate in the document to prepare to edit here are a few of the choice available: a. Go to the first line: 1G b. Go to the first line:

2019-12-12 15:47:44 125

原创 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 1170

原创 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 1134

原创 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 297

原创 Power of Four - 判断这个数字是不是被4整除

在Leetcode上看到一道题目:Given an integer (singed 32 bits), write a function to check whether it is a power of 4.Example 1:Input: 16Output: true.Example 2:Input: 5Output: false.其实这道题,博主之前有做过类似的,就是判断是不...

2019-12-01 12:45:49 240

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除