Atlas Tags
Atlas allows you to visually and programatically associate tags to datapoints. Tags can be added collaboratively by anyone allowed to edit your Atlas Project.
You can access and operate on your assigned tags by using the tags
attribute
of an AtlasMap.
AtlasMapTags
Atlas Map Tag State
Tags are shared across all maps in your AtlasProject. You can manipulate tags by filtering over the associated pandas dataframe
Source code in nomic/data_operations.py
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 |
|
df: pd.DataFrame
property
add(ids, tags)
Adds tags to datapoints.
Parameters:
-
ids
(List[str]
) –The datum ids you want to tag
-
tags
(List[str]
) –A list containing the tags you want to apply to these data points.
Source code in nomic/data_operations.py
get_tags()
Retrieves back all tags made in the web browser for a specific map
Returns:
-
Dict[str, List[str]]
–A dictionary mapping data points to tags.
Source code in nomic/data_operations.py
remove(ids, tags, delete_all=False)
Deletes the specified tags from the given data points.
Parameters:
-
ids
(List[str]
) –The datum_ids to delete tags from.
-
tags
(List[str]
) –The list of tags to delete from the data points. Each tag will be applied to all data points in
ids
. -
delete_all
(bool
, default:False
) –If true, ignores ids parameter and deletes all specified tags from all data points.
Returns:
-
bool
–True on success