R object Object in R is a data structure which is created to hold the data or value in it.R object has names, content,attributes.R has 5 basic class of objects. Everything we see or create in R is an object.They are: Character Numeric(Real Numbers) Integer(Whole Numbers) Complex Logical(True / False) R provides many functions to … [Read More…] about Objects and Class in R
What is Data Science ?
You might have heard about data science, don’t you? (of course) If you haven’t yet, then you might be interested in getting an overview of data science. Before starting, we will touch the basic hierarchical model of data. Here, we have DIKI pyramid showing relationships between data, information, knowledge, and insights. DATA is an unorganized … [Read More…] about What is Data Science ?
Import Data in R
In this blog we will learn to import different file formats in R.Data may be available in different type of formats (text, CSV, Excel, SAS, SPSS) and R has different functions and packages to load those data. know functions to load those files. R has great documentation for functions, so to learn more about the … [Read More…] about Import Data in R