понеділок, 13 листопада 2017 р.

Advices

https://medium.com/@rchang/advice-for-new-and-junior-data-scientists-2ab02396cf5b
https://towardsdatascience.com/top-6-errors-novice-machine-learning-engineers-make-e82273d394db
https://www.kaggle.com/surveys/2017

Cool Blogs

https://www.r-bloggers.com/recent-r-data-packages/

Mapping Learning

https://medium.com/data-analytics-and-coding/mapping-learner-experience-with-a-sphere-of-possibilities-ee9ad4c2bedd

Online Magazines

https://www.kdnuggets.com/2017/10/6-books-every-data-scientist-should-keep-nearby.html

четвер, 5 січня 2017 р.

Набор данных во временной ряд

For bi-monthly points of data:
b12=ts(m1[,15],start=2013,end=c(2016,6),frequency=6)

For monthly points of data:
b6=ts(dv,start=2013,end=c(2016,12),frequency=12)

For unfinished last year:
b5=ts(m1[,15],start=2013,end=c(2016,5),frequency=6)

Find trend and variations:
bstl=stl(b5,s.window="periodic")
plot(bstl)