public interface MissingInserter
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<JobV3> |
run(java.lang.String dataset,
double fraction) |
retrofit2.Call<JobV3> |
run(java.lang.String dataset,
double fraction,
long seed,
java.lang.String _exclude_fields)
Insert missing values.
|
@FormUrlEncoded @POST(value="/3/MissingInserter") retrofit2.Call<JobV3> run(@Field(value="dataset") java.lang.String dataset, @Field(value="fraction") double fraction, @Field(value="seed") long seed, @Field(value="_exclude_fields") java.lang.String _exclude_fields)
dataset - datasetfraction - Fraction of data to replace with a missing valueseed - Seed_exclude_fields - Comma-separated list of JSON field paths to exclude from the result, used like:
"/3/Frames?_exclude_fields=frames/frame_id/URL,__meta"@FormUrlEncoded @POST(value="/3/MissingInserter") retrofit2.Call<JobV3> run(@Field(value="dataset") java.lang.String dataset, @Field(value="fraction") double fraction)