wasimmohammed.com
applied data science life cycle - 2
Initializing search
    • Home
    • Blog
    • Projects
    • Learn
    • About
    • Home
      • Blog
        • AWS
        • Arabic
        • Cloud
        • Day in the Life
        • Frontend Development
        • GUI
        • Github
        • Introduction to Oracles
        • ML Basics
        • Next.js
        • R
        • SAM-CLI
        • Software Engineering
        • Version Control
        • Web Development
        • ai
        • algorithms
        • apache airflow
        • api
        • authentication
        • automation
        • backend
        • blockchain
        • build systems
        • c
        • case study
        • cbse grade 12
        • chrome extensions
        • cloudflare
        • cmake
        • computer science
        • cpp
        • cpp templates
        • crypto
        • cs101
        • css
        • data engineering
        • data science
        • dear-imgui
        • deep learning
        • django
        • django-rest-framework
        • docker
        • dsa
        • ethics
        • exceptions
        • fastapi
        • feature scaling
        • ftxui
        • general
        • git
        • go
        • grep
        • http
        • javascript
        • json
        • kubernetes
        • leetcode
        • linux
        • machine learning
        • make
        • ml
        • ninja
        • nlp
        • node
        • orchestration
        • pandas
        • plotting
        • productivity
        • pyspark
        • python
        • pytorch
        • raylib
        • scraping
        • sdl
        • sfml
        • snowflake
        • stablecoins
        • tailwind
        • trading
        • typescript
        • vcpkg
        • vim
        • web-scraping
        • wxwidgets
    • Projects
    • Learn
    • About
    Back to index
    • Metadata
      • Monday, October 6, 2025
      • in data science, ai
      • 1 min read

    applied data science life cycle - 2

    DATA SCIENCE LIFE CYCLE

    INTRODUCTION - MACHINE LEARNING

    R programming :

    x=5
    x="name"
    
    
    x=c(1,5,10) # combine values
    
    x[1]
    
    x[2]
    
    x[3]
    
    x=1:100
    
    x=100:1
    
    
    rv=c(1:10,20,30,40:100)
    
    length(rv)
    
    x=sample(500:700, 6)
    
    wasimmohammed.com