Als «apply» getaggte Fragen

75
R Apply () -Funktion auf bestimmte Datenrahmenspalten

Ich möchte die Apply-Funktion für einen Datenrahmen verwenden, aber die Funktion nur auf die letzten 5 Spalten anwenden. B<- by(wifi,(wifi$Room),FUN=function(y){apply(y, 2, A)}) Dies gilt A für alle Spalten von y B<- by(wifi,(wifi$Room),FUN=function(y){apply(y[4:9], 2, A)}) Dies gilt...

74
Wie funktioniert require () in node.js?

Ich habe es versucht: // mod.js var a = 1; this.b = 2; exports.c = 3; // test.js var mod = require('./mod.js'); console.log(mod.a); // undefined console.log(mod.b); // 2 console.log(mod.c); // 3, so this === exports? Ich kann mir also vorstellen, dass require () folgendermaßen implementiert werden...