Incipit.LogosLink.ContextEngine 2.0.0.2

dotnet add package Incipit.LogosLink.ContextEngine --version 2.0.0.2                
NuGet\Install-Package Incipit.LogosLink.ContextEngine -Version 2.0.0.2                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Incipit.LogosLink.ContextEngine" Version="2.0.0.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Incipit.LogosLink.ContextEngine --version 2.0.0.2                
#r "nuget: Incipit.LogosLink.ContextEngine, 2.0.0.2"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Incipit.LogosLink.ContextEngine as a Cake Addin
#addin nuget:?package=Incipit.LogosLink.ContextEngine&version=2.0.0.2

// Install Incipit.LogosLink.ContextEngine as a Cake Tool
#tool nuget:?package=Incipit.LogosLink.ContextEngine&version=2.0.0.2                

Introduction

Thank you for downloading this LogosLink package.

LogosLink is a set of tools for discourse analysis, as described in www.iatml.org. You can use LogosLink as an interactive desktop app or by adding the relevant packages to your project.

This is the Incipit.LogosLink.Context package, which contains types to manage context datasets in terms of their issues, themes, positions and agents.

How to Get Started

Once you have added this package to your project, you can create context datasets, and load and save them from disk.

Use the Context and ContextPersister classes to create, load and save context datasets.

Additional Documentation

Please see the LogosLink Programmer's Guide for complete documentation.

Samples

You can create a new context like this:

var cx = new Context("Test", "YourUserName");

Then, you can add, edit and delete context elements like this:

//add a theme with description.
var th1 = cx.AddNewTheme("Immigration");
th1.Description = "Anything related to immigration.";

//add a couple of positions to the theme.
var pos1 = th1.AddNewPosition("Open borders are good for the economy.");
var pos2 = th1.AddNewPosition("Illegal immigrants should be returned to their countries of origin immediately.");

//delete the theme.
th1.Delete();

You can load and save context datasets like this:

//load a context from a file.
var cxp = new ContextPersister("YourUserName");
var cx = cxp.LoadContext("C:\\Datasets\\My Context.llx").Context;

//save it back to disk.
cxp.SaveContext(cx, null, "C:\\Datasets\\My Context.llx");

Feedback

We love feedback!

Please write to cesar.gonzalez-perez@incipit.csic.es with your comments and questions. You can also send anonymous feedback on the web at www.iatml.org/en/logoslink/feedback.

Thank you!

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Incipit.LogosLink.ContextEngine:

Package Downloads
Incipit.LogosLink.CorpusEngine

This library implements the IAT/ML concepts related to corpus management.

Incipit.LogosLink.OntologyEngine

This library implements the IAT/ML concepts related to ontology analysis.

Incipit.LogosLink.ArgumentationEngine

This library implements the IAT/ML concepts related to argumentation analysis.

Incipit.LogosLink.AgencyEngine

This library implements the IAT/ML concepts related to agency analysis.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0.2 86 12/17/2024