Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (12506)

  • What is Web Log Analytics and Why You Should Use It

    26 juin 2024, par Erin

    Can’t use JavaScript tracking on your website ? Need a more secure and privacy-friendly way to understand your website visitors ? Web log analytics is your answer. This method pulls data directly from your server logs, offering a secure and privacy-respecting alternative.  

    In this blog, we cover what web log analytics is, how it compares to JavaScript tracking, who it is best suited for, and why it might be the right choice for you. 

    What are server logs ? 

    Before diving in, let’s start with the basics : What are server logs ? Think of your web server as a diary that notes every visit to your website. Each time someone visits, the server records details like : 

    • User agent : Information about the visitor’s browser and operating system. 
    • Timestamp : The exact time the request was made. 
    • Requested URL : The specific page or resource the visitor requested. 

    These “diary entries” are called server logs, and they provide a detailed record of all interactions with your website. 

    Server log example 

    Here’s what a server log looks like : 

    192.XXX.X.X – – [24/Jun/2024:14:32:01 +0000] “GET /index.html HTTP/1.1” 200 1024 “https://www.example.com/referrer.html” “Mozilla/5.0 (Windows NT 10.0 ; Win64 ; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36” 

    192.XXX.X.X – – [24/Jun/2024:14:32:02 +0000] “GET /style.css HTTP/1.1” 200 3456 “https://www.example.com/index.html” “Mozilla/5.0 (Windows NT 10.0 ; Win64 ; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36” 

    192.XXX.X.X – – [24/Jun/2024:14:32:03 +0000] “GET /script.js HTTP/1.1” 200 7890 “https://www.example.com/index.html” “Mozilla/5.0 (Windows NT 10.0 ; Win64 ; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36” 

    192.XXX.X.X – – [24/Jun/2024:14:32:04 +0000] “GET /images/logo.png HTTP/1.1” 200 1234 “https://www.example.com/index.html” “Mozilla/5.0 (Windows NT 10.0 ; Win64 ; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36” 

    Breakdown of the log entry 

    Each line in the server log represents a single request made by a visitor to your website. Here’s a detailed breakdown of what each part means : 

    • IP Address : 192.XXX.X.X 
      • This is the IP address of the visitor’s device. 
    • User Identifier : – – 
      • These fields are typically used for user identification and authentication, which are not applicable here, hence the hyphens. 
    • Timestamp : [24/Jun/2024:14:32:01 +0000] 
        • The date and time of the request, including the timezone. 
    • Request Line : “GET /index.html HTTP/1.1” 
      • The request method (GET), the requested resource (/index.html), and the HTTP version (HTTP/1.1). 
    • Response Code : 200 
      • The HTTP status code indicates the result of the request (200 means OK). 
    • Response Size : 1024 
      • The size of the response in bytes. 
    • Referrer :https://www.example.com/referrer.html 
      • The URL of the referring page that led the visitor to the current page. 
    • User Agent : “Mozilla/5.0 (Windows NT 10.0 ; Win64 ; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36” 
      • Information about the visitor’s browser and operating system. 

    In the example above, there are multiple log entries for different resources (HTML page, CSS file, JavaScript file, and an image). This shows that when a visitor loads a webpage, multiple requests are made to load all the necessary resources. 

    What is web log analytics ? 

    Web log analytics is one of many methods for tracking visitors to your site.  

    Web log analytics is the process of analysing server log files to track and understand website visitors. Unlike traditional methods that use JavaScript tracking codes embedded in web pages, web log analytics pulls data directly from these server logs. 

    How it works : 

    1. Visitor request : A visitor’s browser requests your website. 
    2. Server logging : The server logs the request details. 
    3. Analysis : These logs are analysed to extract useful information about your visitors and their activities. 

    Web log analytics vs. JavaScript tracking 

    JavaScript tracking 

    JavaScript tracking is the most common method used to track website visitors. It involves embedding a JavaScript code snippet into your web pages. This code collects data on visitor interactions and sends it to a web analytics platform. 

    Web log analytics vs JavaScript tracking

    Differences and benefits :

    Privacy : 

    • Web log analytics : Since it doesn’t require embedding tracking codes, it is considered less intrusive and helps maintain higher privacy standards. 
    • JavaScript tracking : Embeds tracking codes directly on your website, which can be more invasive and raise privacy concerns. 

    Ease of setup : 

    • Web log analytics : No need to modify your website’s code. All you need is access to your server logs. 
    • JavaScript tracking : Requires adding tracking code on your web pages. This is generally an easier setup process.  

    Data collection : 

    • Web log analytics : Contain requests of users with adblockers (ghostery, adblock, adblock plus, privacy badger, etc.) sometimes making it more accurate. However, it may miss certain interactive elements like screen resolution or user events. It may also over-report data.  
    • JavaScript tracking : Can collect a wide range of data, including Custom dimensions, Ecommerce tracking, Heatmaps, Session recordings, Media and Form analytics, etc. 

    Why choose web log analytics ? 

    Enhanced privacy 

    Avoiding embedded tracking codes means there’s no JavaScript running on your visitors’ browsers. This significantly reduces the risk of data leakage and enhances overall privacy. 

    Comprehensive data collection 

    It isn’t affected by ad blockers or browser tracking protections, ensuring you capture more complete and accurate data about your visitors. 

    Historical data analysis 

    You can import and analyse historical log files, giving you insights into long-term visitor behaviour and trends. 

    Simple setup 

    Since it relies on server logs, there’s no need to alter your website’s code. This makes setup straightforward and minimises potential technical issues. 

    Who should use web log analytics ? 

    Web log analytics is particularly suited for businesses that prioritise data privacy and security.

    Organisations that handle sensitive data, such as banks, healthcare providers, and government agencies, can benefit from the enhanced privacy.  

    By avoiding JavaScript tracking, these entities minimise data exposure and comply with strict privacy regulations like Sarbanes Oxley and PCI. 

    Why use Matomo for web log analytics ? 

    Matomo stands out as a top choice for web log analytics because it prioritises privacy and data ownership

    Screenshot example of the Matomo dashboard

    Here’s why : 

    • Complete data control : You own all your data, so you don’t have to worry about third-party access. 
    • IP anonymisation : Matomo anonymises IP addresses to further protect user privacy. 
    • Bot filtering : Automatically excludes bots from your reports, ensuring you get accurate data. 
    • Simple migration : You can easily switch from other tools like AWStats by importing your historical logs into Matomo. 
    • Server log recognition : Recognises most server log formats (Apache, Nginx, IIS, etc.). 

    Start using web log analytics 

    Web log analytics offers a secure, privacy-focused alternative to traditional JavaScript tracking methods. By analysing server logs, you get valuable insights into your website traffic while maintaining high privacy standards.  

    If you’re serious about privacy and want reliable data, give Matomo’s web log analytics a try.  

    Start your 21-day free trial now. No credit card required. 

  • What is audience segmentation ? The 8 main types and examples

    8 juillet, par Joe

    Marketers must reach the right person at the right time with the most relevant messaging. Customers now expect personalised experiences, which means generic campaigns won’t work. Audience segmentation is the key to doing this. 

    This isn’t an easy process because there are many types of audience segmentation. The wrong approach or poor data management can lead to irrelevant messaging or lost customer trust.

    This article breaks down the most common types of audience segmentation with examples highlighting their usefulness and information on segmenting campaigns without breaking data regulations.

    What is audience segmentation ?

    Audience segmentation involves dividing a customer base into distinct, smaller groups with similar traits or common characteristics. The goal is to deliver a more targeted marketing message or to glean unique insights from analytics.

    It can be as broad as dividing a marketing campaign by location or as specific as separating audiences by their interests, hobbies and behaviour.

    Consider this : an urban office worker and a rural farmer have vastly different needs. Targeted marketing efforts aimed at agriculture workers in rural areas can stir up interest in farm equipment. 

    Audience segmentation has existed since the beginning of marketing. Advertisers used to select magazines and placements based on who typically read them. For example, they would run a golf club ad in a golf magazine, not the national newspaper.

    Now that businesses have more customer data, audience segments can be narrower and more specific.

    Why audience segmentation matters

    Hyken’s latest Customer Service and CX Research Study revealed that 81% of customers expect a personalised experience.

    These numbers reflect expectations from consumers who have actively engaged with a brand — created an account, signed up for an email list or purchased a product.

    They expect relevant product recommendations — like a shoe polishing kit after buying nice leather loafers.

    Without audience segmentation, customers can get frustrated with post-sale activities. For example, the same follow-up email won’t make sense for all customers because each is at a different stage of the user journey

    Some more benefits that audience segmentation offers : 

    • Personalised targeting is a major advantage. Tailored messaging makes customers feel valued and understood, enhancing their loyalty to the brand. 
    • Businesses can understand users’ unique needs, which helps in better product development. For example, a fitness brand might develop separate offerings for casual exercisers and professional athletes.
    • Marketers can allocate more resources to the most promising segments. For example, a luxury skincare brand might target affluent customers with premium ads and use broader campaigns for entry-level products.

    8 types of audience segmentation

    There are eight types of audience segmentation : demographic, behavioural, psychographic, technographic, transactional, contextual, lifecycle and predictive segmentation.

    8 types of audience segmentation

    Let’s take an in-depth look at each of them.

    Demographic segmentation 

    Demographic segmentation divides a larger audience based on data points like location, age or other factors.

    The most basic segmentation factor is location, which is critical in marketing campaigns. Geographic segmentation can use IP addresses to separate marketing efforts by country. 

    But more advanced demographic data points are becoming increasingly sensitive to handle, especially in Europe, where the GDPR makes advanced demographics a more tentative subject. 

    It’s also possible to use age, education level, and occupation to target marketing campaigns. It’s essential to navigate this terrain thoughtfully, responsibly, and strictly adhere to privacy regulations.

    Potential data points :

    • Location
    • Age
    • Marital status
    • Income
    • Employment 
    • Education

    Example of effective demographic segmentation :

    A clothing brand targeting diverse locations must account for the varying weather conditions. In colder regions, showcasing winter collections or insulated clothing might resonate more with the audience. Conversely, promoting lightweight or summer attire would be more effective in warmer climates. 

    Here are two ads run by North Face on Facebook and Instagram to different audiences to highlight different collections :

    different audiences to highlight different collections

    (Image Source)

    Each collection features differently and uses a different approach with its copy and even the media. With social media ads, targeting people based on advanced demographics is simple enough — just single out the factors when building a campaign. And it’s unnecessary to rely on data mining to get information for segmentation. 

    Consider incorporating a short survey into email sign-up forms so people can self-select their interests and preferences. This is a great way to segment ethically and without the need for data-mining companies. Responses can offer valuable insights into audience preferences while enhancing engagement, decreasing bounce rates, and improving conversion rates.

    Behavioural segmentation

    Behavioural segmentation segments audiences based on their interaction with a website or an app.

    Potential data points :

    • Page visits
    • Referral source
    • Clicks
    • Downloads
    • Video plays
    • Conversions (e.g., signing up for a newsletter or purchasing a product)

    Example of using behavioural segmentation to improve campaign efficiency :

    One effective method involves using a web analytics tool like Matomo to uncover patterns. By segmenting actions like specific clicks and downloads, identify what can significantly enhance visitor conversions. 

    web analytics tool like Matomo to uncover patterns

    For example, if a case study video substantially boosts conversion rates, elevate its prominence to capitalise on this success.

    Then, set up a conditional CTA within the video player. Make it pop up after the user finishes watching the video. Use a specific form and assign it to a particular segment for each case study. This way, you can get the prospect’s ideal use case without surveying them.

    This is an example of behavioural segmentation that doesn’t rely on third-party cookies.

    Psychographic segmentation

    Psychographic segmentation involves segmenting audiences based on interpretations of their personality or preferences.

    Potential data points :

    • Social media patterns
    • Follows
    • Hobbies
    • Interests

    Example of effective psychographic segmentation :

    Here, Adidas segments its audience based on whether they like cycling or rugby. It makes no sense to show a rugby ad to someone who’s into cycling and vice versa. However, for rugby athletes, the ad is very relevant.

    effective psychographic segmentation

    (Image Source)

    Brands that want to avoid social platforms can use surveys about hobbies and interests to segment their target audience ethically.

    Technographic segmentation

    Technographic segmentation separates customers based on the hardware or software they use. 

    Potential data points :

    • Type of device used
    • Device model or brand
    • Browser used

    Example of segmenting by device type to improve user experience :

    After noticing a serious influx of tablet users accessing their platform, a leading news outlet optimised their tablet browsing experience. They overhauled the website interface, focusing on smoother navigation and better tablet-readability. These changes gave users a more enjoyable reading experience tailored precisely to their device.

    Transactional segmentation

    Transactional segmentation uses customers’ past purchases to match marketing messages with user needs.

    Consumers often relate personalisation with their actual transactions rather than their social media profiles. 

    Potential data points :

    • Average order value
    • Product categories purchased within X months
    • Most recent purchase date

    Example of effective transactional segmentation :

    Relevant product recommendations and coupons are among the best uses of transactional segmentation. These individualised marketing emails can strengthen brand loyalty and increase revenue.

    A pet supply store identifies a segment of customers who consistently purchase cat food but not other pet products. To encourage repeat purchases within this segment, the store creates targeted email campaigns offering discounts or loyalty rewards for cat-related items.

    Contextual segmentation 

    Contextual segmentation helps marketers connect with audiences based on real-time factors like time of day, weather or location. It’s like offering someone exactly what they need when they need it the most.

    Potential data points :

    • GPS location
    • Browsing activity
    • Device type

    Examples of contextual segmentation :

    A ride-hailing app might promote discounted rides during rush hour in busy cities or suggest carpooling options on rainy days. Similarly, an outdoor gear retailer could target users in snowy regions with ads for winter jackets or snow boots.

    The key is relevance. Messages that align with what someone needs at that moment feel helpful rather than intrusive. Businesses need tools like geolocation tracking and real-time analytics to make this work. 

    Also, keep it subtle and respectful. While personalisation is powerful, being overly intrusive can backfire. For example, instead of bombarding someone with notifications every time they pass a store, focus on moments when an offer truly adds value — like during bad weather or peak commute times.

    Lifecycle segmentation 

    Lifecycle segmentation is about crafting interactions based on where customers are in their journey with a brand.

    An example of lifecycle segmentation

    Lifecycle segmentation isn’t just about selling ; it’s about building relationships. After a big purchase like furniture, sending care tips instead of another sales pitch shows customers that the brand cares about their experience beyond just the sale.

    This approach helps brands avoid generic messaging that might alienate customers. By understanding the customer’s lifecycle stage, businesses can tailor their communications to meet specific needs, whether nurturing new relationships or rewarding long-term loyalty.

    Potential data points :

    • Purchase history
    • Sign-up dates

    Examples of effective lifecycle segmentation :

    An online clothing store might send first-time buyers a discount code to encourage repeat purchases. On the other hand, if someone hasn’t shopped in months, they might get an email with “We miss you” messaging and a special deal to bring them back.

    Predictive segmentation 

    Predictive segmentation uses past behaviour and preferences to understand or predict what customers might want next. Its real power lies in its ability to make customers feel understood without them having to ask for anything.

    Potential data points :

    • Purchase patterns
    • Browsing history
    • Interaction frequency

    Examples of effective predictive segmentation :

    Streaming platforms are great examples — they analyse what shows and genres users watch to recommend related content they might enjoy. Similarly, grocery delivery apps can analyse past orders to suggest when to reorder essentials like milk or bread.

    B2B-specific : Firmographic segmentation

    Beyond the eight main segmentation types, B2B marketers often use firmographic factors when segmenting their campaigns. It’s a way to segment campaigns that go beyond the considerations of the individual.

    Potential data points :

    • Annual revenue
    • Number of employees
    • Industry
    • Geographic location (main office)

    Example of effective firmographic segmentation :

    Startups and well-established companies will not need the same solution, so segmenting leads by size is one of the most common and effective examples of B2B audience segmentation.

    The difference here is that B2B campaigns involve more manual research. With an account-based marketing approach, you start by researching potential customers. Then, you separate the target audience into smaller segments (or even a one-to-one campaign).

    Audience segmentation challenges (+ how to overcome them) 

    Below, we explore audience segmentation challenges organisations can face and practical ways to overcome them.

    Data privacy 

    Regulations like GDPR and CCPA require businesses to handle customer data responsibly. Ignoring these rules can lead to hefty fines and harm a brand’s reputation. Customers are also more aware of and sensitive to how their data is used, making transparency essential.

    Businesses should adopt clear data policies and provide opt-out options to build trust and demonstrate respect for user preferences. 

    clear data policies provide opt-out options

    (Image Source

    Privacy-focused analytics tools can help businesses handle these requirements effectively. For example, Matomo allows businesses to anonymise user data and offers features that give users control over their tracking preferences.

    Data quality

    Inconsistent, outdated or duplicate data can result in irrelevant messaging that frustrates customers instead of engaging them.

    This is why businesses should regularly audit their data sources for accuracy and completeness.

    Integrate multiple data sources into a unified platform for a more in-depth customer view. Implement data cleansing processes to remove duplicates, outdated records, and errors. 

    Segment management 

    Managing too many segments can become overwhelming, especially for businesses with limited resources. Creating and maintaining numerous audience groups requires significant time and effort, which may not always be feasible.

    Automated tools and analytics platforms can help. Matomo Segments can analyse reports on specific audience groups based on criteria such as visit patterns, interactions, campaign sources, ecommerce behaviour, demographics and technology usage for more targeted analysis.

    Detailed reporting of each segment’s characteristics can further simplify the process. By prioritising high-impact segments — those that offer the best potential return on investment — businesses can focus their efforts where they matter most.

    Behaviour shifts 

    Customer behaviour constantly evolves due to changing trends, new technology and shifting social and economic conditions. 

    Segmentation strategies that worked in the past can quickly become outdated. 

    Businesses need to monitor market trends and adjust their strategies accordingly. Flexibility is key here — segmentation should never be static.

    For example, if a sudden spike in mobile traffic is detected, campaigns can be optimised for mobile-first users.

    Tools and technologies that help 

    Here are some key segmentation tools to support your efforts : 

    • Analytics platforms : Get insights into audience behaviour with Matomo. Track user interactions, such as website visits, clicks and time spent on pages, to identify patterns and segment users based on their online activity.
    • CRM systems : Utilize customer records to create meaningful segments based on characteristics like purchase history or engagement levels.
    • Marketing automation platforms : Streamline personalised messages by automating emails, social media posts or SMS campaigns for specific audience segments.
    • Consent management tools : Collect and manage user consent, implement transparent data tracking and provide users with opt-out options. 
    • Survey tools : Gather first-party data directly from customers. 
    • Social listening solutions : Monitor conversations and brand mentions across social media to gauge audience sentiment.

    Start segmenting and analysing audiences more deeply with Matomo

    Modern consumers expect to get relevant content, and segmentation can make this possible.

    But doing so in a privacy-sensitive way is not always easy. Organisations need to adopt an approach that doesn’t break regulations while still allowing them to segment their audiences. 

    That’s where Matomo comes in. Matomo champions privacy compliance while offering comprehensive insights and segmentation capabilities. It provides features for privacy control, enables cookieless configurations, and supports compliance with GDPR and other regulations — all without compromising user privacy

    Take advantage of Matomo’s 21-day free trial to explore its capabilities firsthand — no credit card required.

  • Benefits and Shortcomings of Multi-Touch Attribution

    13 mars 2023, par Erin — Analytics Tips

    Few sales happen instantly. Consumers take their time to discover, evaluate and become convinced to go with your offer. 

    Multi-channel attribution (also known as multi-touch attribution or MTA) helps businesses better understand which marketing tactics impact consumers’ decisions at different stages of their buying journey. Then double down on what’s working to secure more sales. 

    Unlike standard analytics, multi-channel modelling combines data from various channels to determine their cumulative and independent impact on your conversion rates. 

    The main benefit of multi-touch attribution is obvious : See top-performing channels, as well as those involved in assisted conversions. The drawback of multi-touch attribution : It comes with a more complex setup process. 

    If you’re on the fence about getting started with multi-touch attribution, here’s a summary of the main arguments for and against it. 

    What Are the Benefits of Multi-Touch Attribution ?

    Remember an old parable of blind men and an elephant ?

    Each one touched the elephant and drew conclusions about how it might look. The group ended up with different perceptions of the animal and thought the others were lying…until they decided to work together on establishing the truth.

    Multi-channel analytics works in a similar way : It reconciles data from various channels and campaign types into one complete picture. So that you can get aligned on the efficacy of different campaign types and gain some other benefits too. 

    Better Understanding of Customer Journeys 

    On average, it takes 8 interactions with a prospect to generate a conversion. These interactions happen in three stages : 

    • Awareness : You need to introduce your company to the target buyers and pique their interest in your solution (top-of-the-funnel). 
    • Consideration : The next step is to channel this casual interest into deliberate research and evaluation of your offer (middle-of-the-funnel). 
    • Decision : Finally, you need to get the buyer to commit to your offer and close the deal (bottom-of-the-funnel). 

    You can analyse funnels using various attribution models — last-click, fist-click, position-based attribution, etc. Each model, however, will spotlight the different element(s) of your sales funnel. 

    For example, a single-touch attribution model like last-click zooms in on the bottom-of-the-funnel stage. You can evaluate which channels (or on-site elements) sealed the deal for the prospect. For example, a site visitor arrived from an affiliate link and started a free trial. In this case, the affiliate (referral traffic) gets 100% credit for the conversion. 

    This measurement tactic, however, doesn’t show which channels brought the customer to the very bottom of your funnel. For instance, they may have interacted with a social media post, your landing pages or a banner ad before that. 

    Multi-touch attribution modelling takes funnel analysis a notch further. In this case, you map more steps in the customer journey — actions, events, and pages that triggered a visitor’s decision to convert — in your website analytics tool.

    Funnels Report Matomo

    Then, select a multi-touch attribution model, which provides more backward visibility aka allows you to track more than one channel, preceding the conversion. 

    For example, a Position Based attribution model reports back on all interactions a site visitor had between their first visit and conversion. 

    A prospect first lands at your website via search results (Search traffic), which gets a 40% credit in this model. Two days later, the same person discovers a mention of your website on another blog and visits again (Referral traffic). This time, they save the page as a bookmark and revisit it again in two more days (Direct traffic). Each of these channels will get a 10% credit. A week later, the prospect lands again on your site via Twitter (Social) and makes a request for a demo. Social would then receive a 40% credit for this conversion. Last-click would have only credited social media and first-click — search engines. 

    The bottom line : Multi-channel attribution models show how different channels (and marketing tactics) contribute to conversions at different stages of the customer journey. Without it, you get an incomplete picture.

    Improved Budget Allocation 

    Understanding causal relationships between marketing activities and conversion rates can help you optimise your budgets.

    First-click/last-click attribution models emphasise the role of one channel. This can prompt you toward the wrong conclusions. 

    For instance, your Facebook ads campaigns do great according to a first-touch model. So you decide to increase the budget. What you might be missing though is that you could have an even higher conversion rate and revenue if you fix “funnel leaks” — address high drop-off rates during checkout, improve page layout and address other possible reasons for exiting the page.

    Matomo Customisable Goal Funnels
    Funnel reports at Matomo allow you to see how many people proceed to the next conversion stage and investigate why they drop off.

    By knowing when and why people abandon their purchase journey, you can improve your marketing velocity (aka the speed of seeing the campaign results) and your marketing costs (aka the budgets you allocate toward different assets, touchpoints and campaign types). 

    Or as one of the godfathers of marketing technology, Dan McGaw, explained in a webinar :

    “Once you have a multi-touch attribution model, you [can] actually know the return on ad spend on a per-campaign basis. Sometimes, you can get it down to keywords. Sometimes, you can get down to all kinds of other information, but you start to realise, “Oh, this campaign sucks. I should shut this off.” And then really, that’s what it’s about. It’s seeing those campaigns that suck and turning them off and then taking that budget and putting it into the campaigns that are working”.

    More Accurate Measurements 

    The big boon of multi-channel marketing attribution is that you can zoom in on various elements of your funnel and gain granular data on the asset’s performance. 

    In other words : You get more accurate insights into the different elements involved in customer journeys. But for accurate analytics measurements, you must configure accurate tracking. 

    Define your objectives first : How do you want a multi-touch attribution tool to help you ? Multi-channel attribution analysis helps you answer important questions such as :

    • How many touchpoints are involved in the conversions ? 
    • How long does it take for a lead to convert on average ? 
    • When and where do different audience groups convert ? 
    • What is your average win rate for different types of campaigns ?

    Your objectives will dictate which multi-channel modelling approach will work best for your business — as well as the data you’ll need to collect. 

    At the highest level, you need to collect two data points :

    • Conversions : Desired actions from your prospects — a sale, a newsletter subscription, a form submission, etc. Record them as tracked Goals
    • Touchpoints : Specific interactions between your brand and targets — specific page visits, referral traffic from a particular marketing channel, etc. Record them as tracked Events

    Your attribution modelling software will then establish correlation patterns between actions (conversions) and assets (touchpoints), which triggered them. 

    The accuracy of these measurements, however, will depend on the quality of data and the type of attribution modelling used. 

    Data quality stands for your ability to procure accurate, complete and comprehensive information from various touchpoints. For instance, some data won’t be available if the user rejected a cookie consent banner (unless you’re using a privacy-focused web analytics tool like Matomo). 

    Different attribution modelling techniques come with inherent shortcomings too as they don’t accurately represent the average sales cycle length or track visitor-level data, which allows you to understand which customer segments convert best.

    Learn more about selecting the optimal multi-channel attribution model for your business.

    What Are the Limitations of Multi-Touch Attribution ?

    Overall, multi-touch attribution offers a more comprehensive view of the conversion paths. However, each attribution model (except for custom ones) comes with inherent assumptions about the contribution of different channels (e.g,. 25%-25%-25%-25% in linear attribution or 40%-10%-10%-40% in position-based attribution). These conversion credit allocations may not accurately represent the realities of your industry. 

    Also, most attribution models don’t reflect incremental revenue you gain from existing customers, which aren’t converting through analysed channels. For example, account upgrades to a higher tier, triggered via an in-app offer. Or warranty upsell, made via a marketing email. 

    In addition, you should keep in mind several other limitations of multi-touch attribution software.

    Limited Marketing Mix Analysis 

    Multi-touch attribution tools work in conjunction with your website analytics app (as they draw most data from it). Because of that, such models inherit the same visibility into your marketing mix — a combo of tactics you use to influence consumer decisions.

    Multi-touch attribution tools cannot evaluate the impact of :

    • Dark social channels 
    • Word-of-mouth 
    • Offline promotional events
    • TV or out-of-home ad campaigns 

    If you want to incorporate this data into your multi-attribution reporting, you’ll have to procure extra data from other systems — CRM, ad measurement partners, etc, — and create complex custom analytics models for its evaluation.

    Time-Based Constraints 

    Most analytics apps provide a maximum 90-day lookback window for attribution. This can be short for companies with longer sales cycles. 

    Source : Marketing Charts

    Marketing channels can be overlooked or underappreciated when your attribution window is too short. Because of that, you may curtail spending on brand awareness campaigns, which, in turn, will reduce the number of people entering the later stages of your funnel. 

    At the same time, many businesses would also want to track a look-forward window — the revenue you’ll get from one customer over their lifetime. In this case, not all tools may allow you to capture accurate information on repeat conversions — through re-purchases, account tier updates, add-ons, upsells, etc. 

    Again, to get an accurate picture you’ll need to understand how far into the future you should track conversions. Will you only record your first sales as a revenue number or monitor customer lifetime value (CLV) over 3, 6 or 12 months ? 

    The latter is more challenging to do. But CLV data can add another depth of dimension to your modelling accuracy. With Matomo, you set up this type of tracking by using our visitors’ tracking feature. We can help you track select visitors with known identifiers (e.g. name or email address) to discover their visiting patterns over time. 

    Visitor User IDs in Matomo

    Limited Access to Raw Data 

    In web analytics, raw data stands for unprocessed website visitor information, stripped from any filters, segmentation or sampling applied. 

    Data sampling is a practice of analysing data subsets (instead of complete records) to extrapolate findings towards the entire data set. Google Analytics 4 applies data sampling once you hit over 500k sessions at the property level. So instead of accurate, real-life reporting, you receive approximations, generated by machine learning models. Data sampling is one of the main reasons behind Google Analytics’ accuracy issues

    In multi-channel attribution modelling, usage of sampled data creates further inconsistencies between the reports and the actual state of affairs. For instance, if your website generates 5 million page views, GA multi-touch analytical reports are based on the 500K sample size aka only 90% of the collected information. This hardly represents the real effect of all marketing channels and can lead to subpar decision-making. 

    With Matomo, the above is never an issue. We don’t apply data sampling to any websites (no matter the volume of traffic) and generate all the reports, including multi-channel attribution ones, based on 100% real user data. 

    AI Application 

    On the other hand, websites with smaller traffic volumes often have limited sampling datasets for building attribution models. Some tracking data may also be not available because the visitor rejected a cookie banner, for instance. On average, less than 50% of users in Australia, France, Germany, Denmark and the US among other countries always consent to all cookies. 

    To compensate for such scenarios, some multi-touch attribution solutions apply AI algorithms to “fill in the blanks”, which impacts the reporting accuracy. Once again, you get approximate data of what probably happened. However, Matomo is legally exempt from showing a cookie consent banner in most EU markets. Meaning you can collect 100% accurate data to make data-driven decisions.

    Difficult Technical Implementation 

    Ever since attribution modelling got traction in digital marketing, more and more tools started to emerge.

    Most web analytics apps include multi-touch attribution reports. Then there are standalone multi-channel attribution platforms, offering extra features for conversion rate optimization, offline channel tracking, data-driven custom modelling, etc. 

    Most advanced solutions aren’t available out of the box. Instead, you have to install several applications, configure integrations with requested data sources, and then use the provided interfaces to code together custom data models. Such solutions are great if you have a technical marketer or a data science team. But a steep learning curve and high setup costs make them less attractive for smaller teams. 

    Conclusion 

    Multi-touch attribution modelling lifts the curtain in more steps, involved in various customer journeys. By understanding which touchpoints contribute to conversions, you can better plan your campaign types and budget allocations. 

    That said, to benefit from multi-touch attribution modelling, marketers also need to do the preliminary work : Determine the key goals, set up event and conversion tracking, and then — select the optimal attribution model type and tool. 

    Matomo combines simplicity with sophistication. We provide marketers with familiar, intuitive interfaces for setting up conversion tracking across the funnel. Then generate attribution reports, based on 100% accurate data (without any sampling or “guesstimation” applied). You can also get access to raw analytics data to create custom attribution models or plug it into another tool ! 

    Start using accurate, easy-to-use multi-channel attribution with Matomo. Start your free 21-day trial now. No credit card requried.