Baselight

E-Commerce Website Logs

E-Commerce Website Logs Data in CSV Format

@kaggle.kzmontage_e_commerce_website_logs

About this Dataset

E-Commerce Website Logs

This is a E-commerce website logs data created for helping the data analysts to practice exploratory data analysis and data visualization. The dataset has data on when the website was accessed, IP address of the source, Country, language in which website was accessed, amount of sales made by that IP address.

Included columns:

Time and duration of of accessing the website
Country, Language & Platform in which it was accessed
No. of bytes used & IP address of the person accessing website
Sales or return amount of that person

Tables

E Commerce Website Logs

@kaggle.kzmontage_e_commerce_website_logs.e_commerce_website_logs
  • 3.26 MB
  • 172838 rows
  • 15 columns
Loading...

CREATE TABLE e_commerce_website_logs (
  "accessed_date" TIMESTAMP,
  "duration_secs" BIGINT,
  "network_protocol" VARCHAR,
  "ip" VARCHAR,
  "bytes" BIGINT,
  "accessed_ffom" VARCHAR,
  "age" VARCHAR,
  "gender" VARCHAR,
  "country" VARCHAR,
  "membership" VARCHAR,
  "language" VARCHAR,
  "sales" DOUBLE,
  "returned" VARCHAR,
  "returned_amount" DOUBLE,
  "pay_method" VARCHAR
);