Spss .NET Library
本文关键字:Library NET Spss | 更新日期: 2023-09-27 18:03:51
我正在使用Spss .net库http://spss.codeplex.com创建一个。sav文件,我似乎找不到如何创建案例。我正在使用c#。
谁能告诉我正确的方向?为了避免使用本机spssio32/64并且不得不处理SPSS' 32和64位问题,我们创建了一个本机实现的DLL。它基于SPSS/PSPP规范工作,是您之前提到的SpssLib的延续。
记录的示例如下:
// Create Variable list
var variables = new List<Variable>
{
new Variable
{
Label = "The variable Label",
ValueLabels = new Dictionary<double, string>
{
{1, "Label for 1"},
{2, "Label for 2"},
},
Name = "avariablename_01",
PrintFormat = new OutputFormat(FormatType.F, 8, 2),
WriteFormat = new OutputFormat(FormatType.F, 8, 2),
Type = DataType.Numeric,
Width = 10,
MissingValueType = MissingValueType.NoMissingValues
},
new Variable
{
Label = "Another variable",
ValueLabels = new Dictionary<double, string>
{
{1, "this is 1"},
{2, "this is 2"},
},
Name = "avariablename_02",
PrintFormat = new OutputFormat(FormatType.F, 8, 2),
WriteFormat = new OutputFormat(FormatType.F, 8, 2),
Type = DataType.Numeric,
Width = 10,
MissingValueType = MissingValueType.OneDiscreteMissingValue
}
};
// Set the one special missing value
variables[1].MissingValues[0] = 999;
// Default options
var options = new SpssOptions();
using (FileStream fileStream = new FileStream("data.sav", FileMode.Create, FileAccess.Write))
{
using (var writer = new SpssWriter(fileStream, variables, options))
{
// Create and write records
var newRecord = writer.CreateRecord();
newRecord[0] = 15d;
newRecord[1] = 15.5d;
writer.WriteRecord(newRecord);
newRecord = writer.CreateRecord();
newRecord[0] = null;
newRecord[1] = 200d;
writer.WriteRecord(newRecord);
writer.EndFile();
}
}
在GitHub上找到源代码,在NuGet上找到二进制文件。
merthsoft对以下stackoverflow帖子的回答为启动和运行SPSS提供了一个很好的起点。在c#中使用64位SPSS库
我个人的宿醉包括所有适当的dll,比如…spssio64.dllicudt32.dllicuin32.dllicuuc32.dll
导出数据时,所有列必须是唯一的。
如果您遵循与merthsoft类似的模式,那么创建用例的一个可能的解决方案可能是包装并公开此方法…
[DllImport("spssio64.dll", EntryPoint = "spssCommitCaseRecord"…]
我希望现在你已经把它工作起来了,但是对于那些将来遇到这个问题的人来说,这可能会有所帮助。