GithubHelp home page GithubHelp logo

obiba-backup-tool's Introduction

ALSPAC data interface

Motivation

To obtain ALSPAC variables, the general procedure is:

  1. search through PDFs to find the variable(s)
  2. search through STATA files to extract
  3. load into R files to use

This package combines the search and extraction procedure into two functions, this makes the work a bit more reproducible. It works for the curated data in the R:/Current/ and R:/Useful_data directories.

The extracted data has withdrawn consent individuals removed automatically.

You can browse the variables here: http://variables.alspac.bris.ac.uk/

Limitations

  • The data is not curated further than what is present already in the STATA .dta files
  • The Useful_data folder contains only some of the known user derived variables. As these variables continue to be processed the directory will be updated, but contact the ALSPAC team if there is something you need which cannot be found here.
  • This is a beta version of the package, please report errors or suggestions to [email protected]
  • Variable look-ups can be performed off-line and without any restrictions, but variable extraction requires access to the R drive where the data is residing.
  • ALN IDs refer to pregnancies. The same ALN is shared between mothers, their children, partners and fathers. Children can be distinguished from the others by virtue of having a QLET code. But distinguishing between mothers, fathers and partners is not straightforward. See note below on how data that includes different individuals with the same ALN is presented.

Credits etc

Please report issues or suggestions to Gibran Hemani. Thanks to Tom Gaunt, Matt Suderman, Andrew Simpkin, Paul Yousefi, ALSPAC team for help in developing this package.

Installation

To install version 0.6.1:

install.packages("devtools")
library(devtools)
install_github("explodecomputer/alspac")

You should then be able to load the package:

library(alspac)

Finding variables

Browsing the variables manually

There are two data objects that come with the package - current and useful - that contain all the variables available in the R:/Current/ and R:/Useful_data directories, respectively. You can search through them manually by loading them directly, e.g. to load the current variables:

data(current)

and to load the useful variables:

data(useful)

The top 6 rows of current look like this:

   obj name                   lab counts    type    cat1  cat2   cat3 cat4         path
1 a_3c  aln  Pregnancy identifier  13545 integer Current Quest Mother <NA> Current/Quest/Mother
2 a_3c a001 Questionnaire version  13545  factor Current Quest Mother <NA> Current/Quest/Mother
3 a_3c a002    Time lived in Avon  13545  factor Current Quest Mother <NA> Current/Quest/Mother
4 a_3c a003 Years since last move  13545 integer Current Quest Mother <NA> Current/Quest/Mother
5 a_3c a004 Weeks since last move  13545 integer Current Quest Mother <NA> Current/Quest/Mother
6 a_3c a005  NO of moves in 5 YRS  13545 integer Current Quest Mother <NA> Current/Quest/Mother
  • obj is the filename
  • name is the variable name
  • lab is the description of the variable
  • counts is the number of non-missing values
  • type is the data type
  • cat1-cat4 are the folder names in which the object is found, used here loosely as categories for the data
  • path is the path to the obj file

Using the search function

A simple search function findVars is a simple helper for searching current (default) or useful. Documentation can be retrieved using:

?findVars

For example, to search for all variables with the word 'height' in the description from the current data:

vars <- findVars("height")

If I want any with height OR length in the description then:

vars <- findVars("height", "length", logic="any", whole.word=TRUE, ignore.case=TRUE)

If I want any with height AND length:

vars <- findVars("height", "length", logic="and", whole.word=TRUE, ignore.case=TRUE)

If I want to find anything with sleep somewhere (not necessarily a whole word) I might do:

vars <- findVars("sleep", "slept", logic="any", whole.word=FALSE, ignore.case=TRUE)

To find all variables that have the term "difficulties" from the useful data:

vars <- findVars("difficulties", dictionary="useful")

Some of these arguments have defaults but just writing them out for illustration.

Filtering a list of variables

findVars may identify multiple variables with the same name. The filterVars function can be used to select among these duplicates.

For example, searching for variables "kz021", "kz011b" and "c645a" will return multiple variables with the same name.

varnames <- c("kz021","kz011b","ype9670", "c645a")
vars <- findVars(varnames)

As a first clean-up step, I remove any variables whose names do not exactly match one of the variable names we are looking for.

vars <- subset(vars, subset=tolower(name) %in% varnames)

I then require that the "kz021" variable come from a STATA file name starting with "kz" ("obj" column in vars), "kz011b" comes from a file name starting with "cp" and the description of the variable ("lab" column in vars) include the word "Participant", and "c645a" comes from a questionnaire ("cat2" column in vars).

vars <- filterVars(vars,
                   kz021=c(obj="^kz"),
				   kz011b=c(obj="^cp", lab="Participant"),
				   c645a=c(cat2="Quest")) 

So once you have a list of variables in the required format (i.e. the output from findVars) you can extract those variables:

Extracting variables

For this you need to have mounted the R:/Data drive on your computer. When you load the package (library(alspac)), if you have the R drive loaded then you should get a message like this:

The data directory has been recognised

Sometimes this might not work - the package tries to guess where the R drive will be mounted but it might guess wrong. If you receive an error message instead and you are already connected to the R drive then run the following command:

setDataDir("/path/to/R drive/data/")

Once you have received the message The data directory has been recognised you are able to extract the variables you need from the R drive.

results <- extractVars(vars)

Or you can just extract the row or rows relevant to you:

results <- extractVars(vars[1:3, ])
results <- extractVars(subset(vars, some_conditions_here))

Important note on IDs

Suppose we extract a variable measured in each of mothers, children, fathers and partners. e.g.

x <- subset(current, name %in% c("cf010", "ff1a005a", "fm1a010a", "pc013"))
y <- extractVars(x)

returning e.g.

> head(y, 10)
   alnqlet   aln qlet cf010 mult_dad ff1a005a mult_mum fm1a010a pc013
1    30001 30001 <NA>    NA     <NA>       NA     <NA>       NA     2
2    30004 30004 <NA>    NA     <NA>       NA     <NA>       NA     2
3    30006 30006 <NA>    NA     <NA>       NA     <NA>       NA     2
4    30008 30008 <NA>    NA       No        7       No        4     2
5    30010 30010 <NA>    NA     <NA>       NA       No        1    NA
6    30012 30012 <NA>    NA     <NA>       NA       No        7    NA
7    30013 30013 <NA>    NA     <NA>       NA       No       10     2
8   30013A 30013    A    18     <NA>       NA     <NA>       NA    NA
9    30017 30017 <NA>    NA     <NA>       NA       No        7    NA
10   30019 30019 <NA>    NA       No        7       No        4     1

This has returned the variables requested, along with some other columns -

  • aln - This is the pregnancy identifier. NOTE - this is not an individual identifier. For example, notice that row 4 has entries for the father variable ff1a005a, the mother variable fm1a010a, and the partner variable pc013.

  • qlet - This is the child ID for the specific pregnancy. It will take values from A-D. All children will have a qlet, and only children will have a qlet. Therefore if qlet is not NA, that row represents an individual child.

  • alnqlet this is the ALN + QLET. If the individual is a child (e.g. row 8) then they will have a different alnqlet compared to the aln. Otherwise, the aln is the same as the alnqlet

  • mult_mum and mult_dad - Sometimes the same mother (or father) had more than one pregnancy in the 18 month recruitment period. Those individuals have two ALNs. If either of these columns is "Yes" then that means you can drop them from the results if you want to avoid individuals being duplicated. This is the guidance from the FOM2 documentation:

    1.7 Important Note for all data users

    Please be aware that some women may appear in the release file more than once. This is due to the way in which women were originally enrolled into the study and were assigned IDs. ALSPAC started by enrolling pregnant women and the main study ID is a pregnancy based ID. Therefore if a women enrolled with two different pregnancies (both having an expected delivery date within the recruitment period [April 1991-December 1992]), she will have two separate IDs to uniquely identify these women and their pregnancies. An indicator variable has been included in the file, called mult_mum to identify these women. If you are carrying out mother based research that does not require you to consider repeat pregnancies for which we have data then please select mult_mum == 'No' to remove the duplicate entries. This will keep one pregnancy and randomly drop the other pregnancy. If you are matching the data included in this file to child based data or have been provided with a dataset that includes the children of the ALSPAC pregnancies, as well as the mother-based data, you need not do anything as each pregnancy (and hence each child from a separate pregnancy) has a unique identifier and a mothers’ data has been included/repeated here for each of her pregnancies where appropriate.

If you have a better way to present these data do contact me.

Using the website to browse variables

You can browse the variables at https://alspac-example.shinyapps.io/alspac-dt/. This contains both the 'Current' and 'Useful_data' variables.

You can use this to help extract variables also.

  1. Select the variables that you want from the table, then click 'Download variable list'. This will download a csv file containing information about the variables chosen.
  2. Next, you can use the R package to extract those variables. Use the extractWebOutput function, specifying the name of the file that you just downloaded. For example
extractWebOutput("data-2017-08-22.csv")

Dictionary Maintenance

From time to time the R:\Data\Current\ directory is updated with new files. The variable dictionaries that the package uses can be updated using the createDictionary function.

current <- createDictionary("Current", name="current")
useful <- createDictionary("Useful_data", name="useful")

These updated dictionaries will be saved within the R package for use in later R sessions. In other words, an update will only need to be peformed one time.

To update the shiny variable app see https://github.com/explodecomputer/alspac-shiny

obiba-backup-tool's People

Contributors

kazoompa avatar sam-story avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.