# na wejście wektor z macierzy, wektor do porównania
# na wyjście jeśli identyczne 1, inaczej 0
find_rows = function(a, b){
if(sum(a==b)==length(b)){c=TRUE}
else{c=FALSE}
return(c)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.