We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently there is no directly way to remove fields. Probably can add a new parameter .remove in Idf$set()
.remove
Idf$set()
Take the construction below as an exmaple:
Construction, Const, !- Name Layer1, !- Outside Layer Layer2, !- Layer 2 Lyaer3; !- Layer 3
If we want to remove Layer2 and move Layer3 to field Layer 2, we can do
Layer2
Layer3
Layer 2
idf$set(Const = list(Layer_2 = NULL), .remove = TRUE)
The results would be
Construction, Const, !- Name Layer1, !- Outside Layer Layer3, !- Layer 2 ; !- Layer 3
The text was updated successfully, but these errors were encountered:
hongyuanjia
No branches or pull requests
Currently there is no directly way to remove fields. Probably can add a new parameter
.remove
inIdf$set()
Take the construction below as an exmaple:
If we want to remove
Layer2
and moveLayer3
to fieldLayer 2
, we can doThe results would be
The text was updated successfully, but these errors were encountered: