Rental Properties Collaboration Data
Can you recommend rental properties to users
@kaggle.arashnic_property_data
Can you recommend rental properties to users
@kaggle.arashnic_property_data
Traditionally speaking, finding the right home is often a long, stressful, and tedious process. But, online system and e-real state makes it easier by giving customer details and unique insights on the homes they’re interested in. Real Estate systems have been expanded recently, generally each company built its own website to advertise its products and perform online buying and selling. Therefore, consumers can get lost in searching among those all websites and it became more conflict and time consuming. For that reason, building Real Estate Recommender System to be used as base for many user of one product became more desirable.
Also the recommendation systems here assist the user to filter the information according to users’ needs because the database for system can be huge and it will take time to get the information.
The dataset has been generated by one of these real state systems and the system logs is a mirror of online rental process. That means that from user subscription to visit and rent there are several steps which each step has a record in user-activity.csv file. Also property.csv will get more details about the items. user-activity collaboration is main data for behavioral analysis and building recommendation algorithms.
CREATE TABLE property (
"item_id" VARCHAR,
"deposit" DOUBLE,
"monthly_rent" BIGINT,
"district_uuid" VARCHAR,
"room_qty" DOUBLE,
"unit_area" BIGINT,
"has_elevator" VARCHAR,
"building_floor_count" DOUBLE,
"unit_floor" DOUBLE,
"has_storage_area" VARCHAR,
"property_age" DOUBLE
);
CREATE TABLE user_activity (
"item_id" VARCHAR,
"user_id" VARCHAR,
"event_type" VARCHAR,
"create_timestamp" TIMESTAMP
);
Anyone who has the link will be able to view this.