Questions marquées «set»

93
Trier les colonnes d'un dataframe par nom de colonne

C'est peut-être une question simple, mais je ne sais pas comment classer les colonnes par ordre alphabétique. test = data.frame(C = c(0, 2, 4, 7, 8), A = c(4, 2, 4, 7, 8), B = c(1, 3, 8, 3, 2)) # C A B # 1 0 4 1 # 2 2 2 3 # 3 4 4 8 # 4 7 7 3 # 5 8 8 2 J'aime classer les colonnes par nom de colonne...

91
Comment parcourir std :: set?

J'ai ce code: std::set<unsigned long>::iterator it; for (it = SERVER_IPS.begin(); it != SERVER_IPS.end(); ++it) { u_long f = it; // error here } Il n'y a aucune ->firstvaleur. Comment puis-je obtenir la valeur?