Looking back at 2018 and plans for 2019

[This article was first published on R on msperlin, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

At the end of every year I plan to write about the highlight of the current year and set plans for the future. First, let’s talk about my work in 2018.

Highlights of 2018

Research wise, my scientometrics paper Is predatory publishing a real threat? Evidence from a large database study was featured in many news outlets. Its altmetric page is doing great, with over 1100 downloads and featured at top 5% of all research output measured by altmetric. This is, by far, the most impactful research piece I ever wrote. Its rewarding to see my work featured in the local and international media.

This year I also released the first version of GetDFPData, a R package for accessing a large database of financial information from B3, the Brazilian exchange. I’m glad to report that many people are using it for their own research. I can see the number of visits in the web interface and the frequent emails I get about the package. The feedback from other researchers has been great but, off course, there are always ways to improve the code. I’ve been constantly developing it over time.

The GetDFPData package also had an impact in my own research. I’ve always been biased towards the topic of capital markets and now I’m doing research in corporate finance, mostly due to the new access to a large database of corporate events. Currently, I have three paper initiatives in analyzing the effect of boards formation towards financial performance of Brazilian companies. These will likely probably be published in 2019 or 2020.

In late 2018 I started my YouTube series padfeR, with video tutorials about using R for Finance and Economics. The idea is to have a greater impact and help those that are starting to use R. So far, all videos are in Portuguese but I do have plans for doing it in english in the future. Hopefully I’ll find some time in 2019 to start it.

Overall, 2018 was a great year. I’m always thankful for having the opportunity of working in a job that I love and look forward to work (almost) every single day.

My blog posts in 2018

In november I changed the technology behind my blog from Jekyll to Hugo. Can’t stress enough how much I’m liking the Academic template built with blogdown and hosted in my own server. It is far easier to write posts and maintain the website.

First, let’s see how many posts I have so far.

my.blog.folder <- '~/Dropbox/11-My Website/www.msperlin.com-blog/content/post/'
post.files <- list.files(path = my.blog.folder, pattern = '.Rmd')

post.files
##  [1] "2017-01-01-First-post.Rmd"                 
##  [2] "2017-01-02-GetHFData.Rmd"                  
##  [3] "2017-01-15-CalculatingBetas.Rmd"           
##  [4] "2017-01-30-Exams-with-dynamic-content.Rmd" 
##  [5] "2017-02-13-R-and-Tennis-Players.Rmd"       
##  [6] "2017-02-16-Writing-a-book.Rmd"             
##  [7] "2017-03-05-Prophet-and_stock-market.Rmd"   
##  [8] "2017-05-04-pafdR-is-out.Rmd"               
##  [9] "2017-05-09-Studying-Pkg-Names.Rmd"         
## [10] "2017-05-15-R-Finance.Rmd"                  
## [11] "2017-08-12-Switching-to-Linux.Rmd"         
## [12] "2017-09-14-Brazilian-Yield-Curve.Rmd"      
## [13] "2017-12-06-Package-GetDFPData.Rmd"         
## [14] "2017-12-13-Serving-shiny-apps-internet.Rmd"
## [15] "2017-12-30-Looking-Back-2017.Rmd"          
## [16] "2018-01-22-Update-BatchGetSymbols.Rmd"     
## [17] "2018-03-16-Writing_Papers_About_Pkgs.Rmd"  
## [18] "2018-04-22-predatory-scientometrics.Rmd"   
## [19] "2018-05-12-Investing-Long-Run.Rmd"         
## [20] "2018-06-12-padfR-ed2.Rmd"                  
## [21] "2018-06-29-BenchmarkingSSD.Rmd"            
## [22] "2018-10-10-BatchGetSymbols-NewVersion.Rmd" 
## [23] "2018-10-11-Update-GetLattesData.Rmd"       
## [24] "2018-10-13-NewPackage-PkgsFromFiles.Rmd"   
## [25] "2018-10-19-R-and-loops.Rmd"                
## [26] "2018-10-20-Linux-and-R.Rmd"                
## [27] "2018-11-03-NewBlog.Rmd"                    
## [28] "2018-11-03-RstudioTricks.Rmd"              
## [29] "2019-01-08-Looking-Back-2018.Rmd"

The blog started in january 2017 and, over time, I wrote 29 posts. That feels alright. I’m not felling forced to write and I do it whenever I fell like I have something to share.

Let’s get more information from the .Rmd files. I’ll write function read_blog_files and use it for all post files.

read_blog_files <- function(f.in) {
  require(tidyverse)
  my.front.matter <- rmarkdown::yaml_front_matter(f.in)

  df.out <- data_frame(post.title = my.front.matter$title,
                       post.date = lubridate::ymd(my.front.matter$date),
                       post.month = as.Date(format(post.date, '%Y-%m-01')),
                       tags = paste0(my.front.matter$tags, collapse = ';'),
                       categories = paste0(my.front.matter$categories, collapse = ';'),
                       content = paste0(read_lines(f.in), collapse = ' '))

  return(df.out)
}

df.posts <- dplyr::bind_rows(purrr::map(post.files, read_blog_files))
## Loading required package: tidyverse
## ── Attaching packages ────────────────────────────────── tidyverse 1.2.1 ──
## ✔ ggplot2 3.1.0     ✔ purrr   0.2.5
## ✔ tibble  2.0.0     ✔ dplyr   0.7.8
## ✔ tidyr   0.8.2     ✔ stringr 1.3.1
## ✔ readr   1.3.1     ✔ forcats 0.3.0
## ── Conflicts ───────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
## Warning: `data_frame()` is deprecated, use `tibble()`.
## This warning is displayed once per session.
glimpse(df.posts)
## Observations: 29
## Variables: 6
## $ post.title <chr> "My first post!", "Using R to download high frequency…
## $ post.date  <date> 2017-01-01, 2017-01-02, 2017-01-15, 2017-01-30, 2017…
## $ post.month <date> 2017-01-01, 2017-01-01, 2017-01-01, 2017-01-01, 2017…
## $ tags       <chr> "about me", "R;GetHFData;B3;market microstructure;hig…
## $ categories <chr> "about me", "R;GetHFData;B3;market microstructure;hig…
## $ content    <chr> "--- title: \"My first post!\" subtitle: \"A little b…

First, we’ll look at the frequency of posts over time.

df.posts.2018 <- df.posts %>%
  filter(post.date > as.Date('2018-01-01'))

print( ggplot(df.posts.2018, aes(x = post.month)) + geom_histogram(stat='count') +
         theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
         labs(y = 'Number of posts', x = ''))
## Warning: Ignoring unknown parameters: binwidth, bins, pad

Seems to average about once a month. The blank spaces show that I did not write for a couple of months.

Checking 2018’s plans

In the end of 2017 my plans for 2018 were:

Work on the second edition of the portuguese book.

Done! I’m glad to report that the second edition of the book was published in June 2018. It was great to review the book and add several new chapters and sections. As I mentioned in the publication post, this is the largest and longest project I ever worked and it is very satisfying to see it develop over time. Even more satisfying is to receive positive feedback of readers that are reading and using the book to learn to code in R! Many teachers in Economics and Business are also starting to use it in the classroom.

The book will continue to be update every couple of years. One of the greatest things about R, among many others, is that the language is continually evolving and changing. I have no doubt that there will always be new material to write about.

Start a portal for financial data in Brazil

Unfortunately this project did not launch. I wrote a couple of R scripts for fetching and saving data automatically in my server but it never became a webpage. I started to work on other projects and the website was not a priority.

Plans for 2019

New edition of “Processing and Analyzing Financial Data with R”

The international version of my book pafdR was published in january 2017. I fell its time to update it with the new chapters and structure from the second edition in portuguese. There are many improvements to the book, with an emphasis in the tidyverse universe.

Work on my new book: “Investing For the Long Term” (provisory title)

There is a huge deficit of financial knowledge in Brazil, specially in saving and investing. I’ve been a long term investor for most of my career as an academic and I fell there is a lot I can contribute to the topic of financial education by bringing data science into the problem of investing.

The book will be a introduction to investments for the common person in Brazil, with a heavy data-based approach. It will not be about trading strategies or anything related to short term trading. The idea is to bring data analysis for the common long term investor, showing how the financial market works and how one can build passive income by constantly buying good financial contracts.

I have no clue if it will be published em 2019. Unlike my previous book, I’m taking my time to write this one. No rush and no deadlines :).

Solidify my research agenda in Board Composition

As I mentioned before, my research agenda has shifted from capital markets to board compositions. This is a very interesting topic with many implications for listed companies. I’m leaning a lot from researching into these topics.

Currently, I have four initiatives with different co-authors:

  • Gender and board composition
  • Politics and board composition
  • Professors in the Board of Companies
  • Board description of Brazilian Companies

Hoepfully, these will be published in 2019 or 2020.

To leave a comment for the author, please follow the link and comment on their blog: R on msperlin.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)