Quantcast
Channel: R.NET
Viewing all articles
Browse latest Browse all 1634

Closed Unassigned: Unable to see the S4 class slots value [169]

$
0
0
Hello everyone,

I am not able to see the values of the S4 object slots.

I was trying to get output from the function of "mirt" package.


I tried this:

```
engine.Evaluate("library(mirt)");
engine.Evaluate("x=mirt(Science,1)");
S4Object obj111 = engine.GetSymbol("x").AsS4();
engine.Evaluate("ff=fscores(x, response.pattern=c(1,0,0,0))");
GenericVector dataset111 = engine.GetSymbol("ff").AsList();
```

when I move my cursor on the "object111" it shows all the names of the slot but I am not able to see the values or slot member which is inside that slot.

Is that S4 data type is not ready yet or am I doing something wrong?


Viewing all articles
Browse latest Browse all 1634

Trending Articles