Description Usage Arguments Examples
Statistically this is a very crude method, with potential bias from a response driven sampling method. It's meant for quick-and-dirty analyses of a single variable over time and until more sophisticated missing data procedures are integrated with NLSdata.
| 1 | ThrowAwayDataForBalance(data, var.name, id = "PUBID.1997")
 | 
| data | a data frame | 
| var.name | variable to achieve balance with respect to | 
| id | id variable, also to achieve balance with respect to | 
| 1 2 3 4 5 6 7 8 9 10 11 12 13 |   codebook <- system.file("Investigator", "Religion.cdb", package = "NLSdata")
  csv.extract <- system.file("Investigator", "Religion.csv", package = "NLSdata")
  nls.obj <- CreateNLSdata(codebook, csv.extract)
  # Since only two people answered the question that year, excluding it from the analysis
  religion.df <- CreateTimeSeriesDf(nls.obj, "YSAQ_282A2")
  religion.df <- religion.df[religion.df$year != 2006, ]
  religion.df <- ThrowAwayDataForBalance(religion.df, "YSAQ_282A2")
  table(religion.df$year)
  head(table(religion.df$PUBID.1997))
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.