Displaying 3 results from an estimated 3 matches for "select2".
Did you mean:
select
2015 Sep 27
1
dovecot, fts, solr5 patch, fuzzy search
...and "handler_fuzzy" (default=select or
handler's value) (the same as handler by default). After this you have
to create second select-like handler with fuzzy capabilities in
solrconfig.xml. Example:
fts_solr = url=http://127.0.0.1:8983/solr/dovecot/ handler=select
handler_fuzzy=select2
This method will use the same index for both search types.
b) "url_fuzzy" URL (different solr core or even address/port), like
this:
fts_solr = url=http://127.0.0.1:8983/solr/dovecot/
url_fuzzy=http://127.0.0.1:8983/solr/dovecot_fuzzy/
This method will allow to have two com...
2003 Feb 21
2
how to chage values in data frame to NA iside a function
Dear all
I have a function in which I would like to change some values to NA according to
some condition.
dropout<-function(y, nahr=FALSE,...) {
<some stuff for computing an index>
if (nahr) y[index]<<-NA
invisible(index)
}
in case y is a vector all works OK but if it is a part of data frame by calling
dropout(df$y) or dropout(df[,number]) no change is done.
Please can you
2005 Apr 14
2
Display execution in a function
Dear all,
Here is a simplified version of a function I made:
############
plotfunc<-function(x){
#x a vector
cat("please select two points","\n")
plot(x)
points<-locator(2)
return(points)
}
############
Using R version 1.01 for mac os x (aqua GUI)
I would like to know what should I do to make
sure that my text line will be printed prior to
the drawing of the plot.