Data packages for current and future me

tl; dr

I show why it is worthwile to put my Chinese-related datasets in packages and how I went about it.

Introduction

I don’t know if I’m very late to the party, but in this final sprint towards a finished dissertation, I keep finding myself juggling multiple datasets when using them in R. This usually is paired with a readr::read_csv() or related functions, but the drawback is that I have to go find where I actually put that dataset on my computer. This causes me some friction (even though the location didn’t change), but what’s worse is that that’s actually not reproducible. In other words, the code I wrote that way is not portable.

First trial: CHIDEOD

At some point during this year, I suddenly remembered some blog posts I had read like a year ago, on how to turn your dataset into an R package*. My first experiment was the database I’m making myself, the **Chinese Ideophone Database** (CHIDEOD; available here). Somewhere in March/April this year I managed to turn that into a data package, and have done so with subesquent versions of CHIDEOD. It provided me with the functionality of just running a library(CHIDEOD) and BAM!, there was the chideod object to my disposal.

*More precisely the blog posts I read were:

Other datasets

Then somewhere in the beginning of this semester something clicked: I would take the other datasets I’m often working with, and find a way to turn them into data packages as well. In concreto, those datasets are

Now, I need to mention that for my own purposes, I have made some alterations to all of these datasets.

  • For Baxter & Sagart’s dataset, I’ve added things like an IPA version of the Middle Chinese (thanks to sinopy), a simplified column next to the traditional character one etc.
  • For the Chinese Lexical Database, which is based on simplified characters, I found it useful to still add a traditional column and pull the characters of each word into traditional characters as well. Most of the psycholinguistic measures (entropy, reaction time etc.) are only valid for the simplified ones, but there is still a wealth of information that is useful for the traditional ones.
  • I’ve tidied up the Hànyǔ dà cídiǎn 漢語大詞典, by splitting all the meanings that were numbered per lemma.
  • I was lucky to access an institutional version of the ASBC 4.0 but it was unfortunately coded in the programming-language-neutral XML, which is not fun to use (“XML IS HELL”). So I spent like a day turning it into nicely structured .Rds files. Not language-neutral (R-friendly) but easier to use for me. I also changed the spacing of the “Chines big space” (the one that is one square long and tall) to normal spacing; on top of the ugly tagging method of using brackets, e.g. 我(PRON), to less visually cluttered underscores, i.e. 我_PRON.

Storing them somewhere

In an ideal scenario I would do this step first, but I actually did the package stuff (see next section) first. In this step I uploaded my datasets to a (private) repository. Since my experience with the Open Science Framework OSF had been positive, I decided to dump my datasets there. This has the advantages that I can 1) version them, 2) access them from different devices (in case of computer crashes or changes etc.). So now I need to find out how to shareable these new datasets are. I’m pretty sure I can’t just make public the dictionary (even though I have transformed it), or the corpus – although I think that these projects should be freely available. The dataset by Baxter & Sagart and the Chinese Lexical Database should be a bit more available, but I will contact the authors shortly about these issues and when they are available, set the packages repositories on gitub to public, so you can all enjoy them.

How to make a datapackage

The main tool I used to create these datapackages is the DataPackageR package. This post on the ROpenSci blog explains pretty well the why and how, and I actually just used the “copy + adapt no jutsu” to make my packages. It does warrant a basic know-how of R(studio) and github, so if you need to brush up on those skills, I can recommend Jenny Bryan’s Happy Git and GitHub for the useR, a.k.a. Happy git with R.

So that’s what I did with most of the packages. To see the one that is already public – my CHIDEOD – you can go to this page.

And to download it, you should be able to do these functions

library(devtools)
install_github("simazhi/chinese_ideophone_database/CHIDEOD")

If you find any problems with this functionality, please contact me!

Challenges

I don’t know how to make the data package for the large-ish dataset of the Hànyǔ dà cídiǎn 漢語大詞典 (some 200 MB), since it is bigger than Github’s size allowance. I just found this blog on attaching larger datasets, so I’m gonna check that out at some point. Also the ASBC corpus, I have just stored in the repository, it’s probably safer there.

Another challenge is naming the packages. I’ve settled for:

  • CHIDEOD
  • CLD
  • baxteRsagaRt
  • (future: HYDCD)

Conclusion

After updating to a new version of R (I read that R 4.0 is around the corner), and / or updating to a newer version of Rstudio, the dance of reinstalling previously installed packages will befall us once again. But knowing that this includes (re)installing these datasets I made and that I often use, gives me some solace, because I (will?) have looked ahead to that moment and can just do a simple install_github and a library(PACKAGE) and badabing badaboom: I can run my scripts, in the now and in the future.

If the aforementioned parties are okay with it, I will make my github data packages public and share them in this post, so keep an eye out for that yo!

Postdoctoral assistant (Linguistics)

My research interests include ideophones, (Premodern) Chinese, historical linguistics, Cognitive Linguistics, and lexical semantics.

comments powered by Disqus

Related