diff --git a/404.html b/404.html index 033081e..0489e41 100644 --- a/404.html +++ b/404.html @@ -18,7 +18,7 @@ - +
@@ -46,7 +46,7 @@
  • - +
  • @@ -57,7 +57,7 @@
    - +
    @@ -85,16 +85,16 @@

    Page not found (404)

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/authors.html b/authors.html index 478c47f..d40ae92 100644 --- a/authors.html +++ b/authors.html @@ -3,7 +3,7 @@ - +
    @@ -28,14 +28,14 @@
    - +
    @@ -44,28 +44,27 @@

    Authors and Citation

    - +

    Citation

    - Source: inst/CITATION + Source: inst/CITATION
    -

    Florian Oswald (2024). psidR: Build Panel Data Sets from PSID Raw Data. R package version 2.2.

    +

    Florian Oswald (2024). psidR: Build Panel Data Sets from PSID Raw Data. R package version 2.3.

    @Manual{,
       title = {psidR: Build Panel Data Sets from PSID Raw Data},
       author = {Florian Oswald},
       year = {2024},
    -  note = {R package version 2.2},
    -  url = {https://github.com/floswald/psidR,
    -http://floswald.github.io/psidR/},
    +  note = {R package version 2.3},
    +  url = {https://github.com/floswald/psidR},
     }
    @@ -79,15 +78,15 @@

    Citation

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/index.html b/index.html index 0f83254..ee10d47 100644 --- a/index.html +++ b/index.html @@ -19,7 +19,7 @@ - +
    @@ -47,7 +47,7 @@
  • - +
  • @@ -58,7 +58,7 @@
    - +
    @@ -109,16 +109,16 @@

    Developers

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/pkgdown.yml b/pkgdown.yml index c5b20e1..ba59da1 100644 --- a/pkgdown.yml +++ b/pkgdown.yml @@ -1,9 +1,8 @@ pandoc: 3.1.11 -pkgdown: 2.0.9 +pkgdown: 2.1.1 pkgdown_sha: ~ articles: {} -last_built: 2024-06-05T15:10Z +last_built: 2024-09-24T08:14Z urls: reference: http://floswald.github.io/psidR/reference article: http://floswald.github.io/psidR/articles - diff --git a/readme.html b/readme.html index b17f968..2b36cd8 100644 --- a/readme.html +++ b/readme.html @@ -3,7 +3,7 @@ - +
    @@ -28,14 +28,14 @@
    - +
    @@ -354,15 +354,15 @@

    Citation
    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/reference/build.panel.html b/reference/build.panel.html index d70c457..aedb662 100644 --- a/reference/build.panel.html +++ b/reference/build.panel.html @@ -3,7 +3,7 @@ - +
    @@ -28,20 +28,20 @@
    - +
    @@ -64,43 +64,43 @@

    build.panel: Build PSID panel data set

    Arguments

    -
    datadir
    + + +
    datadir

    either NULL, in which case saves to tmpdir or path to directory containing family files ("FAMyyyy.RData") and individual file ("IND2009ER.RData").

    -
    fam.vars
    +
    fam.vars

    data.frame of variable to retrieve from family files. Can contain see example for required format.

    -
    ind.vars
    +
    ind.vars

    data.frame of variables to get from individual file. In almost all cases this will be the type of survey weights you want to use. don't include id variables ER30001 and ER30002.

    -
    heads.only
    +
    heads.only

    logical TRUE if user wants household heads only. Household heads in sample year.

    -
    current.heads.only
    +
    current.heads.only

    logical TRUE if user wants current household heads only. Distinguishes mover outs heads.

    -
    sample
    +
    sample

    string indicating which sample to select: "SRC" (survey research center), "SEO" (survey for economic opportunity), "immigrant" (immigrant sample), "latino" (Latino family sample). Defaults to NULL, so no subsetting takes place.

    -
    design
    +
    design

    either character balanced or all or integer. balanced means only individuals who appear in each wave are considered. All means all are taken. An integer value stands for minimum consecutive years of participation, i.e. design=3 means present in at least 3 consecutive waves.

    -
    loglevel
    +
    loglevel

    one of INFO, WARN and DEBUG. INFO by default.

    Value

    - - -

    resulting data.table. the variable pid is the unique person identifier, constructed from ID1968 and pernum

    +

    resulting data.table. the variable pid is the unique person identifier, constructed from ID1968 and pernum

    Details

    @@ -108,21 +108,21 @@

    Details

    Merging

    - -

    The variables interview number in each family file map to + +

    The variables interview number in each family file map to the interview number variable of a given year in the individual file. Run example(build.panel) for a demonstration.

    Supplements

    - +

    Notice that support for wealth supplements is disabled! Recent releases of the main family file have wealth data included. Earlier waves must be merged manually, again by variable interview number as above.

    Examples

    -
    if (FALSE) {
    +    
    if (FALSE) { # \dontrun{
     # ################################################
     # Real-world example: not run because takes long.
     # Build panel with income, wage, age and education
    @@ -150,7 +150,7 @@ 

    Examples

    heads.only =TRUE,sample="SRC", design="all") save(d,file="~/psid.RData") -} +} # } # ###################################### # reproducible example on artifical data. @@ -193,19 +193,19 @@

    Examples

    d <- build.panel(datadir=my.dir,fam.vars=famvars, ind.vars=indvars, heads.only=FALSE) -#> INFO [2024-06-05 15:10:27] found FAM1985ER.rda already downloaded -#> INFO [2024-06-05 15:10:27] found FAM1986ER.rda already downloaded -#> INFO [2024-06-05 15:10:27] Will download missing datasets now -#> INFO [2024-06-05 15:10:27] will download latest individual index: IND2021ER +#> INFO [2024-09-24 08:14:38] found FAM1985ER.rda already downloaded +#> INFO [2024-09-24 08:14:38] found FAM1986ER.rda already downloaded +#> INFO [2024-09-24 08:14:38] Will download missing datasets now +#> INFO [2024-09-24 08:14:38] will download latest individual index: IND2021ER #> This can take several hours/days to download. #> want to go ahead? give me 'yes' or 'no'. -#> INFO [2024-06-05 15:10:27] psidR: Loading Family data from .rda files -#> INFO [2024-06-05 15:10:27] psidR: loaded individual file: /tmp/Rtmp99Z9gK/IND2019ER.RData -#> INFO [2024-06-05 15:10:27] psidR: total memory load in MB: 1 -#> INFO [2024-06-05 15:10:27] psidR: currently working on data for year 1985 -#> INFO [2024-06-05 15:10:27] psidR: currently working on data for year 1986 -#> INFO [2024-06-05 15:10:27] balanced design reduces sample from 36 to 24 -#> INFO [2024-06-05 15:10:27] End of build.panel +#> INFO [2024-09-24 08:14:38] psidR: Loading Family data from .rda files +#> INFO [2024-09-24 08:14:38] psidR: loaded individual file: /tmp/RtmpFuu9Dq/IND2019ER.RData +#> INFO [2024-09-24 08:14:38] psidR: total memory load in MB: 1 +#> INFO [2024-09-24 08:14:38] psidR: currently working on data for year 1985 +#> INFO [2024-09-24 08:14:38] psidR: currently working on data for year 1986 +#> INFO [2024-09-24 08:14:38] balanced design reduces sample from 36 to 24 +#> INFO [2024-09-24 08:14:38] End of build.panel # see what happens if we drop non-heads # only the ones who are heads in BOTH years @@ -213,21 +213,21 @@

    Examples

    d <- build.panel(datadir=my.dir,fam.vars=famvars, ind.vars=indvars, heads.only=TRUE) -#> INFO [2024-06-05 15:10:27] found FAM1985ER.rda already downloaded -#> INFO [2024-06-05 15:10:27] found FAM1986ER.rda already downloaded -#> INFO [2024-06-05 15:10:27] Will download missing datasets now -#> INFO [2024-06-05 15:10:27] will download latest individual index: IND2021ER +#> INFO [2024-09-24 08:14:38] found FAM1985ER.rda already downloaded +#> INFO [2024-09-24 08:14:38] found FAM1986ER.rda already downloaded +#> INFO [2024-09-24 08:14:38] Will download missing datasets now +#> INFO [2024-09-24 08:14:38] will download latest individual index: IND2021ER #> This can take several hours/days to download. #> want to go ahead? give me 'yes' or 'no'. -#> INFO [2024-06-05 15:10:27] psidR: Loading Family data from .rda files -#> INFO [2024-06-05 15:10:27] psidR: loaded individual file: /tmp/Rtmp99Z9gK/IND2019ER.RData -#> INFO [2024-06-05 15:10:27] psidR: total memory load in MB: 1 -#> INFO [2024-06-05 15:10:27] psidR: currently working on data for year 1985 -#> INFO [2024-06-05 15:10:27] dropping non-heads leaves 10 obs -#> INFO [2024-06-05 15:10:27] psidR: currently working on data for year 1986 -#> INFO [2024-06-05 15:10:27] dropping non-heads leaves 15 obs -#> INFO [2024-06-05 15:10:27] balanced design reduces sample from 20 to 4 -#> INFO [2024-06-05 15:10:27] End of build.panel +#> INFO [2024-09-24 08:14:38] psidR: Loading Family data from .rda files +#> INFO [2024-09-24 08:14:38] psidR: loaded individual file: /tmp/RtmpFuu9Dq/IND2019ER.RData +#> INFO [2024-09-24 08:14:38] psidR: total memory load in MB: 1 +#> INFO [2024-09-24 08:14:38] psidR: currently working on data for year 1985 +#> INFO [2024-09-24 08:14:38] dropping non-heads leaves 10 obs +#> INFO [2024-09-24 08:14:38] psidR: currently working on data for year 1986 +#> INFO [2024-09-24 08:14:38] dropping non-heads leaves 15 obs +#> INFO [2024-09-24 08:14:38] balanced design reduces sample from 20 to 4 +#> INFO [2024-09-24 08:14:38] End of build.panel print(d[order(pid)],nrow=Inf) #> money age interview ID1968 pernum sequence relation.head ind.weight #> <num> <int> <int> <int> <int> <num> <num> <num> @@ -248,20 +248,20 @@

    Examples

    d <- build.panel(datadir=my.dir,fam.vars=famvars, ind.vars=indvars,heads.only=TRUE, design="all") -#> INFO [2024-06-05 15:10:27] found FAM1985ER.rda already downloaded -#> INFO [2024-06-05 15:10:27] found FAM1986ER.rda already downloaded -#> INFO [2024-06-05 15:10:27] Will download missing datasets now -#> INFO [2024-06-05 15:10:27] will download latest individual index: IND2021ER +#> INFO [2024-09-24 08:14:38] found FAM1985ER.rda already downloaded +#> INFO [2024-09-24 08:14:38] found FAM1986ER.rda already downloaded +#> INFO [2024-09-24 08:14:38] Will download missing datasets now +#> INFO [2024-09-24 08:14:38] will download latest individual index: IND2021ER #> This can take several hours/days to download. #> want to go ahead? give me 'yes' or 'no'. -#> INFO [2024-06-05 15:10:27] psidR: Loading Family data from .rda files -#> INFO [2024-06-05 15:10:27] psidR: loaded individual file: /tmp/Rtmp99Z9gK/IND2019ER.RData -#> INFO [2024-06-05 15:10:27] psidR: total memory load in MB: 1 -#> INFO [2024-06-05 15:10:27] psidR: currently working on data for year 1985 -#> INFO [2024-06-05 15:10:27] dropping non-heads leaves 10 obs -#> INFO [2024-06-05 15:10:27] psidR: currently working on data for year 1986 -#> INFO [2024-06-05 15:10:27] dropping non-heads leaves 15 obs -#> INFO [2024-06-05 15:10:27] End of build.panel +#> INFO [2024-09-24 08:14:38] psidR: Loading Family data from .rda files +#> INFO [2024-09-24 08:14:38] psidR: loaded individual file: /tmp/RtmpFuu9Dq/IND2019ER.RData +#> INFO [2024-09-24 08:14:38] psidR: total memory load in MB: 1 +#> INFO [2024-09-24 08:14:38] psidR: currently working on data for year 1985 +#> INFO [2024-09-24 08:14:38] dropping non-heads leaves 10 obs +#> INFO [2024-09-24 08:14:38] psidR: currently working on data for year 1986 +#> INFO [2024-09-24 08:14:38] dropping non-heads leaves 15 obs +#> INFO [2024-09-24 08:14:38] End of build.panel print(d[order(pid)],nrow=Inf) #> money age interview ID1968 pernum sequence relation.head ind.weight #> <num> <int> <int> <int> <int> <num> <num> <num> @@ -334,15 +334,15 @@

    Examples

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/reference/build.psid.html b/reference/build.psid.html index 64c9774..50cb148 100644 --- a/reference/build.psid.html +++ b/reference/build.psid.html @@ -3,7 +3,7 @@ - +
    @@ -28,20 +28,20 @@
    - +
    @@ -55,19 +55,19 @@

    Build example PSID

    Arguments

    -
    datadr
    + + +
    datadr

    string of the data directory

    -
    small
    +
    small

    logical TRUE if only use years 2013 and 2015.

    Value

    - - -

    a data.table with panel data

    +

    a data.table with panel data

    @@ -82,15 +82,15 @@

    Value

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/reference/get.psid.html b/reference/get.psid.html index b853921..3aea053 100644 --- a/reference/get.psid.html +++ b/reference/get.psid.html @@ -1,9 +1,9 @@ -get.psid connects to PSID database and downloads into Rda — get.psid • psidRget.psid connects to PSID database and downloads into Rda — get.psid • psidR - +
    @@ -28,25 +28,25 @@
    - +
    @@ -55,20 +55,22 @@

    get.psid connects to PSID database and downloads into Rda

    Arguments

    -
    file
    + + +
    file

    string psid file number

    -
    name
    +
    name

    string of filename on disc

    -
    params
    -

    postFormRCurl parameters

    +
    params
    +

    `postForm` (RCurl) parameters

    -
    curl
    -

    postFormRCurl curl handle

    +
    curl
    +

    `postForm` (RCurl) curl handle

    @@ -88,15 +90,15 @@

    Author

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/reference/getNamesPSID.html b/reference/getNamesPSID.html index d92b94e..6bc0246 100644 --- a/reference/getNamesPSID.html +++ b/reference/getNamesPSID.html @@ -7,7 +7,7 @@ - +
    @@ -32,20 +32,20 @@
    - +
    @@ -63,34 +63,34 @@

    GetPSID variables names from various years

    Arguments

    -
    aname
    + + +
    aname

    A variable name in any of the PSID years

    -
    cwf
    +
    cwf

    A data.frame representation of the cross-walk file, (the psid.xlsx file).

    -
    years
    +
    years

    A vector of years. If NULL, all years in which that variable existed are returned

    -
    file
    +
    file

    optional file name to write csv

    Value

    - - -

    A vector of names, one for each year.

    +

    A vector of names, one for each year.

    Details

    This uses the psid.xlsx crosswalk file from UMich, which is -available at http://psidonline.isr.umich.edu/help/xyr/psid.xlsx. In the +available at http://psidonline.isr.umich.edu/help/xyr/psid.xlsx. In the example, the package openxlsx's read.xlsx is used to import the crosswalk file.

    Ask for one variable at a time.

    @@ -158,6 +158,8 @@

    Examples

    #> 38 Y2013 ER53017 #> 39 Y2015 ER60017 #> 40 Y2017 ER66017 +#> 41 Y2019 ER72017 +#> 42 Y2021 ER78017 getNamesPSID("ER17013", cwf, years = c(2005, 2007, 2009)) #> year variable #> 1 Y2005 ER25017 @@ -177,15 +179,15 @@

    Examples

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/reference/index.html b/reference/index.html index 0d08e08..abd8c64 100644 --- a/reference/index.html +++ b/reference/index.html @@ -1,9 +1,9 @@ -Function reference • psidRPackage index • psidR - +
    @@ -28,14 +28,14 @@
    - +
    @@ -88,7 +88,7 @@

    All functions

    three year test, no ind file

    -

    psidR

    +

    psidR-package psidR

    psidR

    @@ -116,15 +116,15 @@

    All functions
    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/reference/make.char.html b/reference/make.char.html index f9c585a..6dea2e6 100644 --- a/reference/make.char.html +++ b/reference/make.char.html @@ -3,7 +3,7 @@ - +
    @@ -28,20 +28,20 @@
    - +
    @@ -55,15 +55,15 @@

    Convert factor to character

    Arguments

    -
    x
    + + +
    x

    a factor

    Value

    - - -

    a character

    +

    a character

    @@ -78,15 +78,15 @@

    Value

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/reference/makeids.html b/reference/makeids.html index 9f05869..3f4fde9 100644 --- a/reference/makeids.html +++ b/reference/makeids.html @@ -3,7 +3,7 @@ - +
    @@ -28,20 +28,20 @@
    - +
    @@ -70,15 +70,15 @@

    Details

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/reference/medium.test.ind.NA.html b/reference/medium.test.ind.NA.html index 2bec2eb..534275f 100644 --- a/reference/medium.test.ind.NA.html +++ b/reference/medium.test.ind.NA.html @@ -3,7 +3,7 @@ - +
    @@ -28,20 +28,20 @@
    - +
    @@ -55,8 +55,10 @@

    three year test, ind file and one NA variable

    Arguments

    -
    dd
    -

    Data Dictionary location. If NULL, + + +

    dd
    +

    Data Dictionary location. If NULL, use temp dir and force download

    @@ -73,15 +75,15 @@

    Arguments

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/reference/medium.test.ind.NA.wealth.html b/reference/medium.test.ind.NA.wealth.html index 46e6f2a..71c5e91 100644 --- a/reference/medium.test.ind.NA.wealth.html +++ b/reference/medium.test.ind.NA.wealth.html @@ -3,7 +3,7 @@ - +
    @@ -28,20 +28,20 @@
    - +
    @@ -55,8 +55,10 @@

    three year test, ind file and one NA variable and wealth

    Arguments

    -
    dd
    -

    Data Dictionary location. If NULL, + + +

    dd
    +

    Data Dictionary location. If NULL, use temp dir and force download

    @@ -73,15 +75,15 @@

    Arguments

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/reference/medium.test.ind.html b/reference/medium.test.ind.html index 24e199d..00db4b4 100644 --- a/reference/medium.test.ind.html +++ b/reference/medium.test.ind.html @@ -3,7 +3,7 @@ - +
    @@ -28,20 +28,20 @@
    - +
    @@ -55,8 +55,10 @@

    three year test, ind file

    Arguments

    -
    dd
    -

    Data Dictionary location. If NULL, + + +

    dd
    +

    Data Dictionary location. If NULL, use temp dir and force download

    @@ -73,15 +75,15 @@

    Arguments

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/reference/medium.test.noind.html b/reference/medium.test.noind.html index bde1719..93913fb 100644 --- a/reference/medium.test.noind.html +++ b/reference/medium.test.noind.html @@ -3,7 +3,7 @@ - +
    @@ -28,20 +28,20 @@
    - +
    @@ -55,7 +55,9 @@

    three year test, no ind file

    Arguments

    -
    dd
    + + +
    dd

    Data Dictionary location

    @@ -72,15 +74,15 @@

    Arguments

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/reference/psidR-package.html b/reference/psidR-package.html new file mode 100644 index 0000000..45ed1fd --- /dev/null +++ b/reference/psidR-package.html @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/reference/psidR.html b/reference/psidR.html index c05da28..e65f194 100644 --- a/reference/psidR.html +++ b/reference/psidR.html @@ -1,11 +1,11 @@ -psidR — psidR • psidRpsidR — psidR • psidR - +
    @@ -30,30 +30,35 @@
    - +
    -

    psidR is a package that helps the task of building longitudinal datasets from the Panel Study of Income Dynamics (PSID). +

    psidR is a package that helps the task of building longitudinal datasets from the Panel Study of Income Dynamics (PSID). The user must supply the PSID variable names that correspond to the variables of interest in each desired wave. Data can be supplied via Stata, or directly downloaded from PSID servers without any need for STATA. data.frame.

    +
    +

    See also

    + +
    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/reference/small.test.ind.html b/reference/small.test.ind.html index b0bcf52..dc88435 100644 --- a/reference/small.test.ind.html +++ b/reference/small.test.ind.html @@ -3,7 +3,7 @@ - +
    @@ -28,20 +28,20 @@
    - +
    @@ -55,8 +55,10 @@

    one year test, ind file

    Arguments

    -
    dd
    -

    Data Dictionary location. If NULL, + + +

    dd
    +

    Data Dictionary location. If NULL, use temp dir and force download

    @@ -73,15 +75,15 @@

    Arguments

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/reference/small.test.noind.html b/reference/small.test.noind.html index 031f3e3..55ff667 100644 --- a/reference/small.test.noind.html +++ b/reference/small.test.noind.html @@ -3,7 +3,7 @@ - +
    @@ -28,20 +28,20 @@
    - +
    @@ -55,8 +55,10 @@

    one year test, no ind file

    Arguments

    -
    dd
    -

    Data Dictionary location. If NULL, + + +

    dd
    +

    Data Dictionary location. If NULL, use temp dir and force download

    @@ -73,15 +75,15 @@

    Arguments

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/reference/testPSID.html b/reference/testPSID.html index fa0a211..e9aba8c 100644 --- a/reference/testPSID.html +++ b/reference/testPSID.html @@ -4,7 +4,7 @@ - +
    @@ -29,20 +29,20 @@
    - +
    @@ -57,19 +57,19 @@

    Create a test PSID dataset

    Arguments

    -
    N
    + + +
    N

    number of people in each wave

    -
    N.attr
    +
    N.attr

    number of people lost to attrition

    Value

    - - -

    list with (fake) individual index file IND2009ER and +

    list with (fake) individual index file IND2009ER and family files for 1985 and 1986

    @@ -85,15 +85,15 @@

    Value

    -

    Site built with pkgdown 2.0.9.

    +

    Site built with pkgdown 2.1.1.

    - - + + diff --git a/sitemap.xml b/sitemap.xml index ba3c139..716c0bc 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1,60 +1,22 @@ - - - - http://floswald.github.io/psidR/404.html - - - http://floswald.github.io/psidR/authors.html - - - http://floswald.github.io/psidR/index.html - - - http://floswald.github.io/psidR/readme.html - - - http://floswald.github.io/psidR/reference/build.panel.html - - - http://floswald.github.io/psidR/reference/build.psid.html - - - http://floswald.github.io/psidR/reference/get.psid.html - - - http://floswald.github.io/psidR/reference/getNamesPSID.html - - - http://floswald.github.io/psidR/reference/index.html - - - http://floswald.github.io/psidR/reference/make.char.html - - - http://floswald.github.io/psidR/reference/makeids.html - - - http://floswald.github.io/psidR/reference/medium.test.ind.NA.html - - - http://floswald.github.io/psidR/reference/medium.test.ind.NA.wealth.html - - - http://floswald.github.io/psidR/reference/medium.test.ind.html - - - http://floswald.github.io/psidR/reference/medium.test.noind.html - - - http://floswald.github.io/psidR/reference/psidR.html - - - http://floswald.github.io/psidR/reference/small.test.ind.html - - - http://floswald.github.io/psidR/reference/small.test.noind.html - - - http://floswald.github.io/psidR/reference/testPSID.html - + +http://floswald.github.io/psidR/404.html +http://floswald.github.io/psidR/authors.html +http://floswald.github.io/psidR/index.html +http://floswald.github.io/psidR/readme.html +http://floswald.github.io/psidR/reference/build.panel.html +http://floswald.github.io/psidR/reference/build.psid.html +http://floswald.github.io/psidR/reference/get.psid.html +http://floswald.github.io/psidR/reference/getNamesPSID.html +http://floswald.github.io/psidR/reference/index.html +http://floswald.github.io/psidR/reference/make.char.html +http://floswald.github.io/psidR/reference/makeids.html +http://floswald.github.io/psidR/reference/medium.test.ind.NA.html +http://floswald.github.io/psidR/reference/medium.test.ind.NA.wealth.html +http://floswald.github.io/psidR/reference/medium.test.ind.html +http://floswald.github.io/psidR/reference/medium.test.noind.html +http://floswald.github.io/psidR/reference/psidR.html +http://floswald.github.io/psidR/reference/small.test.ind.html +http://floswald.github.io/psidR/reference/small.test.noind.html +http://floswald.github.io/psidR/reference/testPSID.html +