Skip to content

Commit

Permalink
modified: README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jubilee2 committed Dec 18, 2024
1 parent 810c9a1 commit 3673b7f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
rcUtils is an R library providing utility functions for parsing and analyzing log data. It includes:

## Functions
### parseLogDetails
### logDetailsParseRecord
Extracts key-value pairs from log details.
### parseLogDetailsToInstance
### logDetailsParseRecordInstance
Extracts instance numbers from log details.
### logFilter
Filters log actions based on specified types.
Expand All @@ -30,10 +30,10 @@ log <- data.frame(
)

# Parse log details
log$detailObj <- parseLogDetails(log$details)
log$detailObj <- logDetailsParseRecord(log$details)

# Extract instance numbers
log$instance <- parseLogDetailsToInstance(log$details)
log$instance <- logDetailsParseRecordInstance(log$details)

# Filter log actions
types <- c("manage", "export")
Expand All @@ -42,8 +42,8 @@ log[selected,]

```
## Features
* parseLogDetails: Extracts key-value pairs from log details.
* parseLogDetailsToInstance: Extracts instance numbers from log details.
* logDetailsParseRecord: Extracts key-value pairs from log details.
* logDetailsParseRecordInstance: Extracts instance numbers from log details.
* logFilter: Filters log actions based on specified types.

## Documentation
Expand Down

0 comments on commit 3673b7f

Please sign in to comment.