SlideShare a Scribd company logo
1 of 61
Download to read offline
1
Building	Web	application	with	panels	and	view	configurations
i-views	University	Part	08	
Basic	knowledge:	
Building	Web	application	with	
panels	and	view	configurations
2
Building	Web	application	with	panels	and	view	configurations
2
Your teacher today
Nadine	Proske
Knowledge	Engineer
intelligent	views	gmbh
3
Building	Web	application	with	panels	and	view	configurations
3
Content	(Basic	knowledge)
1. Overview of	the configuration elements of	a	web	application
1. Panels
2. Actions
3. View	configurations
2. Preconditions to	build a	web	application
3. Proceeding to	build a	web	application
4. Panels
5. Basic	knowledge:	View	configurations
6. Task:	Hello World	with	panels
4
Building	Web	application	with	panels	and	view	configurations
4
Content	(Advanced knowledge)
1. Advanced knowledge:		view configurations
2. Actions
3. Task:	Building	a	simple	web	application
4. Homework:	Expanding the builded web	application with	selected functions
5
Building	Web	application	with	panels	and	view	configurations
5
Web	application
Applications consist of	4	parts:
- What:	the data of	the semantic graph database (objects and their properties),	parts of	the semantic
model
- Where:	Panels
- Division	of	the visible parts of	the surface in	areas
- When:	Actions
- Actions	influence the content of	the panels
- How:	view configurations
- Configured views	on	objects or parts of	the semantic model
6
Building	Web	application	with	panels	and	view	configurations
6
7
Building	Web	application	with	panels	and	view	configurations
7
Panels
Where ist	my data shown?
Panels	detemine how the visible sections of	an	application are	divided.	So	panels determine the
fundamental	layout of	the visulisation surface.
- Panels	can influence each other
- Panels	can contain further Panels	or view configurations
- Panels	receive always exactly one object or type	when they are	activated
- Panels	can pass	their element (object or type)	to	the contained panels
- There is	a	possibility to	overwrite the element via	script
- Panels	don‘t have any other use.	Anything else is	configured via	Actions	and view configurations.
8
Building	Web	application	with	panels	and	view	configurations
8
9
Building	Web	application	with	panels	and	view	configurations
9
Actions
When ist	my data shown?
Actions	control which views	are	visualized and the dependences between the panels.
- Types of	actions are
- Menus,	buttons
- Clicks on	objects or table rows
- You can determine in	which panel actions have impacts.
10
Building	Web	application	with	panels	and	view	configurations
10
11
Building	Web	application	with	panels	and	view	configurations
11
view configurations
How is	my data shown?
View	configurations are	contained in	panels and determine,	how objects and types are	visualized.	View	
configurations are	views	on	the data.
- Free	of	context view configurations
- They are	not	bound to	a	particular type.
- For example:	picture,	text,	JavaScript,	menus,	searches,	facets
- Object dependend view configurations
- Different	views	on	the data can be specified.	There can be as many view configurations per	type	as you want.	
- They are	determined at	the type	of	the objects.
- For example:	groups,	properties,	tables and styles
12
Building	Web	application	with	panels	and	view	configurations
12
13
Building	Web	application	with	panels	and	view	configurations
13
Preconditions for building a	web	application
- Components
- REST
- view configuration
- Viewconfiguration-Mapper
- Static File	Resource
- Zip	with	index.html
- Mediator
- Bridge:	for REST-Services
14
Building	Web	application	with	panels	and	view	configurations
14
Preconditions for building a	web	application
- Components
- REST
- view configuration
- Viewconfiguration-Mapper
- Net-Navigator
- Static File	Resource
- Zip	with	index.html
- Mediator
- Bridge
15
Building	Web	application	with	panels	and	view	configurations
15
Proceeding to	build a	web	application
1. Build the semantic model
2. Divide the surface in	sections with	panels
3. Build the view configurations for objects and link	them to	the panels
16
Building	Web	application	with	panels	and	view	configurations
16
Proceeding to	build a	web	application
Step 1:	Go	to	the application with	the identifier „viewConfigMapper“	and there create a	main window
panel.
17
Building	Web	application	with	panels	and	view	configurations
17
Kind	of	panels and basic conditions
- Main	window Panel
- Each	application	consists	of	exactly	one	main	window	panel
- Contains	„normal”	panels	and	one	window	title	panel
- Dialog	panel
- Is	located	as	a	pop-up	window	in	front	of	the	main	window
- Each	application	can	contain	any	number	of	dialog	panels
- Contains	window	title	panels	and	foot	line	panels
Example for a	dialog panel
18
Building	Web	application	with	panels	and	view	configurations
18
Proceeding to	build a	web	application
Step 2:	Determine the type	of	the panel.
19
Building	Web	application	with	panels	and	view	configurations
19
Panel	types
Layout-Panels
Layout-panels	contain	additional	panels.	*
- Linear	layout
• All	contained	panels	are	displayed	simultaneously
• Determination	of	the	orientation	(horizontal,	vertical)
- Switching	layout
• There	is	always	only	one	containing	panel	shown	simultaneously	on	the	same	visualization	area.
*Currently	it	isn’t	possible	to	reuse	a	panel.	This	will	be	possible	with	one	of	the	next	updates.
20
Building	Web	application	with	panels	and	view	configurations
20
Panel	types
View	panels
View	panels	don’t	contain	further	panels.
View	panels	contain	view	configurations.
- Flexible	view
• Several	views	are	possible	dependent	of	the	type	of	the	displayed	object.
- Fixed	view
• Contains	a	fixed	element	of	the	model
• Pictures,	texts,	menus
21
Building	Web	application	with	panels	and	view	configurations
21
In	this case the main
window panel is	a	linear	
panel,	because all	
contained panels are	
shown simultaneously (in	
this case vertical).
22
Building	Web	application	with	panels	and	view	configurations
22
In	this case the panel is	a	
linear	panel,	too,	because
all	contained panels are	
shown simultaneously (in	
this case horizontal).
23
Building	Web	application	with	panels	and	view	configurations
23
This	panel is	a	panel of	the
type	flexible	view,	because
it doesn‘t contain further
panels.	It is	not	a	fixed
view,	because several view
configurations can be
shown here dependent on	
the object that is	shown
(here it is	„one“).
24
Building	Web	application	with	panels	and	view	configurations
24
Question:	What panel is	
this?
25
Building	Web	application	with	panels	and	view	configurations
25
Question:	What panel is	
this?
It is	a	linear	layout panel
with	a	vertical orientation
of	the two contained
panels.
26
Building	Web	application	with	panels	and	view	configurations
26
Question:	What panel is	
this?
27
Building	Web	application	with	panels	and	view	configurations
27
Question:	What panel is	
this?
This	is	a	flexible	view
panel.	It is not	a	fixed
view,	because there is	not	
always shown the person
„Nadine	Proske“.	
The	view configuration
determines for the type	
„person“	that here is	
always a	picture next to	
the properties of	the
person and the buttons
„projects“	and „events“.
28
Building	Web	application	with	panels	and	view	configurations
28
Proceeding to	build a	web	application
Step 3:	Add	further panels.
29
Building	Web	application	with	panels	and	view	configurations
29
Proceeding to	build a	web	application
Step 4:	Link	the panels with	the view configurations.
For example,	link	the window title	panel with	the view configuration of	the type	label.
30
Building	Web	application	with	panels	and	view	configurations
30
Panels	- Configuration
Actions	activate	in	panel:	All	actions,	which	are	activated	in	the	source-panel,	lead	to	a	display	of	the	source-panel	with	
its	transferred	object.	(For	example:	Each	click	in	the	panel	“object	list”,	leads	to	the	display	of	the	result	in	the	“detail	
view”	panel.)	
Influences:	Here	you	can	determine	a	panel,	which	will	be	influenced	by	the	current	panel	(For	example:	depending	on	
which	objects	are	displayed	in	the	panel	“search	results”,	it	influences	which	facets	will	be	displayed	in	the	panel	
“facets”.)	
• Script	for	target	object:	By	means	of	scripts,	it	is	possible	not	simply	to	indicate	panels,	but	also	conditions.	This	enables	the	current	
panel	to	influence	other	selected	panels.
31
Building	Web	application	with	panels	and	view	configurations
31
Panels	- Configuration
Configuration name:	The	panel can have any name so	you can find	it again quickly.
32
Building	Web	application	with	panels	and	view	configurations
32
„View	panels“	- Configuration
Start	element: Here	you	can	specify	a	concrete	object	
or	type,	who	serves	as	output	element	and	from	
which	it	is	possible	to	take	additional	ways	through	
the	network.
Script	for	start	element:	Here	you	can	find	formulate	
conditions,	under	which	a	specific	object	or	type	
shall	be	displayed	as	a	start	element.
Do	not	override	start	element: If	this	field	is	checked,	
no	User	can	delete	the	start	element.
Sub-configuration	(fixed	view	only!): Here	you	can	
specify	the	view	configuration,	which	is	used	for	the	
fixed	view.
Little	reminder:
View	panels	don’t	contain	further	panels.
View	panels	contain	view	configurations.
33
Building	Web	application	with	panels	and	view	configurations
33
„Layout	panels“	- Configuration
Activate	first by default (only in	switching layout!):	Is	it true,	that means that the first sub panel is	activated by
default (in	the example here it is	the start page).
Little	reminder:
Layout	panels contain further panels.
34
Building	Web	application	with	panels	and	view	configurations
34
Panels	- Layout
Width and	height (or	maximal	width	and	maximal	height)	
can	be	specified	in	pixels	or	percentage.
Flex-grow:	The	flex-grow	property	defines	the	ability	for	a	
flex	item	to	grow	if	necessary.	As	you	can	see	in	the	example	
on	the	right,	the	elements	1,2	and	4	have	the	factor	1,	while	
element	3	has	the	factor	2,	therefore	it	takes	twice	as	much	
of	space	as	the	other	elements.
Flex-shrink: The	flex-shrink	property	specifies	the	shrinkage	
factor	of	flexible	elements.	As	you	can	see	in	the	example	on	
the	right,	the	element	1,2	and	4	have	the	factor	2,	while	
element	3	has	the	factor	of	1,	therefore	they	are	twice	as	
small	as	element	3. 3 421
35
Building	Web	application	with	panels	and	view	configurations
35
Panels	- Context
In	the	context-tab	of	the	panels,	you	can	check	back	and	delete,	all	relations	of	the	current	panel	
to	other	panels	and	view	configurations.
Adding	relations	at	this	point	isn’t	possible	yet	in	i-views	5.0.	Therefore	the	procedure	is	to	
determine	the	display	of	the	relations	in	the	view-configuration.
36
Building	Web	application	with	panels	and	view	configurations
36
View	configurations
How is	my data shown?
View	configurations are	contained in	panels and determine,	how objects and types are	visualized.	view
configurations are	views	on	the data.
- Free	of	context view configurations
- They are	not	bound to	a	particular type.
- For example:	picture,	text,	JavaScript,	menus,	searches,	facets
- Object dependend view configurations
- Different	views	on	the data can be figured.	There can as many view configurations per	type.	
- They are	determined at	the type	of	the objects.
- For example:	groups,	properties,	tables and styles
Little	reminder
37
Building	Web	application	with	panels	and	view	configurations
37
View	configurations
38
Building	Web	application	with	panels	and	view	configurations
38
View	configurations
39
Building	Web	application	with	panels	and	view	configurations
39
View	configurations
Label
40
Building	Web	application	with	panels	and	view	configurations
40
Panels	and view configuration
Step 4:	Link	the panels with	the view configurations.
For example,	link	the window title	panel with	the view configuration of	the type	label.
Little	reminder
41
Building	Web	application	with	panels	and	view	configurations
41
View	configurations
Image
42
Building	Web	application	with	panels	and	view	configurations
42
View	configurations
Menu
43
Building	Web	application	with	panels	and	view	configurations
43
View	configurations
Search	field view
44
Building	Web	application	with	panels	and	view	configurations
44
View	configurations
Search	result view
45
Building	Web	application	with	panels	and	view	configurations
45
View	configurations
Table
46
Building	Web	application	with	panels	and	view	configurations
46
View	configurations
Facet view
47
Building	Web	application	with	panels	and	view	configurations
47
View	configurations
Search
48
Building	Web	application	with	panels	and	view	configurations
48
View	configurations
Search
49
Building	Web	application	with	panels	and	view	configurations
49
View	configurations
Text
50
Building	Web	application	with	panels	and	view	configurations
50
View	configurations
Graph
51
Building	Web	application	with	panels	and	view	configurations
51
View	configurations
Graph	configuration
52
Building	Web	application	with	panels	and	view	configurations
52
View	configurations
Group:	All	contained view configurations are	shown simultaneously.	Depending on	their style	the
contained view configurations are	located one below the other or side by side.
Alternative:	The	contained view configurations are	shown as alternatives	and you have to	choose which
one to	show in	a	tab menu,	so	only one view configuration is	shown in	the available space.
53
Building	Web	application	with	panels	and	view	configurations
53
View	configurations
Group
54
Building	Web	application	with	panels	and	view	configurations
54
View	configurations
Properties
55
Building	Web	application	with	panels	and	view	configurations
55
View	configurations
Property
56
Building	Web	application	with	panels	and	view	configurations
56
Task:	Hello World	with	panels
Configure a	simple	text „Hello World“	with	
the help of	panels and open	it in	your
browser with	the localhost server.
57
Building	Web	application	with	panels	and	view	configurations
57
Task:	Hello World	with	panels
1. Start	the mediator
2. Start	the bridge
3. Go	to	„Anwendung“	(german for „application“,	
soon the english terms will	be added)	and click
on	the application „viewconfigurationmapper“.	
The	identifier should have the name
„viewConfigMapper“.
4. Create	the main window panel for your
application.	Choose fixed view (german:	
festgelegte	Ansicht)	as a	panel type.
The	Mediator	is	needed if you want to	access
the UI	and the network simultaneously.
58
Building	Web	application	with	panels	and	view	configurations
58
Task:	Hello World	with	panels
5.	Create	a	sub configuration with	the view
configuration type	„Text“
6.	Refresh	the application with
7.	Open	the web	application with	the URL	
http://localhost:[port_of_the_bridge.ini]/[RESTService
]/[StaticFileResource]/index.html
In	our case the URL	is	
http://localhost:8815/viewconfig/viewconfigmapper/i
ndex.html
59
Building	Web	application	with	panels	and	view	configurations
59
Result:	Hello World	with	panels
60
Building	Web	application	with	panels	and	view	configurations
60
Content	(Advanced knowledge)
1. Advanced knowledge:		view configurations
2. Actions
3. Task:	Building	a	simple	web	application
4. Homework:	Expanding the builded web	application with	selected functions
61
Building	Web	application	with	panels	and	view	configurations
61
Send	your questions to:
contact-webinar@i-views.com
No	homework	today.	
Next	lesson:	Thursday
Thank you for visiting
i-views	University

More Related Content

Similar to L8: Panels and view configurations

L11: panels and view configurations (advanced)
L11: panels and view configurations (advanced)L11: panels and view configurations (advanced)
L11: panels and view configurations (advanced)medialeg gmbh
 
Contentful with Netgen Layouts workshop
Contentful with Netgen Layouts workshopContentful with Netgen Layouts workshop
Contentful with Netgen Layouts workshopIvo Lukac
 
Lecture14 abap on line
Lecture14 abap on lineLecture14 abap on line
Lecture14 abap on lineMilind Patil
 
UI5con 2017 - UI5 Components - More Performance...
UI5con 2017 - UI5 Components - More Performance...UI5con 2017 - UI5 Components - More Performance...
UI5con 2017 - UI5 Components - More Performance...Peter Muessig
 
ONLINE PORTAL WITH COMPILER USING C#
ONLINE  PORTAL WITH COMPILER USING C#ONLINE  PORTAL WITH COMPILER USING C#
ONLINE PORTAL WITH COMPILER USING C#Pritam Guchhait
 
Creating Mobile Aps without Coding
Creating Mobile Aps without CodingCreating Mobile Aps without Coding
Creating Mobile Aps without CodingJack Molisani
 
Pinned sites in ie9 [beta]
Pinned sites in ie9 [beta]Pinned sites in ie9 [beta]
Pinned sites in ie9 [beta]Kirk Yamamoto
 
Jerry Baldwin's Project Portfolio
Jerry Baldwin's Project PortfolioJerry Baldwin's Project Portfolio
Jerry Baldwin's Project Portfoliojbaldwin85307
 
Oracle forms developer 10g vol1
Oracle forms developer 10g vol1Oracle forms developer 10g vol1
Oracle forms developer 10g vol1abdull466
 
Web browser architecture
Web browser architectureWeb browser architecture
Web browser architectureNguyen Quang
 
01 asp.net session01
01 asp.net session0101 asp.net session01
01 asp.net session01Vivek chan
 

Similar to L8: Panels and view configurations (20)

L11: panels and view configurations (advanced)
L11: panels and view configurations (advanced)L11: panels and view configurations (advanced)
L11: panels and view configurations (advanced)
 
Contentful with Netgen Layouts workshop
Contentful with Netgen Layouts workshopContentful with Netgen Layouts workshop
Contentful with Netgen Layouts workshop
 
CODE IGNITER
CODE IGNITERCODE IGNITER
CODE IGNITER
 
Web Components and PWA
Web Components and PWAWeb Components and PWA
Web Components and PWA
 
Lecture14 abap on line
Lecture14 abap on lineLecture14 abap on line
Lecture14 abap on line
 
UI5con 2017 - UI5 Components - More Performance...
UI5con 2017 - UI5 Components - More Performance...UI5con 2017 - UI5 Components - More Performance...
UI5con 2017 - UI5 Components - More Performance...
 
ONLINE PORTAL WITH COMPILER USING C#
ONLINE  PORTAL WITH COMPILER USING C#ONLINE  PORTAL WITH COMPILER USING C#
ONLINE PORTAL WITH COMPILER USING C#
 
Oracle 12c Launch Event 01 JDeveloper Jonathan Damen and Marcel Oldenkamp
Oracle 12c Launch Event 01 JDeveloper Jonathan Damen and Marcel OldenkampOracle 12c Launch Event 01 JDeveloper Jonathan Damen and Marcel Oldenkamp
Oracle 12c Launch Event 01 JDeveloper Jonathan Damen and Marcel Oldenkamp
 
AnikResume
AnikResumeAnikResume
AnikResume
 
Creating Mobile Aps without Coding
Creating Mobile Aps without CodingCreating Mobile Aps without Coding
Creating Mobile Aps without Coding
 
A comprehensive software infrastructure of .Net
A comprehensive software infrastructure of .Net  A comprehensive software infrastructure of .Net
A comprehensive software infrastructure of .Net
 
Web fundamentals
Web fundamentalsWeb fundamentals
Web fundamentals
 
Pinned sites in ie9 [beta]
Pinned sites in ie9 [beta]Pinned sites in ie9 [beta]
Pinned sites in ie9 [beta]
 
Jerry Baldwin's Project Portfolio
Jerry Baldwin's Project PortfolioJerry Baldwin's Project Portfolio
Jerry Baldwin's Project Portfolio
 
web development
web developmentweb development
web development
 
C# p1
C# p1C# p1
C# p1
 
Oracle forms developer 10g vol1
Oracle forms developer 10g vol1Oracle forms developer 10g vol1
Oracle forms developer 10g vol1
 
Web browser architecture
Web browser architectureWeb browser architecture
Web browser architecture
 
01 asp.net session01
01 asp.net session0101 asp.net session01
01 asp.net session01
 
Beyond The MVC
Beyond The MVCBeyond The MVC
Beyond The MVC
 

More from medialeg gmbh

L14: Access Rights and Triggers
L14: Access Rights and TriggersL14: Access Rights and Triggers
L14: Access Rights and Triggersmedialeg gmbh
 
L10: queries and indices
L10: queries and indicesL10: queries and indices
L10: queries and indicesmedialeg gmbh
 
L9: Putting the pieces together
L9: Putting the pieces togetherL9: Putting the pieces together
L9: Putting the pieces togethermedialeg gmbh
 
L7: Admin-Tool (english)
L7: Admin-Tool (english)L7: Admin-Tool (english)
L7: Admin-Tool (english)medialeg gmbh
 
L6: Advanced Structured Queries (english)
L6: Advanced Structured Queries (english)L6: Advanced Structured Queries (english)
L6: Advanced Structured Queries (english)medialeg gmbh
 
L5: Advanced modelling (english)
L5: Advanced modelling (english)L5: Advanced modelling (english)
L5: Advanced modelling (english)medialeg gmbh
 
L4: imports exports (english)
L4: imports exports (english)L4: imports exports (english)
L4: imports exports (english)medialeg gmbh
 
L3: architecture and services (english)
L3: architecture and services (english)L3: architecture and services (english)
L3: architecture and services (english)medialeg gmbh
 
L2: Structured queries (english)
L2: Structured queries (english)L2: Structured queries (english)
L2: Structured queries (english)medialeg gmbh
 
L1: introduction to i-views (english)
L1: introduction to i-views (english)L1: introduction to i-views (english)
L1: introduction to i-views (english)medialeg gmbh
 

More from medialeg gmbh (13)

L14: Access Rights and Triggers
L14: Access Rights and TriggersL14: Access Rights and Triggers
L14: Access Rights and Triggers
 
L13: Scripting
L13: ScriptingL13: Scripting
L13: Scripting
 
L12: REST Service
L12: REST ServiceL12: REST Service
L12: REST Service
 
L10: queries and indices
L10: queries and indicesL10: queries and indices
L10: queries and indices
 
L9: Putting the pieces together
L9: Putting the pieces togetherL9: Putting the pieces together
L9: Putting the pieces together
 
L7: Admin-Tool (english)
L7: Admin-Tool (english)L7: Admin-Tool (english)
L7: Admin-Tool (english)
 
L6: Advanced Structured Queries (english)
L6: Advanced Structured Queries (english)L6: Advanced Structured Queries (english)
L6: Advanced Structured Queries (english)
 
L5: Advanced modelling (english)
L5: Advanced modelling (english)L5: Advanced modelling (english)
L5: Advanced modelling (english)
 
L4: imports exports (english)
L4: imports exports (english)L4: imports exports (english)
L4: imports exports (english)
 
L3: architecture and services (english)
L3: architecture and services (english)L3: architecture and services (english)
L3: architecture and services (english)
 
L2: Structured queries (english)
L2: Structured queries (english)L2: Structured queries (english)
L2: Structured queries (english)
 
L1: introduction to i-views (english)
L1: introduction to i-views (english)L1: introduction to i-views (english)
L1: introduction to i-views (english)
 
Using Social Media
Using Social Media Using Social Media
Using Social Media
 

Recently uploaded

Bank Loan Approval Analysis: A Comprehensive Data Analysis Project
Bank Loan Approval Analysis: A Comprehensive Data Analysis ProjectBank Loan Approval Analysis: A Comprehensive Data Analysis Project
Bank Loan Approval Analysis: A Comprehensive Data Analysis ProjectBoston Institute of Analytics
 
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...Thomas Poetter
 
Real-Time AI Streaming - AI Max Princeton
Real-Time AI  Streaming - AI Max PrincetonReal-Time AI  Streaming - AI Max Princeton
Real-Time AI Streaming - AI Max PrincetonTimothy Spann
 
Digital Marketing Plan, how digital marketing works
Digital Marketing Plan, how digital marketing worksDigital Marketing Plan, how digital marketing works
Digital Marketing Plan, how digital marketing worksdeepakthakur548787
 
FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024
FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024
FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024Susanna-Assunta Sansone
 
Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)Cathrine Wilhelmsen
 
modul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptxmodul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptxaleedritatuxx
 
IBEF report on the Insurance market in India
IBEF report on the Insurance market in IndiaIBEF report on the Insurance market in India
IBEF report on the Insurance market in IndiaManalVerma4
 
why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...
why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...
why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...Jack Cole
 
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...Boston Institute of Analytics
 
The Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptx
The Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptxThe Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptx
The Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptxTasha Penwell
 
Decoding Patterns: Customer Churn Prediction Data Analysis Project
Decoding Patterns: Customer Churn Prediction Data Analysis ProjectDecoding Patterns: Customer Churn Prediction Data Analysis Project
Decoding Patterns: Customer Churn Prediction Data Analysis ProjectBoston Institute of Analytics
 
Learn How Data Science Changes Our World
Learn How Data Science Changes Our WorldLearn How Data Science Changes Our World
Learn How Data Science Changes Our WorldEduminds Learning
 
Semantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptxSemantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptxMike Bennett
 
6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...
6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...
6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...Dr Arash Najmaei ( Phd., MBA, BSc)
 
English-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdf
English-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdfEnglish-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdf
English-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdfblazblazml
 
What To Do For World Nature Conservation Day by Slidesgo.pptx
What To Do For World Nature Conservation Day by Slidesgo.pptxWhat To Do For World Nature Conservation Day by Slidesgo.pptx
What To Do For World Nature Conservation Day by Slidesgo.pptxSimranPal17
 
SMOTE and K-Fold Cross Validation-Presentation.pptx
SMOTE and K-Fold Cross Validation-Presentation.pptxSMOTE and K-Fold Cross Validation-Presentation.pptx
SMOTE and K-Fold Cross Validation-Presentation.pptxHaritikaChhatwal1
 
Data Analysis Project Presentation: Unveiling Your Ideal Customer, Bank Custo...
Data Analysis Project Presentation: Unveiling Your Ideal Customer, Bank Custo...Data Analysis Project Presentation: Unveiling Your Ideal Customer, Bank Custo...
Data Analysis Project Presentation: Unveiling Your Ideal Customer, Bank Custo...Boston Institute of Analytics
 
Cyber awareness ppt on the recorded data
Cyber awareness ppt on the recorded dataCyber awareness ppt on the recorded data
Cyber awareness ppt on the recorded dataTecnoIncentive
 

Recently uploaded (20)

Bank Loan Approval Analysis: A Comprehensive Data Analysis Project
Bank Loan Approval Analysis: A Comprehensive Data Analysis ProjectBank Loan Approval Analysis: A Comprehensive Data Analysis Project
Bank Loan Approval Analysis: A Comprehensive Data Analysis Project
 
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
 
Real-Time AI Streaming - AI Max Princeton
Real-Time AI  Streaming - AI Max PrincetonReal-Time AI  Streaming - AI Max Princeton
Real-Time AI Streaming - AI Max Princeton
 
Digital Marketing Plan, how digital marketing works
Digital Marketing Plan, how digital marketing worksDigital Marketing Plan, how digital marketing works
Digital Marketing Plan, how digital marketing works
 
FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024
FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024
FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024
 
Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)
 
modul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptxmodul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptx
 
IBEF report on the Insurance market in India
IBEF report on the Insurance market in IndiaIBEF report on the Insurance market in India
IBEF report on the Insurance market in India
 
why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...
why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...
why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...
 
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...
 
The Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptx
The Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptxThe Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptx
The Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptx
 
Decoding Patterns: Customer Churn Prediction Data Analysis Project
Decoding Patterns: Customer Churn Prediction Data Analysis ProjectDecoding Patterns: Customer Churn Prediction Data Analysis Project
Decoding Patterns: Customer Churn Prediction Data Analysis Project
 
Learn How Data Science Changes Our World
Learn How Data Science Changes Our WorldLearn How Data Science Changes Our World
Learn How Data Science Changes Our World
 
Semantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptxSemantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptx
 
6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...
6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...
6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...
 
English-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdf
English-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdfEnglish-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdf
English-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdf
 
What To Do For World Nature Conservation Day by Slidesgo.pptx
What To Do For World Nature Conservation Day by Slidesgo.pptxWhat To Do For World Nature Conservation Day by Slidesgo.pptx
What To Do For World Nature Conservation Day by Slidesgo.pptx
 
SMOTE and K-Fold Cross Validation-Presentation.pptx
SMOTE and K-Fold Cross Validation-Presentation.pptxSMOTE and K-Fold Cross Validation-Presentation.pptx
SMOTE and K-Fold Cross Validation-Presentation.pptx
 
Data Analysis Project Presentation: Unveiling Your Ideal Customer, Bank Custo...
Data Analysis Project Presentation: Unveiling Your Ideal Customer, Bank Custo...Data Analysis Project Presentation: Unveiling Your Ideal Customer, Bank Custo...
Data Analysis Project Presentation: Unveiling Your Ideal Customer, Bank Custo...
 
Cyber awareness ppt on the recorded data
Cyber awareness ppt on the recorded dataCyber awareness ppt on the recorded data
Cyber awareness ppt on the recorded data
 

L8: Panels and view configurations