Chuyển đến nội dung chính

Data Science: type of Data

Data Science: type of Data

 
I work in bush of data. What is the type of data? The analysis should define type of data to adapt. I don't say about the primitive data(  string, char, integer, float, pointer) in the computer science. My job work with data object, I have to know about it's properties. My mission is classified data into packages that have the same type of data. The data is indicated to some types. My head is stuck in the question how I present clearly. Sinan Ozdemir show some way to understand the type of data. I take note and add my opinion.
1. Organized data vs Unorganized data:
 Organized data: the data has structure( tables, records, links,graphs...).
 Unorganized data: the data has no structure( free forms, text, random events...)
2. Quantitative vs Qualitative data:
 Quantitative data: the data can be measured by numbers
 Qualitative data: the data can not be measured by numbers, it can be described by languages or by characteristics.
3. The data type in analysis:
 
type of data
 Nominal: qualitative data, name of the object, no inherent order in categories.
 Ordinal: categories have inherent order( ordering, comparison)
 Binary: the data is described into 2 categories
 Interval: the data can be operated by addition or by subtraction.
 Ratio: the data can be operated by multiplication or by division.

The data is manipulated by the computer, type of data related to mathematical operation. The data in good selection will be a strong data input.

Nhận xét

  1. 1xbet korean: betting 1xbet korean: bonus, promotions, support
    1xbet korean 제왕카지노 is a unique 바카라 online betting site that offers a wide range of sport 1xbet betting markets, including soccer, basketball, ice hockey, rugby, golf,

    Trả lờiXóa

Đăng nhận xét

Bài đăng phổ biến từ blog này

freecodecamp: React

freecodecamp: React step by step to practice Create a Simple JSX Element " const JSX = <h1>Hello JSX!</h1>; " Create a Complex JSX Element " const JSX=<div> <h1></h1> <p></p> <ul> <li></li> <li></li> <li></li> </ul> </div>; " Add Comments in JSX " const JSX = ( /* here in first time */ <div> <h1>This is a block of JSX</h1> <p>Here 's a subtitle</p> </div> ); " Render HTML Elements to the DOM " const JSX = ( <div id= 'challenge-node' > <h1>Hello World</h1> <p>Lets render this to the DOM</p> </div> ); // change code below this line ReactDOM.render(JSX,document.getElementById( 'challenge-node' )); " Define an HTML Class in JSX " cons

freecodecamp: basic data structures

freecodecamp: basic data structures I note passed challenge code for help. Use an Array to Store a Collection of Data " let yourArray=[ 1 , true , "3" , 4 , 5 ]; // change this line "  Access an Array's Contents Using Bracket Notation " myArray[ 1 ]= "bb" ; " Add Items to an Array with push() and unshift() " arr.unshift( "I" , 2 , "three" ); arr.push( 7 , "VIII" , 9 ); "  Remove Items from an Array with pop() and shift() " let popped=arr.pop(); // change this line let shifted=arr.shift(); // change this line " Remove Items Using splice() " // change code below this line arr.splice( 2 , 2 ); // change code above this line " Add Items Using splice() " // change code below this line arr.splice( 0 , 2 , 'DarkSalmon' , 'BlanchedAlmond' ); // change code above this line "

freecodecamp: Introduction to the JavaScript Algorithms and Data Structures Projects

freecodecamp: Introduction to the JavaScript Algorithms and Data Structures Projects go go far away from home, coder Palindrome Checker " function palindrome(str) { // Good luck! let reg=/\W|_/ig; let pure= str.replace(reg, '' ).toLowerCase(); console.log(pure); return pure===pure.split( '' ).reverse().join( '' ); } " Roman Numeral Converter " function convertToRoman(num) { let mapping={ "1000" : "M" , "900" : "CM" , "500" : "D" , "400" : "CD" , "100" : "C" , "90" : "XC" , "50" : "L" , "40" : "XL" , "10" : "X" , "9" : "IX" , "5" : "V" , "4" : "IV" , "1" : &quo