-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathvalr_utils.cpp
262 lines (214 loc) · 6.93 KB
/
valr_utils.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
// valr_utils.cpp
//
// Copyright (C) 2018 Jay Hesselberth and Kent Riemondy
//
// This file is part of valr.
//
// This software may be modified and distributed under the terms
// of the MIT license. See the LICENSE file for details.
#include "valr.h"
// reuse of r-lib/vctrs approach for setting levels
void init_factor(SEXP x, SEXP levels) {
if (TYPEOF(x) != INTSXP) {
Rf_errorcall(R_NilValue, "Internal error: Only integers can be made into factors");
}
SEXP factor_string = PROTECT(Rf_allocVector(STRSXP, 1)) ;
SET_STRING_ELT(factor_string, 0, Rf_mkChar("factor")) ;
Rf_setAttrib(x, R_LevelsSymbol, levels);
Rf_setAttrib(x, R_ClassSymbol, factor_string);
UNPROTECT(1) ;
}
// Based on Kevin Ushey's implementation here:
// http://kevinushey.github.io/blog/2015/01/24/understanding-data-frame-subsetting/
// Input row indices are assumed to be zero-based
DataFrame rowwise_subset_df(const DataFrame& x,
IntegerVector row_indices) {
int column_indices_n = x.ncol();
int row_indices_n = row_indices.size();
List output = no_init(column_indices_n);
CharacterVector x_names =
as<CharacterVector>(Rf_getAttrib(x, R_NamesSymbol));
output.attr("names") = x_names;
for (int j = 0; j < column_indices_n; ++j)
{
SEXP element = VECTOR_ELT(x, j);
SEXP vec = PROTECT(
Rf_allocVector(TYPEOF(element), row_indices_n)
);
for (int i = 0; i < row_indices_n; ++i)
{
// if the row_indices contain NA, return type dependent NAs
// columns can only contain logical, numeric, character, integer, or list types
switch (TYPEOF(vec))
{
case REALSXP:
if (row_indices[i] == NA_INTEGER) {
REAL(vec)[i] = Rcpp::Vector<REALSXP>::get_na() ;
} else {
REAL(vec)[i] =
REAL(element)[row_indices[i]];
}
break;
case INTSXP:
case LGLSXP:
if (row_indices[i] == NA_INTEGER) {
INTEGER(vec)[i] = Rcpp::Vector<INTSXP>::get_na() ;
} else {
INTEGER(vec)[i] =
INTEGER(element)[row_indices[i]];
}
break;
case STRSXP:
if (row_indices[i] == NA_INTEGER) {
SET_STRING_ELT(vec, i,
Rcpp::Vector<STRSXP>::get_na()) ;
break;
}
SET_STRING_ELT(vec, i,
STRING_ELT(element, row_indices[i]));
break;
case VECSXP:
if (row_indices[i] == NA_INTEGER) {
SET_VECTOR_ELT(vec, i,
Rcpp::Vector<VECSXP>::get_na()) ;
} else {
SET_VECTOR_ELT(vec, i,
VECTOR_ELT(element, row_indices[i]));
}
break;
default: {
stop("Incompatible column type detected");
}
}
}
if (Rf_isFactor(x[j])) {
// set levels on output factor
IntegerVector tmp = x[j] ;
SEXP levels = PROTECT(tmp.attr("levels")) ;
init_factor(vec, levels) ;
UNPROTECT(1) ;
}
UNPROTECT(1);
SET_VECTOR_ELT(output, j, vec);
}
Rf_copyMostAttrib(x, output);
Rf_setAttrib(output, R_RowNamesSymbol,
IntegerVector::create(NA_INTEGER, -row_indices_n));
return output;
}
// use std::vector<int> indices rather than IntegerVector
DataFrame rowwise_subset_df(const DataFrame& x,
std::vector<int> row_indices) {
int column_indices_n = x.ncol();
int row_indices_n = row_indices.size();
List output = no_init(column_indices_n);
CharacterVector x_names =
as<CharacterVector>(Rf_getAttrib(x, R_NamesSymbol));
output.attr("names") = x_names;
for (int j = 0; j < column_indices_n; ++j)
{
SEXP element = VECTOR_ELT(x, j);
SEXP vec = PROTECT(
Rf_allocVector(TYPEOF(element), row_indices_n)
);
for (int i = 0; i < row_indices_n; ++i)
{
// if the row_indices contain NA, return type dependent NAs
// columns can only contain logical, numeric, character, integer, or list types
switch (TYPEOF(vec))
{
case REALSXP:
if (row_indices[i] == NA_INTEGER) {
REAL(vec)[i] = Rcpp::Vector<REALSXP>::get_na() ;
} else {
REAL(vec)[i] =
REAL(element)[row_indices[i]];
}
break;
case INTSXP:
case LGLSXP:
if (row_indices[i] == NA_INTEGER) {
INTEGER(vec)[i] = Rcpp::Vector<INTSXP>::get_na() ;
} else {
INTEGER(vec)[i] =
INTEGER(element)[row_indices[i]];
}
break;
case STRSXP:
if (row_indices[i] == NA_INTEGER) {
SET_STRING_ELT(vec, i,
Rcpp::Vector<STRSXP>::get_na()) ;
break;
}
SET_STRING_ELT(vec, i,
STRING_ELT(element, row_indices[i]));
break;
case VECSXP:
if (row_indices[i] == NA_INTEGER) {
SET_VECTOR_ELT(vec, i,
Rcpp::Vector<VECSXP>::get_na()) ;
} else {
SET_VECTOR_ELT(vec, i,
VECTOR_ELT(element, row_indices[i]));
}
break;
default: {
stop("Incompatible column type detected");
}
}
}
if (Rf_isFactor(x[j])) {
// set levels on output factor
IntegerVector tmp = x[j] ;
SEXP levels = PROTECT(tmp.attr("levels")) ;
init_factor(vec, levels) ;
UNPROTECT(1);
}
UNPROTECT(1);
SET_VECTOR_ELT(output, j, vec);
}
Rf_copyMostAttrib(x, output);
Rf_setAttrib(output, R_RowNamesSymbol,
IntegerVector::create(NA_INTEGER, -row_indices_n));
return output;
}
DataFrame subset_dataframe(const DataFrame& df,
std::vector<int> indices) {
DataFrame out = rowwise_subset_df(df, indices);
return (out) ;
}
DataFrame subset_dataframe(const DataFrame& df,
IntegerVector indices) {
DataFrame out = rowwise_subset_df(df, indices);
return (out) ;
}
// ValrGroupedDataFrame class definition
ValrGroupedDataFrame::ValrGroupedDataFrame(DataFrame x):
data_(check_is_grouped(x)),
groups(data_.attr("groups"))
{}
// return group_data data.frame without .rows column (always last in group_data)
DataFrame extract_groups(const DataFrame& x) {
int n = x.ncol() - 1;
CharacterVector df_names = x.names() ;
List res(n);
CharacterVector new_names(n) ;
for (int i = 0; i < n; i++) {
res[i] = x[i] ;
new_names[i] = df_names[i] ;
}
set_rownames(res, x.nrow()) ;
res.names() = new_names ;
res.attr("class") = "data.frame" ;
return res;
}
// debug utility to print out interval tree structure
// add export declaration when needed for debugging from R
void print_ivl_tree(const DataFrame& x, int depth = 16,
int minbucket = 64, int maxbucket = 512){;
int nx = x.nrow() ;
IntegerVector si = seq_len(nx);
ivl_vector_t vx = makeIntervalVector(x, si) ;
IntervalTree<int, int> itree(std::move(vx), depth, minbucket, maxbucket) ;
Rcout << itree << "\n";
}