Though solution is not straight forward, however, I suggest to exploit common libraries for quick deployments, such as, dfply (python) and dplyr (R). Below is a quick example:
## R Code
library(dplyr)
testdata %>% filter(col.1==10)
## Python Code
from dfply import *
testdata >> filter_by(X.col.1==10)
Those who have not yet experience this can try out now and let me know your experiences at either info@tatvaai.com or mavuluri.pradeep@gmail.com
Happy R and Python Programming!
No comments:
Post a Comment