Are they the seeds to be nurtured to bring in automation, innovation and transformation. There is a saying, necessity is the mother of invention. I would say, innovation is amalgamation of creativity and necessity. We need to understand the ecosystem, to apply creativity and identify the ideas to bring in change. We need to be competent with changing ecosystem and think beyond the possible. What is the biggest challenge in doing this? "Unlearning and Learning", we think the current ecosystem is the best. Be it health, finserve, agriculture or mechanical domain, we need to emphasize with the stakeholders, to come up with the strategy to drive. The very evident example here is the quality of life is changing every millisecond. Few decades back the phone connection was limited to few, but today all the millennials are having a mobile phone. Now phone is not just a medium to talk, but are so powerful devices that an innovative solution can be developed on it....
Hello Data Experts, Let me continue from my last blog http://outstandingoutlier.blogspot.in/2017/08/basic-r-programing.html “Basic R Programming” where we discussed Assignment and data Operators. Let us move forward and understand how to load Datasets. First let me define .csv with data in it and we will use it for this session. Copy the below data and paste it in a notepad, save it as “Plasma.csv” file. ************** Number of times Pregnant, Plasma glucose concentration, Diastolic blood pressure, Triceps Skin fold thickness 6,148,72,35 1,85,66,29 8,183,64,0 1,89,66,23 0,137,40,35 5,116,74,0 3,78,50,32 10,115,0,0 2,197,70,45 8,125,96,0 4,110,92,0 10,168,74,0 10,139,80,0 1,189,60,23 ************** As a best practice one should set the working directory using setwd() command. First let us find out the working directory which h is by default set, by executing below command. getwd() If the result of the...