Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import scipy.special | |
import csv | |
parser = argparse.ArgumentParser(description="""Evaluate clustering results. This scripts will return the | |
precision, recall, F1-score and ARI of the provided clustering result""") | |
parser.add_argument("--clustered", | |
required=True, | |
type=str, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Projection example | |
SELECT DISTINCT member_id FROM borrow; | |
SELECT DISTINCT member_id,book_id FROM borrow; | |
-- Selection example | |
SELECT * FROM member WHERE date_of_birth='1997-10-21'; | |
-- Rename example | |
WITH library_member AS (SELECT * FROM member) SELECT * FROM library_member; |
NewerOlder