help@rskworld.in +91 93305 39277
RSK World
  • Home
  • Development
    • Web Development
    • Mobile Apps
    • Software
    • Games
    • Project
  • Technologies
    • Data Science
    • AI Development
    • Cloud Development
    • Blockchain
    • Cyber Security
    • Dev Tools
    • Testing Tools
  • About
  • Contact

Theme Settings

Color Scheme
Display Options
Font Size
100%
Back to Project
RSK World
customer-churn
RSK World
customer-churn
Customer Churn Dataset
customer-churn
  • data
  • notebooks
  • output
  • scripts
  • .gitignore748 B
  • CONTRIBUTING.md1.5 KB
  • LICENSE1.6 KB
  • PROJECT_INFO.md3.6 KB
  • README.md4.9 KB
  • SETUP.md3.1 KB
  • index.html7.6 KB
  • requirements.txt448 B
index.html
index.html
Raw Download
Find: Go to:
<!--
    Customer Churn Dataset - Demo Page
    ====================================
    Provided by: RSK World
    Website: https://rskworld.in/
    Email: help@rskworld.in
    Phone: +91 93305 39277
    Contact Page: https://rskworld.in/contact.php
-->

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Customer Churn Dataset - RSK World</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        :root {
            --warning-color: #ffc107;
        }
        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px 0;
        }
        .project-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            padding: 30px;
            margin: 20px 0;
        }
        .project-header {
            text-align: center;
            margin-bottom: 30px;
        }
        .project-icon {
            font-size: 64px;
            color: var(--warning-color);
            margin-bottom: 20px;
        }
        .feature-list {
            list-style: none;
            padding: 0;
        }
        .feature-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        .feature-list li:last-child {
            border-bottom: none;
        }
        .feature-list li i {
            color: var(--warning-color);
            margin-right: 10px;
        }
        .tech-badge {
            display: inline-block;
            padding: 5px 15px;
            margin: 5px;
            background: #f8f9fa;
            border-radius: 20px;
            font-size: 14px;
        }
        .difficulty-badge {
            padding: 5px 15px;
            border-radius: 20px;
            display: inline-block;
            font-weight: bold;
        }
        .btn-download {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            color: white;
            font-weight: bold;
            transition: transform 0.3s;
        }
        .btn-download:hover {
            transform: translateY(-2px);
            color: white;
        }
        .contact-info {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-top: 30px;
            text-align: center;
        }
        .contact-info a {
            color: #667eea;
            text-decoration: none;
        }
        .contact-info a:hover {
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="project-card">
            <div class="project-header">
                <i class="fas fa-table project-icon"></i>
                <h1>Customer Churn Dataset</h1>
                <p class="lead text-muted">Comprehensive customer churn dataset with demographic, usage, and billing information</p>
            </div>

            <div class="row">
                <div class="col-md-8">
                    <h3><i class="fas fa-info-circle text-primary"></i> Description</h3>
                    <p>This dataset contains customer information including demographics, account details, usage patterns, billing history, and churn status. Perfect for building classification models to predict customer churn, analyzing retention factors, and understanding customer behavior patterns.</p>

                    <h3 class="mt-4"><i class="fas fa-star text-warning"></i> Features</h3>
                    <ul class="feature-list">
                        <li><i class="fas fa-check-circle"></i> Demographic and account information</li>
                        <li><i class="fas fa-check-circle"></i> Usage patterns and billing data</li>
                        <li><i class="fas fa-check-circle"></i> Churn labels and timestamps</li>
                        <li><i class="fas fa-check-circle"></i> Multiple feature categories</li>
                        <li><i class="fas fa-check-circle"></i> Ready for ML model training</li>
                    </ul>

                    <h3 class="mt-4"><i class="fas fa-tags text-info"></i> Technologies</h3>
                    <div>
                        <span class="tech-badge">CSV</span>
                        <span class="tech-badge">Excel</span>
                        <span class="tech-badge">Pandas</span>
                        <span class="tech-badge">NumPy</span>
                    </div>

                    <h3 class="mt-4"><i class="fas fa-signal text-success"></i> Difficulty Level</h3>
                    <span class="difficulty-badge bg-success text-white">Beginner</span>

                    <div class="mt-4">
                        <a href="customer-churn.zip" class="btn btn-download" download>
                            <i class="fas fa-download"></i> Download Dataset
                        </a>
                    </div>
                </div>

                <div class="col-md-4">
                    <div class="card">
                        <div class="card-body">
                            <h5 class="card-title"><i class="fas fa-database"></i> Dataset Info</h5>
                            <p class="card-text">
                                <strong>Category:</strong> Tabular Data<br>
                                <strong>Format:</strong> CSV, Excel<br>
                                <strong>Size:</strong> ~500KB<br>
                                <strong>Records:</strong> 10,000+<br>
                                <strong>Features:</strong> 15+
                            </p>
                        </div>
                    </div>

                    <div class="card mt-3">
                        <div class="card-body">
                            <h5 class="card-title"><i class="fas fa-book"></i> Use Cases</h5>
                            <ul class="list-unstyled">
                                <li>✓ Churn prediction models</li>
                                <li>✓ Customer segmentation</li>
                                <li>✓ Retention analysis</li>
                                <li>✓ Behavior pattern analysis</li>
                                <li>✓ ML classification training</li>
                            </ul>
                        </div>
                    </div>
                </div>
            </div>

            <div class="contact-info">
                <h5><i class="fas fa-user"></i> Provided by RSK World</h5>
                <p class="mb-2">
                    <i class="fas fa-globe"></i> Website: <a href="https://rskworld.in/" target="_blank">https://rskworld.in/</a><br>
                    <i class="fas fa-envelope"></i> Email: <a href="mailto:help@rskworld.in">help@rskworld.in</a><br>
                    <i class="fas fa-phone"></i> Phone: <a href="tel:+919330539277">+91 93305 39277</a><br>
                    <i class="fas fa-link"></i> Contact: <a href="https://rskworld.in/contact.php" target="_blank">https://rskworld.in/contact.php</a>
                </p>
            </div>
        </div>
    </div>

    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>

188 lines•7.6 KB
markup

About RSK World

Founded by Molla Samser, with Designer & Tester Rima Khatun, RSK World is your one-stop destination for free programming resources, source code, and development tools.

Founder: Molla Samser
Designer & Tester: Rima Khatun

Development

  • Game Development
  • Web Development
  • Mobile Development
  • AI Development
  • Development Tools

Legal

  • Terms & Conditions
  • Privacy Policy
  • Disclaimer

Contact Info

Nutanhat, Mongolkote
Purba Burdwan, West Bengal
India, 713147

+91 93305 39277

hello@rskworld.in
support@rskworld.in

© 2026 RSK World. All rights reserved.

Content used for educational purposes only. View Disclaimer