Keyboard Shortcuts
Likes
Search
Imputing missing data with xUCINET
Dear all, I used to analyze social network data with UCINET. And recently I am trying to use the xUCINET package to do the analyses considering its flexibility. Now I have a question about imputing missing data with xUCINET. According to Borgatti, Everett, and Johnson (2018):
However, in the current version of xUCINET, the xImputeMissingData() function only imputes data with density. I am wondering whether we can manually write some codes in xUCINET to realize the function of REPLACENA in UCINET? If yes, could you please give me an example? Many thanks! ? Best,
Chuding |
开云体育Chuding, you can make your own replacena. Assume your matrix is called X. Then these lines ? Xt <- t(X) X[is.na(X)] = Xt[is.na(X)] ? will replace your missing rows with their corresponding columns. Note that if you have multiple missing rows, such as 1 and 2, you will still have a missing value for the tie between node 1 and node 2, since neither one responded. ? Note there are more sophisticated methods of imputing network data: ? Krause, R. W., Huisman, M., Steglich, C., & Snijders, T. A. (2018, August). Missing network data a comparison of different imputation methods. In?2018 IEEE/ACM International Conference on Advances in Social Networks Analysis and Mining (ASONAM)?(pp. 159-163). IEEE. ? ?nidar?i?, A., Ferligoj, A., & Doreian, P. (2012). Non-response in social networks: The impact of different non-response treatments on the stability of blockmodels.?Social Networks,?34(4), 438-450. ? Stephen P. Borgatti Carol Martin Gatton Chair of Management Gatton College of Business and Economics University of Kentucky ? From: [email protected] <[email protected]> On Behalf Of
CHUDING LING via groups.io
Sent: Wednesday, January 25, 2023 06:39 To: [email protected] Subject: [ucinet] Imputing missing data with xUCINET ? CAUTION: External Sender ? Dear all,
? Best, Chuding |
Thank you Prof. Borgatti! The solution suggested by you works! ? Best,
Chuding Steve Borgatti <sborgatti@...> 于2023年1月27日周五 02:36写道:
|