Ankündigung: Workshop Datenaufbereitung und Dokumentation 2018

Das Team des Forschungsdatenzentrums am Leibniz-Institut für Bildungsverläufe (FDZ-LIfBi) freut sich, im kommenden Jahr den Workshop „Datenaufbereitung und Dokumentation” ausrichten zu dürfen. Der Workshop wird am 19. und 20. Februar 2018 in den Räumlichkeiten des LIfBi in Bamberg stattfinden. Die Teilnahme ist gebührenfrei.

Ankündigung: Workshop Datenaufbereitung und Dokumentation 2018 weiterlesen

Integration von alternativen PDF-Betrachtern in Stata

Statas Inline-Hilfeseiten verlinken bekanntermaßen auf nähere Informationen zum jeweiligen Thema in der mitgelieferten PDF-Dokumentation. Das ist besonders praktisch und zielführend, um weitere Hintergründe zum fraglichen Kommando o.ä. zu erfahren. Der Aufruf des PDF-Programms kann dabei – zumindest unter Linux und potentiell Mac OS – beliebig angepasst werden. Integration von alternativen PDF-Betrachtern in Stata weiterlesen

Offene Stelle am FDZ-LIfBi (TV-L E13, 50%)

Das Forschungsdatenzentrum des Leibniz-Instituts für Bildungsverläufe e.V. (FDZ-LIfBi) sucht Verstärkung (TV-L E13, 50%) für die Datenaufbereitung der Scientific Use Files des Nationalen Bildungspanels (NEPS). Bewerbungen sind bis 04. April 2016 an bewerbung@lifbi.de zu richten.

Eine detailliertere Stellenausschreibung findet sich auf den Seiten des LIfBi.

Two new Stata packages -useold- and -saveascii- now available on SSC

Thanks to the SSC maintainer  Kit Baum, two new commands are available on SSC: useold and saveascii. Both deal with unicode translation in Stata 14 (or younger).

useold works as an inline replacement for Stata’s regular use command. If the version of the Stata instance executing the command is 14 or younger, then it is checked if unicode translation is necessary and, if yes, unicode translate is executed on a temporary copy of the file before opening it. The default code page of the operating system is assumed as source encoding (which might be wrong and can be overridden via option).

You can install useold with:

ssc install useold

saveascii works as an inline replacement for Stata’s regular saveold command. It implements conversion functions as presented by Alan Riley here on Statalist.If the version of the Stata instance executing the command is 14 or younger, all unicode contents (data labels, variable names, variable labels, value label names and contents, characteristics names and contents) are converted to ASCII before running saveold. The default code page of the operating system is assumed as target encoding (which might be wrong and can be overridden via option).

You can install saveascii with:

ssc install saveascii

Both packages come with help files that contain more details on how to use them.