ABOUT DATA

Some camera enthusiast described 1,000 cameras based on 13 properties, such as weight, focal length, price, etc. Data includes the records of 1038 camera models of 21 different brands.

These datasets have been gathered and cleaned up by Petra Isenberg, Pierre Dragicevic and Yvonne Jansen. The original source can be found here

Row one describes the datatype for each column and can probably be removed.

The 13 properties of each camera:


Initial Exploratory Analysis

#Nature of rows and columns//quick review of dataset
glimpse(camera_dataset)
## Observations: 1,038
## Variables: 14
## $ Model                     <chr> "Agfa ePhoto 1280", "Agfa ePhoto 168...
## $ `Release date`            <int> 1997, 1998, 2000, 1999, 1999, 2001, ...
## $ `Max resolution`          <int> 1024, 1280, 640, 1152, 1152, 1600, 1...
## $ `Low resolution`          <int> 640, 640, 0, 640, 640, 640, 640, 0, ...
## $ `Effective pixels`        <int> 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, ...
## $ `Zoom wide (W)`           <int> 38, 38, 45, 35, 43, 51, 34, 42, 50, ...
## $ `Zoom tele (T)`           <int> 114, 114, 45, 35, 43, 51, 102, 42, 5...
## $ `Normal focus range`      <int> 70, 50, 0, 0, 50, 50, 0, 70, 40, 76,...
## $ `Macro focus range`       <int> 40, 0, 0, 0, 0, 20, 0, 3, 10, 16, 5,...
## $ `Storage included`        <int> 4, 4, 2, 4, 40, 8, 8, 2, 1, 8, 8, 8,...
## $ `Weight (inc. batteries)` <int> 420, 420, 0, 0, 300, 270, 0, 320, 46...
## $ Dimensions                <dbl> 95, 158, 0, 0, 128, 119, 0, 93, 160,...
## $ Price                     <int> 179, 179, 179, 269, 1299, 179, 179, ...
## $ X14                       <int> 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, ...
#Number of rows and columns
dim(camera_dataset)
## [1] 1038   14
# Which camera has the maximum price?

max(camera_dataset$Price)
## [1] 7999