The syntax should be ok. What's the specific problem you're having?
Remember your blog post on race-ACE interaction on CNLSY79 ? When I use your syntax, R stops at the beginning and says the variable C0000100 can't be found. That's nonsense because saw it in your data (the one you sent me few months ago). When I use the syntax John gave me, it works better:
rm(list=ls(all=TRUE))
library(NlsyLinks)
filePathOutcomes <-'c:\\Users\\John\\Desktop\\CNLSYALL\\CNLSYALLS10312013PLUSresbyyear3.csv'
dsOutcomes <- ReadCsvNlsy79Gen2(filePathOutcomes)
dsOutcomes <- RenameNlsyColumn(dsOutcomes, "C0005300", "Race")
dsOutcomesSubset <- dsOutcomes
dsOutcomesSubset <- dsOutcomes[dsOutcomes$Race==3, ]
dsLinks <- Links79PairExpanded
dsDouble <- CreatePairLinksDoubleEntered(outcomeDataset=dsOutcomesSubset, linksPairDataset=dsLinks, outcomeNames=c("RC94res"))
ace <- AceUnivariate( method="DeFriesFulkerMethod3", dataSet=dsDouble, oName_1="RC94res_1", oName_2="RC94res_2" )
ace
GetDetails(ace)
summary(GetDetails(ace))
But I have a message when I arrive at this point :
ace <- AceUnivariate( method="DeFriesFulkerMethod3", dataSet=dsDouble, oName_1="RC94res_1", oName_2="RC94res_2" )
unused argument(s) (oName_1 = "RC94res_1", oName_2 = "RC94res_2")
And this, is curious, because the two variables exist in the data. In general, I don't use the data in SPSS format, but rather, the .csv file you and John you gave me before. This package works for him and you, but not with me.
I rather doubt that the CIs would be correct because NlsyLinks ignores non-independence across pairs.
I couldn't verify, because in fact the NlsyLinks never run properly for me.
If you are willing to email people around for review, I can suggest it's best to email people who had works closest to yours. For example, Beaver (2013) referenced in your article has reported the heritability for blacks and whites. You can also try to find the mail of Guo and Hart. Perhaps Loehlin too.