Following the tutorial on Exploring Symmetries of Crystal Systems and using the code below:
Clear["Global`*"]; symmetryprops = {"Entity",
"RequiredPointGroupSymmetries", "CrystallographicPointGroups",
"CrystallographicSpaceGroups", "BravaisLattices", "LatticeSystems"};
symmetryheader =
StringReplace[
Prepend[CommonName[
EntityProperty["CrystalFamily", #] & /@ Rest[symmetryprops]],
CommonName[Entity["CrystalSystem"]]], "crystallographic" -> ""];
TextGrid[
Prepend[MapAt[Length,
EntityValue["CrystalSystem", symmetryprops], {All, 3 ;; 5}],
symmetryheader],
Sequence[Dividers -> All,
Background -> {Automatic, {{LightBlue, None}}}]]
Mathematica gives me warning messages:
Error: CommonName:Entity[CrystalSystem] is not an entity. StringReplace:Stringorlistofstringsexpectedatposition1inStringReplace[{CommonName[Entity[CrystalSystem]],requiredpointgroupsymmetry,crystallographicpointgroups,crystallographicspacegroups,Bravaislattice,latticesystems},crystallographic]
Why?

StringReplaceis not a string. – Jason B. Nov 17 '23 at 13:46