王亮博 (亮亮)
Shared under CC 4.0 BY license
Esc to overview
← → to navigate
This part is heavily adapted from Johnson's talk in DSP.
What can you find from this helicop for car chasing video?
The wave pattern turns out to be some data coding, with most part repeating. Location? Video timestamp? Camera direction?
From http://www.windytan.com/2014/02/mystery-signal-from-helicopter.html
Map full trace on map. Later decodes into exact GPS locations
From http://www.windytan.com/2014/02/mystery-signal-from-helicopter.html
Anyway, that is pretty much how to conduct a data analysis
From http://drewconway.com/zia/2013/3/26/the-data-science-venn-diagram
We then dive into each following subjects one by one.
R? Python? PHP? C/Java? Javascript? shown by examples
And best place to learn data science as well
Check out http://g0v.tw/
Using Hough Transform in OpenCV
Divide the table by separate cells
From 新聞打卡地圖,蘋果互動新聞圖表
Statistics is about
Essentially, all models are wrong, but some are useful.
model.full <- lm(Speed ~ HP_10 * Time, data=df_sim)
model.hi <- update(
model.full,
. ~ . + HP_10 : I(Time^2), # try `HP_10 * I(Time^2)`
data=df_sim
)
anova(model.full, model.hi)
summary(model.hi)
anova(...)
# Analysis of Variance Table
#
# Model 1: Speed ~ HP_10 * Time
# Model 2: Speed ~ HP_10 + Time + HP_10:Time + HP_10:I(Time^2)
# Res.Df RSS Df Sum of Sq F Pr(>F)
# 1 474 269.43
# 2 472 242.26 2 27.175 26.473 1.269e-11 ***
summary(...)
# Coefficients:
# Estimate Std. Error t value Pr(>|t|)
# (Intercept) 10.09593 0.10485 96.289 < 2e-16 ***
# HP_101 3.87381 0.15231 25.433 < 2e-16 ***
# Time 0.06238 0.14318 0.436 0.663
# HP_101:Time -0.94099 0.20679 -4.551 6.81e-06 ***
# HP_100:I(Time^2) -0.18324 0.03914 -4.681 3.73e-06 ***
# HP_101:I(Time^2) 0.23082 0.04143 5.571 4.27e-08 ***
linear model
quadratic model
... I Think TED actually stands for: middlebrow megachurch infotainment. The key rhetorical device for TED talks is a combination of epiphany and personal testimony (an “epiphimony” if you like ) through which the speaker shares a personal journey of insight and realization, its triumphs and tribulations.
What is it that the TED audience hopes to get from this? A vicarious insight, a fleeting moment of wonder, an inkling that maybe it’s all going to work out after all? A spiritual buzz?...
... WAIT! Are you sure that's the article about?
From http://www.naturalnews.com/042112_TED_conferences_pseudoscience_GMO.html
With today's method, we can reveal more details, provide different view points, and can be fancier :)
From http://rappers.mdaniels.com.s3-website-us-east-1.amazonaws.com/
Web and browsers dominates our front-end world.
Almost every PC and mobile have a modern browser today.
← SVG / HTML5 Canvas
Scalable Vector Graphics (SVG) is an XML markup language for describing two-dimensional vector graphics.
Big data is like teenage sex: everyone talks about it, nobody really knows how to do it, everyone thinks everyone else is doing it, so everyone claims they are doing it ...